Recent Posts

ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
now returning to our regularly scheduled selkie hates organic chemistry as a subject, as this specific class, and with this specific professor with every fiber of her being

on god considering buying myself a fucking cake after the final
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
[attr="class","selkieomens"]

WO's skin started with me drafting a logo that changed based on the real-world lunar cycle and ended with me saying “go” on launch after being awake for 17 hours and i wouldn’t have wanted it any other way. what a helluva first skin to drop, LMAO. i’ve had the technical ability to create a skin for a good few years now, i think, but all of the sites i ended up spending a significant amount of time were run by hella talented coders, so i never really had the opportunity. still, i’m glad to have thrown my hat in the ring at least this once! it’ll probably be more tbh. i have been converted.

i’m also taking the opportunity to drop some of the more advanced things here as a demo, because i like how they turned out and tbh it’d make my day to see someone with a better eye for design build on this stuff. (forewarning, though ⁠— the language i’m using is very much “by coders, for coders”.)

miscellaneous technical features i like, in no specific order:

custom skin accents mask-image does a whooole heck of a lot of lifting with this. the rainbow animation when you load in as guest is pure css, and the skin additionally changes by the user’s member group. there’s also an option to input your own colors scheme to customize your own skin.

technical explanation: custom profile field filled out by user is pulled into a CSS variable on the main class. the rainbow effect is, again, mask-image + css animation. fallbacks to member groups are inlaid….somewhere. i think it’s in the CSS, but don’t quote me on that one.

content warning system this was something i’d had the idea for a loooooooong time ago and i think it came together super nice!


technical explanation and demo: users can add a <cw>list of triggers</cw> or <cw-toggle>list of triggers</cw-toggle> in threads or applications. with the latter, a pseudo-element from cw-toggle is used to toggle the visibility of anything wrapped in a <censor> class.

i,,,, haven’t actually tested this specific demo to see if it works, but hopefully the gist is gotten across!
basic CSS
cw-toggle {
 display: flex;
 width: 100%;
 place-items: center;
 place-content: center;
 text-align: center;
 position: relative;
 margin-top: 25px;
 margin-bottom: 50px;
 color: #000;
 font: 700 11px roboto;
 pointer-events: none;
}
cw {
 margin-bottom: 25px;
}
cw-toggle:before,
cw:before {
 content: "this post contains";
 font: 900 10px/90% roboto;
 text-transform: uppercase;
 position: absolute;
 top: -10px;
 color: #000;
}
.cwbuttonhidecontent:after,
.cwbuttonshowcontent:after {
 position: absolute;
 bottom: -20px;
 background: red;
 padding: 5px;
 border-radius: 5px;
 cursor: pointer;
 font: 900 10px/90% roboto;
 text-transform: uppercase;
 pointer-events: auto;
 color: #fff;
}
.cwbuttonshowcontent:after {
 content: "show sensitive content";
}
.cwbuttonhidecontent:after {
 content: "hide sensitive content";
}

.cwcensorshowcontent {
 background: initial !important;
 color: revert !important;
}

.cwcensorhidecontent {
 background: #111;
 color: #111;
}
.cwcensorhidecontent b, .cwcensorhidecontent i, .cwcensorhidecontent u, .cwcensorhidecontent a {
color: revert!important;
}

scripting (jquery will need to be enabled on the forum for this to work)
goes in the wrapper:
<script>$('cw-toggle').addClass('cwbuttonhidecontent');
$('censor').addClass('cwcensorshowcontent');</script>

goes in the post row:
<script>// censor toggle function
$(function(){
   $('cw-toggle').click(function() {
$(this).toggleClass('cwbuttonhidecontent cwbuttonshowcontent');
$("#pid_<!-- |pid| --> censor").toggleClass('cwcensorshowcontent cwcensorhidecontent');
   });
});</script>

goes in the main profile (i.e. for profile pages):
<script>$(function(){
   $('cw-toggle').click(function() {
$(this).toggleClass('cwbuttonhidecontent cwbuttonshowcontent');
$(this).siblings('censor').toggleClass('cwcensorshowcontent cwcensorhidecontent');
   });
});</script>


toggleable, responsive sidebar w/ custom links i’d conceptualized this skin from the start as having a toggleable sidebar, with the gist being “first sidebar is new-user-friendly, second sidebar is settled-in-user-friendly”. i think one of the issues with sidebars is that they can just become wasted space ⁠— once you’ve got a character nice n’ registered on site you’re probably not going to need links to the startup guide taking up valuable screen space, and so on. i attempted to counter this by adding in a “quicklinks” section which lets users quickly jump to their development, tracker, and testing threads, in addition to various forums around the site.

the other gambit w/ sidebars is that you have a lot more variation in screen size and stuff that looks great on some monitors looks like poo poo shit on others. i just went ahead and made both those bitches responsive:


