Skip to content

Instantly share code, notes, and snippets.

View adriculous's full-sized avatar
💕
Stay safe everyone!

Adrianne Padua adriculous

💕
Stay safe everyone!
View GitHub Profile
@adriculous
adriculous / gist:7f5df1751984d47b794a89fa1fdd958b
Last active July 17, 2019 18:10
Nest-texting in a blockquote (MfWaH Part 2)
/* Nest a text in a blockquote with another blockquote! */
> The quick brown fox jumps over the lazy dog?
>> ... or is the wolf simply hungry?
/* Quote this passage with blockquotes--- Markdown style! */
> The quick brown fox jumps over the lazy dog?
> ... or is the wolf simply hungry?
@adriculous
adriculous / gist:a44f0e16b06dbc3e03a99a258c406567
Created July 17, 2019 07:11
Text Emphasis (MfWaH Part 2)
/* Here's how to make your text "drabble" bold using asterisks - use 2 asterisks at the front and end of a word or phrase */
A **drabble** is a very quick short fiction written in only about 100 words (or less) in length, according to Wikipedia. It's a very short version of flash fiction, so to speak.
/* And here's the same thing using 2 underscores! */
A __drabble__ is a very quick short fiction written in only about 100 words (or less) in length, according to Wikipedia. It's a very short version of flash fiction, so to speak.
/* Here's how to make "55 Fiction" Italic. It's very easy using just one asterisk! */
@adriculous
adriculous / gist:290ca9eec6aceb1e2adf946b1c83d804
Created July 17, 2019 07:10
Paragraphs and Line Breaks (MfWaH Part 2)
/* Markdown paragraphs and line breaks below */
A drabble is a very quick short fiction written in only about 100 words (or less) in length, according to Wikipedia. It’s a very short version of a flash fiction, so to speak.
/* press ENTER twice */
An example of a drabble is what we call 55 Fiction.
/* Markdown line breaks here */
The quick brown fox jumps over the lazy dog? /* press ENTER once* /
… or is the wolf simply hungry?
@adriculous
adriculous / gist:5abe51eee307a34e32d0ac65c58e3fad
Created July 17, 2019 07:08
Markdown Headers (Markdown for Writers and Hobbyists Part 2)
/* SETEXT style headers only apply to the first two levels of headers (H1 and H2) */
Here's a little drabble!
========================
(What the heck is a drabble?)
-----------------------------
/* You can also write SETEXT style headers this way too */
@adriculous
adriculous / gist:fbe322968c73d7b66b733120fde56c6d
Created July 17, 2019 06:06
1st Markdown Code for Markdown for Writers and Hobbyists (Part 1)
Yo, yo, YO! Welcome to mah HOOOD~!!
===================================
(Translation: Welcome to my site~!!)
------------------------------------
What's with all the dashes and the equal signs underneath the top text? Can someone explain to me?
**SOMEONE is very curious now!**
*Well, not that curious...*
@adriculous
adriculous / gist:6001d8d8f41566d325984f313cbbc159
Last active May 30, 2019 03:22
Markdown Code for Code Blocks (Discord Chat, various CMS systems, etc.)
# Type 3 backticks (```) in the opening and close it with another set of 3 backticks (```).
```
We never surrender , cause our decision
You make us stronger, yeah Let it go, let it go
We tryin harder, Over and over
Now, show out it out!
We never going back
- MADKID, "Never going back"
@adriculous
adriculous / gist:01bd18185cfd459f563fbcfb85ac4493
Created September 8, 2017 05:02
[At Home] Banner Linkup Code
<a href="https://adriculous.life/new-linkup-at-home/"><img src="https://i.imgur.com/D2npKNb.png" alt="At Home - a Linkup Hosted by The ADRICULOUS Life" /></a>
@adriculous
adriculous / keybase.md
Created March 16, 2017 03:11
Keybase Proof (adriculous)

Keybase proof

I hereby claim:

  • I am adriculous on github.
  • I am adriculous (https://keybase.io/adriculous) on keybase.
  • I have a public key ASBPDxqfUqeNBwFIzQAbI7-iZ_Y1HWhO42TPj3F2Mkm0pQo

To claim this, I am signing this object:

@adriculous
adriculous / hashes.rb
Created July 28, 2016 08:14
symbols and hashes
# Symbols and Hashes
manga_01 = { title: "Cardcaptor Sakura",mangaka: "CLAMP" }
manga_02 = { title: "Zodiac P.I.",mangaka: "Natsumi Ando" }
manga_03 = { title: "The Kindaichi Case Files",mangaka: "Yozaburo Kanari (writer) & Fumiya Sato (illustrator)" }
manga_04 = { title: "Mermaid Melody Pichi Pichi Pitch",mangaka: "Michiko Yokote (writer) & Pink Hanamori (illustrator)"}
puts "My favorite manga series is " + manga_01[:title] + " by " + manga_01[:mangaka] + "."