Skip to content

Instantly share code, notes, and snippets.

View vprasanth's full-sized avatar

Prasanth Vaaheeswaran vprasanth

  • Toronto, Canada
  • 19:32 (UTC -04:00)
View GitHub Profile
@vprasanth
vprasanth / collection.json
Last active July 23, 2021 21:28
Platform V2 Insomnia collection
{"_type":"export","__export_format":4,"__export_date":"2021-07-23T21:27:15.001Z","__export_source":"insomnia.desktop.app:v2021.4.1","resources":[{"_id":"req_08deb1dba8b64159afbb28a856fcdf58","parentId":"fld_6dfab177c1ec436cb52ec756c12233f7","modified":1626054833254,"created":1625821981253,"url":"{{ _.BASE_PATH }}:{{ _.PORT }}/api/v1/context/public/{{ _.A_DEMO_NAME }}","name":"Get public creds","description":"","method":"GET","body":{},"parameters":[],"headers":[{"id":"pair_4b5df0057ec2487a8d2f91b7ac450432","name":"Authorization","value":"Bearer {{ _.TOKEN }}","description":""},{"id":"pair_61cb2a33056343a9ad4af403fefe8027","name":"Accept","value":"application/json","description":""}],"authentication":{},"metaSortKey":-1625812288445.5,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"fld_6dfab177c1ec436cb52ec756c12233f7","parentId":"wrk_c45e1

Keybase proof

I hereby claim:

  • I am vprasanth on github.
  • I am vprasanth (https://keybase.io/vprasanth) on keybase.
  • I have a public key ASBhwov88hY2cc56hg19LfWWu5HKRTPpiJlfcugAvajcWgo

To claim this, I am signing this object:

@vprasanth
vprasanth / argh.md
Last active September 4, 2019 03:06
Getting the friggin linters working on Sublime

SublimeLinter.sublime-settings--User

{
  "debug": false,
  "paths": {
    "osx": ["~/.nvm/versions/node/v10.15.3/bin/"]
  },
  "linters": {
    "eslint": {
 "env": { "PATH": "~/.nvm/versions/node/v10.15.3/bin/" }
@vprasanth
vprasanth / semantic-commit-messages.md
Created September 21, 2018 03:25 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

// iffe
(function() {
'use strict';
const nav = [
{
element: '#home-button',
target: '#scroll-to-home'
},
{
# my docker functions
dps () {
docker ps;
}
dstop () {
docker stop $1;
}
@vprasanth
vprasanth / cookie.js
Created November 11, 2015 23:26 — forked from ajagelund/cookie.js
MDN JavaScript cookie framework
@vprasanth
vprasanth / tmux-cheatsheet.markdown
Created November 3, 2015 17:23 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@vprasanth
vprasanth / .jscsrc
Created October 15, 2015 05:02
Simple .jscsrc
{
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireParenthesesAroundIIFE": true,
"disallowMultipleSpaces": true,
"validateIndentation": 4,
"maximumLineLength": 120,
"requireCapitalizedConstructors": true,
"disallowEmptyBlocks": true,
"validateQuoteMarks": "'",
"validateLineBreaks": "LF",