Skip to content

Instantly share code, notes, and snippets.

View supercodingninja's full-sized avatar
😇
Continually Blest, Thankful, Hopeful.

Frederick Thomas supercodingninja

😇
Continually Blest, Thankful, Hopeful.
View GitHub Profile
@supercodingninja
supercodingninja / Colored Github README.md
Last active February 22, 2025 22:55 — forked from pvrego/Colored Github README.md
How to make README.md files with colored texts in Github

Change Your Markdown Font & Font-Background

$\Huge{\textsf{{\color[rgb]{0.0, 0.0, 0.0}THE BEST~}{\color[rgb]{0.3, 0.2, 0.1}P}{\color[rgb]{0.2, 0.1, 0.3}R}{\color[rgb]{0.1, 0.2, 0.3}A}{\color[rgb]{0.4, 0.5, 0.6}C}{\color[rgb]{0.5, 0.6, 0.4}T}{\color[rgb]{0.6, 0.4, 0.5}I}{\color[rgb]{0.7, 0.8, 0.9}C}{\color[rgb]{0.9, 0.8, 0.7}E}}}$

Check out Luigi Minardi's repo and you'll be able to do this 👇🏿 Don't forget to give him and this repo a star; and while you're at it give me one

🎷 $\Huge{\textsf{{\color[rgb]{0.0, 0.0, 1.0}TH}{\color[rgb]{0.1, 0.0, 0.9}E~ }{\color[rgb]{0.2, 0.0, 0.8}S}{\color[rgb]{0.3, 0.0, 0.7}UP}{\color[rgb]{0.4, 0.0, 0.6}ER~ }{\color[rgb]{0.5, 0.0,

@supercodingninja
supercodingninja / LICENSE
Created February 16, 2021 08:04
Frederick Thomas's CV (Markdown). Please visit my live gh-pages https://supercodingninja.github.io/markdown-cv/ for a better format. Thank you.
The MIT License (MIT)
Copyright (c) 2015 Eliseo Papa
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@supercodingninja
supercodingninja / index.html
Created January 13, 2019 13:21 — forked from CodeMyUI/index.html
Opening Sequence
<div class="container">
<div class="os-phrases" id="os-phrases">
<h2>Sometimes it's better</h2>
<h2>to hide</h2>
<h2>in order to</h2>
<h2>survive evil</h2>
<h2>Thanatos</h2>
<h2>This fall</h2>
<h2>Prepare</h2>
<h2>Refresh to replay</h2>
@supercodingninja
supercodingninja / I0iG-0.js
Created June 1, 2017 01:44
null created by supercodingninja - https://repl.it/I0iG/0
/*jshint multistr:true */
var text = "Once upon a time, a man named, 'Frederick,' travelled from a distant land.\ Frederick did not like the lot in life, that he was living; so, he joined his nation's military force. He journeyed through distant lands, across the globe he lived on.\ Frederick was still not happy; and he began to cry out to GOD, in Heaven; and GOD heard and answered Frederick.";
var myName = "Frederick";
var hits = [];
// Look for "F" in the text
for(var i = 0; i < text.length; i++) {
if (text[i] === "F") {
// If we find it, add characters up to
@supercodingninja
supercodingninja / Rock, Paper, Scissors Game, with Pseudo Coding_Codecademy.js
Created May 30, 2017 14:55
Rock, Paper, Scissors Game, with Pseudo Coding_Codecademy created by supercodingninja - https://repl.it/IXdG/1
//Rock destroys scissors.//
//Scissors cut paper.//
//Paper covers rock.//
//Here lies the conundrum: The Circle of Life.//
/*This code will break the game into 3 phases:
a. User makes a choice
b. Computer makes a choice
c. A compare function will determine who wins*/
@supercodingninja
supercodingninja / My First Coding Adventure, with Justin Bieber (Why?!)_Codecademy.js
Last active May 30, 2017 14:07
My First Coding Adventure, with Justin Bieber (Why?!)_Codecademy created by supercodingninja - https://repl.it/IXfo/0
// Check if the user is ready to play!
prompt ("ARE YOU READY FOR VICTORY?");
confirm ("I AM READY FOR VICTORY!!!");
var age;
age = prompt ("What's your age");
if (age < 13)
{console.log ("You are allowed to play; but we take no responsibility.")}
else {console.log ("You're ready to play with the big boys! PLAY ON!")}
console.log ("You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'");
console.log ("Suddenly, Bieber stops and says, 'Who wants to race me?'");
@supercodingninja
supercodingninja / IXdH-0.js
Created May 30, 2017 13:38
null created by supercodingninja - https://repl.it/IXdH/0
//Rock destroys scissors.//
//Scissors cut paper.//
//Paper covers rock.//
//Here lies the conundrum: The Circle of Life.//
/*This code will break the game into 3 phases:
a. User makes a choice
b. Computer makes a choice
c. A compare function will determine who wins*/
@supercodingninja
supercodingninja / index.css
Created May 30, 2017 06:11
HTML & CSS_Pseudo Selectors_Links_Codcademy created by supercodingninja - https://repl.it/IXII/0
a:link {
text-decoration: none;
color: #008B45;
}
a:hover {
color: #00FF00;
}
a:visited {
@supercodingninja
supercodingninja / index.css
Created May 30, 2017 04:30
null created by supercodingninja - https://repl.it/IWxg/1
p {
font-family: Garamond, serif;
}
#intro {
font-weight: bold;
color: #000000;
}
div p {