Skip to content

Instantly share code, notes, and snippets.

View GNSubrahmanyam's full-sized avatar
🏠
Working from home

G Naga Subrahmanyam GNSubrahmanyam

🏠
Working from home
View GitHub Profile
@traumverloren
traumverloren / style.css
Last active January 7, 2024 14:05
VSCode Customizations for Operator Mono, Fira Code, and Dark Candy Theme
/*
Instructions for MacOS:
- Install the fonts 'Operator Mono' & 'Fira Code'
- Install theme 'Dark Candy'
- Add the following config to the VS Code settings.json:
{
"editor.renderWhitespace": "all",
"editor.fontSize": 14,
@Shafaet
Shafaet / dsldoc.md
Last active February 26, 2026 09:10 — forked from abhiranjankumar00/dslwiki.md
DSL Documentation
@trulyronak
trulyronak / .aliases
Last active February 17, 2024 10:52
Awesome Terminal Aliases (Featuring Brilliant Bash)
# fun stuff
alias lenny='echo \_(ツ)_/¯ | pbcopy'
alias tuxsay='cowsay -f tux '
alias fortunes='sh ~/.fortunes.sh'
alias life='figlet 42 | lolcat'
alias lol='while true; do sl; done;'
alias starwars='telnet towel.blinkenlights.nl'
alias fancy='figlet $@'
# to make people confused xD
@yanxi123-com
yanxi123-com / README.md
Last active April 11, 2018 18:14
add Git hook for standard style check

运行方法:

./pre-commit.sh # 安装 pre-commit

git commit ... # 自动检查代码是否符合 standard js 标准

CHECK=0 git commit ... # 不检查代码
@dolftax
dolftax / countries-alphaTwo.json
Created April 28, 2016 09:44
Countries and their alpha two code values
{
"AD": "Andorra",
"AE": "United Arab Emirates",
"AF": "Afghanistan",
"AG": "Antigua and Barbuda",
"AI": "Anguilla",
"AL": "Albania",
"AM": "Armenia",
"AO": "Angola",
"AR": "Argentina",
@mrfinch
mrfinch / dslwiki.md
Last active August 14, 2019 09:28
DSL Wiki

##DSL

###Datatypes supported:
#####integer,float,string,boolean,long_integer,character

####DSL for Variables:
DSL: Datatype(name)
#####Example:

  1. integer(a);
@bpeterso2000
bpeterso2000 / unicode_names.py
Created March 14, 2015 04:03
Sorted dictionary of Unicode values and corresponding names. Useful for providing hints to the user when UnicodeDecodeErrors occur.
CODENAMES = {
"\u0000": "NULL",
"\u0001": "START OF HEADING",
"\u0002": "TEXT, START OF",
"\u0003": "TEXT, END OF",
"\u0004": "TRANSMISSION, END OF",
"\u0005": "ENQUIRY",
"\u0006": "ACKNOWLEDGE",
"\u0007": "BELL",
"\u0008": "BACKSPACE",
@omurphy27
omurphy27 / transparent background image pattern overlay.css
Created March 26, 2013 04:59
CSS Transparent Background Image Pattern Overlay
/*Transparent pattern placed over an image, like we see on the bootstrap homepage: http://twitter.github.com/bootstrap/index.html*/
div {
width: 200px;
height: 200px;
display: block;
position: relative;
background: url(images/background-image.png);
}