custom user accents gist here is that there’s a custom profile field in which you can enter a hex code which will color the main profile and post row. the concept wasn’t mine, but i’m happy with the execution.


technical explanation & demo: the custom user accent is stored as a profile field, which is pulled into a CSS variable. if no accent is entered, it falls back to the user’s member group color. this is done through CSS in the post row and the following script in the main profile:
<script>if ('<!-- |field_USERACCENT| -->' === '<i>No Information</i>') {
  $("profile").attr("style", "--custom:var(--group);");
}</script>

(where --group is stored in the skin as a variable dependent on the user’s member group so groupid-2 would have --group defined as red, groupid-3 with --group defined as green, so on and so forth)

with great power comes great responsibility, but i’ve shoved accessible-colors.com down the memberbase’s throats and they’ve honestly been fuckin’ killing it with readibility. regardless, there is, additionally, a setting in the UCP which disables this quote “rainbow bullshit”. that, plus a toggleable light mode, hopefully means that the skin is about as accessible color-wise as you can get?

usercp-hosted template system built-in post templates use custom profile fields to set lyrics and images. if those fields are left blank, they’re removed from the post entirely. this, for example, has nothing surrounding the text besides [*post2][*/post2]. usercp settings can also be overridden per-post for those sadstuck threads.


brief technical overview and demo: classes are standardized across templates, so lyric-1, lyric-2, post-image-1, are all targeted in jquery. these classes pull values from custom user profile fields and bbcodes have also been set up on the forum to override the default settings (this works by creating an override class i.e. lyric-1-override which replaces the initial instance). the scripting for this is notably shoestring due to it p. much pushing the limits of the custom profile field system in the first place, so i’m providing this as-is and won’t be offering support on implementing it.

scripting in post row ⁠—
<script>$("#pid_<!-- |pid| --> .lyric-1").text("<!-- |field_LYRIC1| -->");
$("#pid_<!-- |pid| --> .lyric-2").text("<!-- |field_LYRIC2| -->");
$("#pid_<!-- |pid| --> .post-icon").prepend('<img src="<!-- |field_SQUAREIMAGE| -->">');
$("#pid_<!-- |pid| --> .post-image-1").prepend('<img src="<!-- |field_LARGEIMAGE1| -->">');
$("#pid_<!-- |pid| --> .post-image-2").prepend('<img src="<!-- |field_LARGEIMAGE2| -->">');
if( $('#pid_<!-- |pid| --> .post-image-2-override').length )
{
$("#pid_<!-- |pid| --> .post-image-2").replaceWith($("#pid_<!-- |pid| --> .post-image-2-override"));
}
if( $('#pid_<!-- |pid| --> .post-image-1-override').length )
{
$("#pid_<!-- |pid| --> .post-image-1").replaceWith($("#pid_<!-- |pid| --> .post-image-1-override"));
}
if( $('#pid_<!-- |pid| --> .lyric-1-override').length )
{
$("#pid_<!-- |pid| --> .lyric-1").replaceWith($("#pid_<!-- |pid| --> .lyric-1-override"));
}
if( $('#pid_<!-- |pid| --> .lyric-2-override').length )
{
$("#pid_<!-- |pid| --> .lyric-2").replaceWith($("#pid_<!-- |pid| --> .lyric-2-override"));
}
if( $('#pid_<!-- |pid| --> .post-icon-override').length )
{
$("#pid_<!-- |pid| --> .post-icon").replaceWith($("#pid_<!-- |pid| --> .post-icon-override"));
}
</script>


scripting in wrapper ⁠—
<script>

// if no lyrics




$(".lyric-1:empty").remove();


$(".lyric-2:empty").remove();


// if no images


$(".post-image-1:empty").remove();


$(".post-image-2:empty").remove();


$(".post-icon:empty").remove();
$(".post-icon img[src='']").remove();
$(".post-image-1 img[src='']").remove();
$(".post-image-2 img[src='']").remove();
$(".post-image-1-override img[src='x']").remove();
$(".post-image-2-override img[src='x']").remove();
$(".post-icon-override img[src='x']").closest('.post-icon-override').hide();

</script>


the HTML of the template previewed above, as an example:
<div class="omens-post-template omens-post-2"><div class="post-image-2"><div class="lyric-1"></div><div class="lyric-2"></div></div><div class="post-body"><div class="post-icon"></div>(PARAM1)</div></div>

this does, as a downside, not play nice with jcink’s search function and topic summary while posting. the lyric lines also eat shit when there’s manual line breaks in them, but o well :’D.

if you're interested in utilizing any of the above demos, feel free to poke around on the live preview of the skin if that helps you learn better -- i'd really just request that you don't use anything ripped live from the skin in something actually published. (also if a skinner uses anything plsplspls link me i wanna seeeeeeeee)

...there's probably stuff i'm forgetting, but ye! if urban fantasy sounds like your thing, we're a pretty fun little group :hue:.

