Skip to content

Instantly share code, notes, and snippets.

View jithine's full-sized avatar

Jithin Emmanuel jithine

  • Yahoo!
  • California
  • 11:40 (UTC -07:00)
View GitHub Profile

Keybase proof

I hereby claim:

  • I am jithine on github.
  • I am jithine (https://keybase.io/jithine) on keybase.
  • I have a public key ASAErjzreId5di5I2StvMsY-HZTurjSwDMSR81JKRqHu2go

To claim this, I am signing this object:

@jithine
jithine / get_options.sh
Created September 22, 2017 21:05 — forked from deshion/get_options.sh
Parse command line options for a shell script (POSIX)
#!/bin/sh
# POSIX
# Reset all variables that might be set
file=
verbose=0 # Variables to be evaluated as shell arithmetic should be initialized to a default or validated beforehand.
while :; do
case $1 in
-h|-\?|--help) # Call a "show_help" function to display a synopsis, then exit.
@jithine
jithine / jsbin.piwo.css
Created February 6, 2014 03:11
calc() decimal caveats
.parent {
width: 128.75px;
}
.child {
width: calc(100% - 10px);
height: 30px;
background-color: blue;
}