I hereby claim:
- I am nagakputtagunta on github.
- I am nagakputtagunta (https://keybase.io/nagakputtagunta) on keybase.
- I have a public key ASDu56SosgLRBbVJR0tDUsAodo7RTW4bEq_PVBfizsbTPAo
To claim this, I am signing this object:
| <!-- Office 2019 enterprise client configuration file sample. To be used for Office 2019 | |
| enterprise volume licensed products only, including Office 2019 Professional Plus, | |
| Visio 2019, and Project 2019. | |
| Do not use this sample to install Office 365 products. | |
| For detailed information regarding configuration options visit: http://aka.ms/ODT. | |
| To use the configuration file be sure to remove the comments | |
| The following sample allows you to download and install Office 2019 Professional Plus, |
I hereby claim:
To claim this, I am signing this object:
| # Git branch in prompt. | |
| # source: http://martinfitzpatrick.name/article/add-git-branch-name-to-terminal-prompt-mac/ | |
| # Add this to .bash_profile | |
| parse_git_branch() { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
| } | |
| export PS1="\u@\h \W\[\033[32m\]\$(parse_git_branch)\[\033[00m\] $ " |
| // ==UserScript== | |
| // @name Redmine 3.x Styler | |
| // @namespace created by Naga Puttagunta | |
| // @description Redmine 3.x Style Overrides | |
| // @match https://*/redmine/* | |
| // @match http://*/redmine/* | |
| // @version 1.0 | |
| // ==/UserScript== | |
| function addGlobalStyle(css) { |
| #!/bin/sh | |
| # install homebrew | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # verify homebrew installation | |
| # TODO handle output to figure out whether to processed further | |
| brew doctor | |
| # caskroom |
| on alfred_script(q) | |
| set profileToOpen to item 1 of q | |
| tell application "iTerm" | |
| activate | |
| tell the first terminal | |
| launch session profileToOpen | |
| end tell |
| if echo {query} | grep -Gq '^[0-9]\{1,\}$' | |
| then | |
| # Epoch to Human Readable Time Conversion | |
| date -r {query} -u "+%Y-%m-%d %H:%M:%S %Z" | |
| elif echo {query} | grep -Gq '^[0-9]\{4\}-[0-9]\{1,2\}-[0-9]\{1,2\} [0-9]\{1,2\}:[0-9]\{1,2\}:[0-9]\{1,2\}$' | |
| then | |
| # Human Readable to Epoch Time Conversion | |
| date -j -u -f "%Y-%m-%d %H:%M:%S" "{query}" "+%s" | |
| else | |
| # Invalid Input |
| echo "{query}" | xxd -r -p |