Verifying my Blockstack ID is secured with the address 13JXFDttCGrUj28EGHQPumS75L9q4nsMEp https://explorer.blockstack.org/address/13JXFDttCGrUj28EGHQPumS75L9q4nsMEp
View keybase.md
Keybase proof
I hereby claim:
- I am pksunkara on github.
- I am pksunkara (https://keybase.io/pksunkara) on keybase.
- I have a public key whose fingerprint is 99CE B8EB B2ED C081 CA78 1127 F970 11F6 0D3A A3F6
To claim this, I am signing this object:
View github_hook.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// TODO: Github Apps | |
const client = require('octonode').client(process.env.GITHUB_TOKEN); | |
const async = require('async'); | |
const colors = require('colors'); | |
const inquirer = require('inquirer'); | |
const program = require('commander'); | |
// TODO: Github Org | |
program | |
.version('0.1.0') |
View resourceful.md
One-to-Many relationship
In some web applications, we need to define a one-to-many relationship between two entities. For example, let's take github.
Example: One-to-Many relationship exists between user
and repository
. User pksunkara
have 2 repositories octonode
and hub
The entities are defined as the following:
var resourceful = require('resourceful');
View clarg.md
Command Line Arguments Specification
This specification defines Command Line Arguments level 1 (CLARG 1.0). This document aims to direct development of command line tools conform to a set of rules while parsing options.
Arguments
The different type of arguments are:
- Short Option
- Long Option
View config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Pavan Kumar Sunkara | |
email = pavan.sss1991@gmail.com | |
username = pksunkara | |
[init] | |
defaultBranch = master | |
[core] | |
editor = nvim | |
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
pager = delta |