git cat-file -t 47ef
git cat-file -p 47ef
<?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 & Poppies</string> | |
<key>settings</key> | |
<array> |
<?php | |
class Database | |
{ | |
/** | |
* Storage | |
* @var array | |
*/ | |
protected $database = array(); |
[ | |
{ "keys": ["ctrl+left"], "command": "move_to", "args": {"to": "bol", "extend": false} }, | |
{ "keys": ["ctrl+right"], "command": "move_to", "args": {"to": "eol", "extend": false} } | |
] |
{ | |
"color_scheme": "Packages/Babel/Next.tmTheme", | |
"draw_indent_guides": false, | |
"folder_exclude_patterns": | |
[ | |
"**/node_modules", | |
"**/bower_components", | |
"**/.git", | |
".sass-cache", | |
"public" |
# https://coderwall.com/p/pn8f0g/show-your-git-status-and-branch-in-color-at-the-command-prompt | |
COLOR_RED="\033[0;31m" | |
COLOR_YELLOW="\033[0;33m" | |
COLOR_GREEN="\033[0;32m" | |
COLOR_OCHRE="\033[38;5;95m" | |
COLOR_BLUE="\033[0;34m" | |
COLOR_WHITE="\033[0;37m" | |
COLOR_RESET="\033[0m" |
http_proxy=http://www-proxy.us.oracle.com:80 | |
https_proxy=https://www-proxy.us.oracle.com:443 | |
proxy=http://www-proxy.us.oracle.com:80 | |
strict-ssl=false | |
registry=http://registry.npmjs.org |
alias gs='git status'; | |
alias gd='git diff'; | |
alias gpm='git push origin master'; | |
alias b='npm run build'; | |
alias t='npm test'; | |
alias sd='npm run start.dev'; | |
alias vscode='/home/anoop/.local/share/umake/ide/visual-studio-code/bin/code'; |
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "ctrl+left", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+right", | |
"command": "workbench.action.terminal.focus", |
<link rel="stylesheet" href="../node_modules/@oracle/oraclejet/dist/css/alta/oj-alta-min.css"/> | |
<script type="text/javascript" src="../node_modules/requirejs/require.js"></script> | |
<script type="text/javascript" src="main.js"></script> | |
<oj-table data="[[datasource]]" | |
columns='[[columns]]' | |
row-renderer='[[oj.KnockoutTemplateUtils.getRenderer("row_tmpl", true)]]'> | |
</oj-table> |