Skip to content

Instantly share code, notes, and snippets.

View luna-skye's full-sized avatar
πŸŒ™

Luna Skye luna-skye

πŸŒ™
  • Earth
View GitHub Profile
# Copied from a Reddit post at: https://www.reddit.com/r/TransTryouts/comments/ljaewl/some_code_you_can_use_to_test_out_pronouns/
# All credit goes to u/tranz-geek and u/ekaj1707
name = input("Please enter the name you’d like to test.").capitalize()
print(β€œHi β€œ, name)
# Set Pronouns
subjective = input("Please enter the subjective pronoun (such as he, she, or they): ).casefold()
objective = input("Please enter the objective pronoun (such as him, her or them): ").casefold()
possessive = input("Please enter the possessive pronoun (such as his, her or their): β€œ).casefold()
@luna-skye
luna-skye / COMMIT_CONVENTION.md
Last active December 16, 2019 03:51 — forked from abravalheri/commit.md
SEP: Git Commit Message Guidelines

Commit Message Guidelines

In the last few years, the number of programmers concerned about writting structured commit messages has dramatically grown. As exposed by Tim Pope in article, readable commit messages are easy to follow when looking through the project history. Moreover the AngularJS contributing guides introduced conventions that can be used by automation tools to automatically generate useful documentation, or by developpers during debugging process.

This document borrows some concepts, conventions and even text mainly from these two sources, extending them in order to provide a sensible guideline for writing commit messages.

Java 19 hrs 7 mins β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–β–‘β–‘ 86.4%
JSON 1 hr 3 mins β–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 4.8%
Groovy 41 mins β–‹β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 3.1%
Properties 25 mins ▍░░░░░░░░░░░░░░░░░░░░ 1.9%
Text 23 mins β–Žβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 1.8%
@luna-skye
luna-skye / LoadingState.vue
Created March 13, 2019 10:10
A Vue Component for display placeholder content loading
<template>
<svg width="600px" height="400px" viewBox="0 0 600 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<g>
<!-- THIS IS WHERE YOUR SVG WILL BE INSERTED WHEN USING THE COMPONENT -->
<slot />
</g>
<defs>
<clipPath id="clip0">
<rect width="600" height="400" fill="white" />
</clipPath>