Skip to content

Instantly share code, notes, and snippets.

View meltedlilacs's full-sized avatar
🏳️‍🌈
Being gay

Lilac meltedlilacs

🏳️‍🌈
Being gay
View GitHub Profile
@Twipped
Twipped / Trans-feminine HRT Changes.md
Last active June 3, 2022 15:15
My collective research and experiences with trans-feminine (male to female) hormone therapy

UPDATE: This gist is now deprecated, please visit The Gender Dysphoria Bible for the latest version of this document.

This is a compilation of report medical transition changes, collected from testimonials of trans women from various discussion forums and chat rooms, backed up by my own experiences.

Note that this is a list of possible changes. There is no guarentee that a person on HRT will experience all of these. As always, your milage may vary.

Changes connected to reduction of Testosterone:

  • Reduction in general body odor and change in the smell of ones sweat. Many report gaining a sweet smell.
  • Skin softens and becomes thinner.
anonymous
anonymous / disclosure.md
Created August 22, 2017 04:46
A letter for coming out as trans

[Recipient], this might be the most difficult conversation we will ever have. I want to share something hard that’s going on in my life, because I love and trust you, and I know you love me.

So I want to make a deal with you: I won’t try to police how you feel, and if you are angry or upset, that’s fine. But I need you to not explode or retreat. I ask that, as a once-in-a-lifetime favor to me, you listen, all the way through, and reserve judgment and questions until the end. Ultimately, I think this can be positive for both of us. Is that something we can do together?

It means a lot to me that you are willing to listen. There’s a lot to get through, so I wrote most of it down. I’m going to read it because it will make things easier, and I will give you this copy when we are done.

To get to the point, [time of realization], I came to the shocking, and completely unwelcome realization that I’m transgender.

Yes, this means that, despite being assigned [birth gender] based on my genitalia at birth, as a

@justinmc
justinmc / gist:9837998
Last active February 2, 2019 21:14
SASS Zigzag Border
/* border-serrated - a zig zag triangle border with linear gradient
*/
@mixin border-top-serrated($size, $color-outer) {
& {
position: relative;
overflow: auto;
padding-top: $size;
}
&:before {
top: 0px;
@tommcfarlin
tommcfarlin / jquery-boilerplate.js
Created March 7, 2013 16:12
[WordPress] Properly loading jQuery within WordPress without having to use the `noConflict` method, or creating your own reference such as `$wp = jQuery`.
/**
* This gist demonstrates how to properly load jQuery within the context of WordPress-targeted JavaScript so that you don't
* have to worry about using things such as `noConflict` or creating your own reference to the jQuery function.
*
* @version 1.0
*/
(function( $ ) {
"use strict";
$(function() {
@chrisjacob
chrisjacob / README.md
Created February 18, 2011 03:44
Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").

Intro

Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").

Author: Chris Jacob @_chrisjacob

Tutorial (Gist): https://gist.github.com/833223

The Result

@jimsynz
jimsynz / rgb_spectrum.c
Created January 5, 2011 20:59
Arduino sketch to cycle an RGB LED through the colour spectrum.
const int redPin = 11;
const int greenPin = 10;
const int bluePin = 9;
void setup() {
// Start off with the LED off.
setColourRgb(0,0,0);
}
void loop() {