Skip to content

Instantly share code, notes, and snippets.

View chirag-v's full-sized avatar

Chirag Vora chirag-v

View GitHub Profile
%alias:
Define an alias for a system command.
%alias_magic:
%alias_magic [-l] [-c] name target
%autocall:
Make functions callable without having to type parentheses.
%automagic:
Make magic functions callable without having to type the initial %.
%bookmark:
Manage IPython's bookmark system.
package com.myurl.myapp;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.net.Uri;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.ProgressDialog;
@chirag-v
chirag-v / list-comprehension-even-numbers.py
Created February 28, 2013 11:42
list comprehension method to get even numbers from a range.
def even(x):
return x % 2 == 0
[num for num in range(10) if even(num)]
@chirag-v
chirag-v / filter-even-numbers.py
Last active December 14, 2015 08:09
How to filter( ) even numbers from a given range ( ) of numbers.
def even(x):
return x % 2 == 0
list(__builtin__.filter(even, range(10)))
@chirag-v
chirag-v / isnan.py
Last active December 14, 2015 05:49
isnan function in python
import math as m
x=float('nan')
m.isnan(x) # True
#!/usr/bin/python
#Show how to make and save a simple line plot with labels, title and grid
#modified from matplotlib official tutorial @ http://www.scipy.org/Plotting_Tutorial
#Run directly on iPython shell
import numpy
import pylab
pylab.interactive(True)
pylab.show()
import shutil
shutil.copy('/home/user/acetylene.xyz', '/home/user/backup/')
## if you want to preserve the meta-data of acetylene.txt
## then you should use shutil.copy2()
@chirag-v
chirag-v / .emacs.el
Last active December 12, 2015 21:49
.emacs file
;; Convert "yes or no" prompts to "y or n" instead
(fset 'yes-or-no-p 'y-or-n-p)
;; [Home] & [End] key will take you to beginning & end of line
(global-set-key [home] 'beginning-of-line)
(global-set-key [end] 'end-of-line)
;; displays the time in the status bar
(display-time)
@chirag-v
chirag-v / elisp-delete.el
Last active December 12, 2015 19:09
elisp [delete] key
;; Use [Delete] key to delete selected characters
(global-set-key [delete] 'delete-char)
@chirag-v
chirag-v / Z-matrix
Created February 13, 2013 01:13
Z-matrix of acetaldehyde created using avogadro
0 1
C
H 1 1.08515
C 1 1.49318 2 120.10198
O 1 1.22026 2 119.76319 3 180.02562
H 3 1.11007 1 109.81648 2 359.97438
H 3 1.11015 1 109.75404 2 240.10815
H 3 1.11015 1 109.75404 2 119.89178