This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<title>Base</title> | |
<link rel="Shortcut Icon" href="/favicon.ico" type="image/x-icon" /> | |
<meta name="author" content="Med Aduh" /> | |
<meta name="description" content="Learning to Write, Code and Design."> | |
<meta http-equiv="pragma" content="no-cache" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This theme is based on https://medium.com/@docodemore/an-alternative-to-operator-mono-font-6e5d040e1c7e#.nk01drf9k | |
// I am using Cobalt2 for the Syntax Theme and One Dark for the UI Theme. | |
atom-text-editor { | |
font-family: 'Fira Code'; | |
font-style: normal; | |
text-rendering: optimizeLegibility; | |
} | |
atom-text-editor::shadow { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Looping a Triangle | |
let count = 1; | |
let hash = "#"; | |
while (count <= 7) { | |
document.write(hash + "<br>"); | |
count += 1; | |
hash += "#"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.group:before, | |
.group:after { | |
content: ""; | |
display: table; | |
} | |
.group:after { | |
clear: both; | |
} | |
.group { | |
clear: both; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.sideBar.location": "left", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "Dracula Soft", | |
"editor.fontFamily": "'Fira Code', 'monospace', monospace, 'Droid Sans Fallback'", | |
"editor.fontSize": 12, | |
"editor.fontLigatures": true, | |
"editor.lineNumbers": "relative", | |
"editor.minimap.enabled": false, | |
"[python]": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SuperMeatBoy | |
# | |
# @author Med Aduh <twitter.com/ramidem> | |
local ret_status="%(?:🦖💨 :🦖💩 )" | |
PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg_bold[blue]%}%c $(git_prompt_info)% %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_CLEAN=") %{$fg_bold[green]%}✔ " | |
ZSH_THEME_GIT_PROMPT_DIRTY=") %{$fg_bold[yellow]%}✗ " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{07b52e3e-de2c-5db4-bd2d-ba144ed6c273}", | |
"copyOnSelect": false, | |
"copyFormatting": false, | |
"showTabsInTitlebar": false, | |
"alwaysShowTabs": false, | |
"largePasteWarning": false, | |
"profiles": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.sideBar.location": "right", | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "Atom One Dark", | |
"editor.fontFamily": "'Fira Code', monospace", | |
"editor.fontWeight": "600", | |
"editor.fontLigatures": true, | |
"editor.minimap.enabled": false, | |
"[python]": { | |
"editor.rulers": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"coc.preferences.formatOnSaveFiletypes": [ | |
"css", | |
"html", | |
"json", | |
"python", | |
"graphql", | |
"markdown", | |
"javascript", | |
"typescript", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
AP Cargo Tracker | |
A script that periodically fetches the delivery status of an AP Cargo package using its airwaybill number and displays it as a notification (MacOS ONLY). | |
Make the file executable | |
chmod +x ap_cargo.py |