Skip to content

Instantly share code, notes, and snippets.

View helloanoop's full-sized avatar

Anoop M D helloanoop

  • Bangalore, India
View GitHub Profile
@helloanoop
helloanoop / Preferences.sublime-settings
Last active December 10, 2019 19:27
Subime Settings as on 5 Sep 2018
{
"color_scheme": "Packages/Babel/Next.tmTheme",
"draw_indent_guides": false,
"folder_exclude_patterns":
[
"**/node_modules",
"**/bower_components",
"**/.git",
".sass-cache",
"public"
@helloanoop
helloanoop / .sublime-keymap
Last active September 19, 2018 17:12
ST3 Key Bindings
[
{ "keys": ["ctrl+left"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+right"], "command": "move_to", "args": {"to": "eol", "extend": false} }
]
@helloanoop
helloanoop / database.php
Last active January 1, 2019 18:34
InMemoryDB php class psuedo code
<?php
class Database
{
/**
* Storage
* @var array
*/
protected $database = array();
@helloanoop
helloanoop / Slush & Poppies ST Theme
Created December 17, 2019 19:38
Slush & Poppies ST Theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>author</key>
<string>William D. Neumann</string>
<key>name</key>
<string>Slush &amp; Poppies</string>
<key>settings</key>
<array>
@helloanoop
helloanoop / git-plumbing.md
Last active October 25, 2020 16:23
Git Plumbing Commands

Git plumbing Commands

Check Object Type

git cat-file -t 47ef

Pretty Print Object Content

git cat-file -p 47ef