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
function h=bubbleplot(varargin) | |
%BUBBLEPLOT Bubble plot, using MATLAB's scatter | |
% | |
% x, y -- data | |
% | |
x=varargin{1}(:); | |
y=varargin{2}(:); | |
data=sortrows([x y]); |
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
#!/usr/bin/python | |
import sys | |
from optparse import OptionParser | |
usage="Usage: %prog -f <filename> -p <positives> -l <length>" | |
parser = OptionParser(usage) | |
parser.add_option("-f", "--file", dest="filename", help="write report to FILE") | |
parser.add_option("-p", "--positives", type="float", dest="pos", help="% positives") | |
parser.add_option("-l", "--length", type="float", dest="len", help="% length") | |
import re |
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
#!/bin/bash | |
if [[ $# -eq 0 ]] | |
then | |
echo "Usage: `basename $0` <output file> <input files>" | |
exit 1 | |
fi | |
ofile=$1 | |
if [[ -f $ofile ]] | |
then |
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
#Courtesy: http://www.linuxjournal.com/content/tech-tip-extract-pages-pdf | |
#Add this to your .bashrc | |
function pdfpextr() | |
{ | |
# this function uses 3 arguments: | |
# $1 is the first page of the range to extract | |
# $2 is the last page of the range to extract | |
# $3 is the input file | |
# output file will be named "inputfile_pXX-pYY.pdf" |
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
<snippet> | |
<content><![CDATA[ | |
\begin{python} | |
${1} | |
\end{python} | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>py</tabTrigger> | |
<!-- Optional: Set a scope to limit where the snippet will trigger --> | |
<scope>text.tex.latex</scope> |
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
<snippet> | |
<content><![CDATA[ | |
\begin{block}{${1:title}} | |
\begin{itemize} | |
\item ${2:items}. | |
\end{itemize} | |
\end{block} | |
]]></content> | |
<!-- Optional: Set a tabTrigger to define how to trigger the snippet --> | |
<tabTrigger>block</tabTrigger> |
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
<snippet> | |
<content><![CDATA[\\begin{frame}[fragile]{${1:title}} | |
$2 | |
\\end{frame}]]></content> | |
<tabTrigger>fframe</tabTrigger> | |
<scope>text.tex.latex</scope> | |
<description>Beamer frame</description> | |
</snippet> |
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
<snippet> | |
<content><![CDATA[ | |
\begin{columns} | |
\begin{column}{${1:2.5in}} | |
$3 | |
\end{column} | |
\begin{column}{${2:2.5in}} | |
\end{column} | |
\end{columns} |
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
""" Transliterate texts between unicode and standard transliteration schemes. | |
Transliterate texts between non-latin scripts and commonly-used latin | |
transliteration schemes. Uses standard Unicode character blocks -- | |
e.g. DEVANAGARI U+0900 ... U+097F -- and transliteration schemes -- | |
e.g. the IAST convention for transliteration of Sanskrit to latin-with-dots. | |
The following character blocks and transliteration schemes are included: | |
DEVANAGARI |
OlderNewer