Skip to content

Instantly share code, notes, and snippets.

View saya-rbt's full-sized avatar
🎴

Saya saya-rbt

🎴
View GitHub Profile
@terrabruder
terrabruder / gender-identity.md
Last active January 22, 2021 18:16
A note about gender identity

Hey.

If you are reading this, you probably have some strong feelings about your gender identity. You may have questions, or you may have a strong sense of identity and just wonder what's next. You may not even know the basics about gender. All of that is okay. The process is always the same.

The end goal is also always the same: a healthy, safe, authentic life. You deserve to thrive, and nothing you have done will change that.

First things first, remember that this new experience is the real you. Your brain will struggle with that for a while. Imposter syndrome is common, dysphoria (or euphoria) may come and go, and only you can decide what your gender identity actually means to you. If you should come to desire some degree of social or medical transition, remember that transition is personal. Transition (or degree of transition) does not validate or invalidate your identity.

You may feel a great deal of conflict about the dissonance between your body and the body you desire. Be compassionate in

@Ghost---Shadow
Ghost---Shadow / PlaylistLength.js
Last active April 6, 2024 09:25
Calculate the total length of a youtube playlist. Just open javascript console, paste and press enter.
/**
USAGE
1. Open the playlist you want
2. Right click > Inspect element > Console
3. Copy this and paste. Hit enter.
4. For watch later make sure to click the Edit button
Make sure &disable_polymer=true flag is set
e.g.
https://www.youtube.com/playlist?list=WL&disable_polymer=true
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
##
# Creates an alias called "git hist" that outputs a nicely formatted git log.
# Usage is just like "git log"
# Examples:
# git hist
# git hist -5
# git hist <branch_name>
# git hist <tag_name> -10
##
git config --global alias.hist "log --pretty=format:'%C(yellow)[%ad]%C(reset) %C(green)[%h]%C(reset) | %C(red)%s %C(bold red){{%an}}%C(reset) %C(blue)%d%C(reset)' --graph --date=short"