also if u join our server u get the :hellble: emote.



what more can u ask for tbh


[newclass=.selkieomens code]max-height:150px;overflow:auto;text-align:left;[/newclass]
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.


john mulaney, now being brought to you by Please God Let Next Wednesday Come Swiftly I Am So Tired
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
elli Avatar
selkie Avatar
im selkie im a very serious person who takes my degree very seriously and im definitely not about to use this image in a presentation worth the same amount of points as an exam
i grant you an A+

what if i told u this is the slide i'd use it on


will selkie truly risk her A for carcinization memes: stay tuned
last edit on Apr 29, 2021 20:49:45 GMT by selkie
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
im selkie im a very serious person who takes my degree very seriously and im definitely not about to use this image in a presentation worth the same amount of points as an exam
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
i dunno what eldritch entity cursed me to either exist in a state of luck 10 or luck 1 but can they fuck O F F

i truly just cannot believe i had a day in which "realizing my car's battery was dead as i was leaving for class" ranked #2 out of #4 of terrible things that happenedfdsjaklfsdajlkfs free me
last edit on Apr 27, 2021 3:19:44 GMT by selkie
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
im really getting creative anxiety over rough draft rewrites ""not being good enough""" when LITERALLY no one except me can see them

google dot com how to kermit chokehold myself i swear to FUCK
last edit on Apr 25, 2021 3:28:32 GMT by selkie
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
i definitely answered this before but this is a fun story TM nowadays so:

back in the peak RP era of neopets roleplay forums (aka 2011-2012ish) it used to be common practice to make alternate accounts so your main wouldn't get perma'd if you toed the aggressively-pg line too much. neopets was purging accounts at the time iirc and a lot of cooler usernames were opening up, so i remember trying a bunch of mythology-themed names to see if i can get a cool one -- and selkie was open! and on my first forum rp adventure, i figured it was a decent enough moniker, and the rest is history.

basically, "selkie" completely predates and is unrelated to fire emblem fates and the selkie character. she's cute tho :pepehands:
last edit on Apr 23, 2021 3:24:37 GMT by selkie
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
thought i was intp something

took it rn, got INTJ-A / architect

angrily took it again, got an even /more/ decisive INTJ-A

am currently over the matter and how sadly accurate it is

weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
i am sisyphus and my mental health is a boulder

alternatively: i am sisyphus and uni work is a boulder

:pepehands:
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
pompon Avatar
straight from the huss's lips

i'll take sentences that trigger my fight or flight for 500 alex

ok but to respond to this topic (and ig the post i'm quoting from in a sense) -- it can also help to turn those out-of-character instances into "consistent inconsistencies", aka try and find a concrete reason why your character is behaving like this and stick to those set parameters in future interactions. ur character is weirdly open while talking to this random chick who approached him at a bar? okay, they're doing this because the girl has blue eyes and is 5'5" and she says a phrase that reminds them an old crush from high school and that makes them soft bc nostalgia. you've now established a precedent, and the next time your character is in a situation w/ a character with any of those traits, you can tie it back to this consistent inconsistency in their characterisation.

people in general are flawed and inconsistent and hypocritical with how they interact w the world IMO, and i feel like establishing a way to play around w that can go a long way with making a believable character

re: getting threads going w/ introverted characters, i find establishing an external conflict helps a lot tbh. like im quiet as FUUUUCK and if someone tried 2 start a conversation w me in line at the grocery store thatd be done in the rp equivalent of like 3 posts. but if, say, i get a flat tire on the interstate and someone pulls over to help me? ya bich im gonna see if i can sweet talk them into changing my tire so i dont have to call AAA. basically i think id just say "find external factors/conflicts to force your character out of their shell, rather then trying to figure out why they're choosing to behave this way"
last edit on Apr 18, 2021 3:51:36 GMT by selkie
weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
selkie Avatar
selkie Avatar
happy 4/13 to all my fellow godless heathens

weeping omens advertisement

all my proboards templates require the style tags plugin!
ᕕ( ᐛ )ᕗ
aliasthat bitch.
pronouns"that bitch" still works tbh (any OK!)
551written posts
selkieearned bits
offlinecurrently
selkie
Part of the Furniture
selkie Avatar
a verb in perfect view.
profile pages bc it feels like ppl never link their mf app in their mf miniprof and its annoying af to 1) forget the alphabet as i sift thru accepted apps or 2) have to go through pages and pages of their most recent threads to find the thing

also im biased as a designer TM a bit and think prof pages are both aesthetically and functionally a lot cleaner (mostly bc u tend to have more space -- in-thread apps r limited by the width of the post which is almost always <750px vs the width of the wrapper in a prof page)
last edit on Apr 10, 2021 15:20:09 GMT by selkie
weeping omens advertisement

all my proboards templates require the style tags plugin!