Skip to content

Instantly share code, notes, and snippets.

View abhshkdz's full-sized avatar

Abhishek Das abhshkdz

View GitHub Profile
List of server names :
- jade
- pearl
- beryl
- ruby
- quartz
- moonstone
- onyx
- amber
@tsabat
tsabat / zsh.md
Last active July 22, 2025 02:26
Getting oh-my-zsh to work in Ubuntu
@captn3m0
captn3m0 / nvm-install.sh
Last active September 30, 2015 12:47
Node Installation via nvm on Ubuntu
git clone https://github.com/creationix/nvm.git ~/.nvm #clone the repo
. ~/.nvm/nvm.sh #load nvm
echo ". ~/.nvm/nvm.sh" >> ~/.bashrc #add nvm to bashrc, so it loads automatically
nvm install v0.8.16 #install nvm (will download binaries)
nvm use v0.8.16
#load this version as default from next time
nvm alias default v0.8.16
@eleclerc
eleclerc / solarized-light-markdown.diff
Created February 18, 2012 01:05
Markdown support in Solarized (Light) in Sublime Text 2 - 2165
--- Color Scheme - Default/Solarized (Light).tmTheme 2012-02-08 19:39:09.000000000 -0500
+++ User/Solarized (Light).tmTheme 2012-02-13 19:26:32.000000000 -0500
@@ -1368,17 +1368,6 @@
</dict>
<dict>
<key>name</key>
- <string>Markdown: Raw</string>
- <key>scope</key>
- <string>text.html.markdown markup.raw.inline</string>
- <key>settings</key>
@captn3m0
captn3m0 / 01-Introduction.mkd
Last active October 6, 2015 00:58
Quick Primer to Software Development

This document is guided at SDSLabs members, but should be equally valid to anyone working in technology.

I've tried to keep all advice language agnostic and independent from any technology. This is like a series of short blog posts I've condensed to a single gist. Feel free to fork and give some more of such advice.

@piscisaureus
piscisaureus / pr.md
Created August 13, 2012 16:12
Checkout github pull requests locally

Locate the section for your github remote in the .git/config file. It looks like this:

[remote "origin"]
	fetch = +refs/heads/*:refs/remotes/origin/*
	url = [email protected]:joyent/node.git

Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:

@captn3m0
captn3m0 / backup.md
Created September 2, 2012 22:23
My Backup Plan

This is the backup plan I'm using for my newly-won 1 TB HDD (Thanks Yahoo!).

Partitions

On the Internal HDD (320GB)

  • 50GB / (primary OS) (ext4)
  • 220 GB /home (ext4)
@desandro
desandro / require-js-discussion.md
Created January 31, 2013 20:26
Can you help me understand the benefit of require.js?

I'm having trouble understanding the benefit of require.js. Can you help me out? I imagine other developers have a similar interest.

From Require.js - Why AMD:

The AMD format comes from wanting a module format that was better than today's "write a bunch of script tags with implicit dependencies that you have to manually order"

I don't quite understand why this methodology is so bad. The difficult part is that you have to manually order dependencies. But the benefit is that you don't have an additional layer of abstraction.


@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active July 12, 2025 14:05
A badass list of frontend development resources I collected over time.
@karpathy
karpathy / min-char-rnn.py
Last active July 27, 2025 12:08
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)