This file contains hidden or 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
# | |
# /home/tonussi/.nvidia-settings-rc | |
# | |
# Configuration file for nvidia-settings - the NVIDIA X Server Settings utility | |
# Generated on Fri Sep 20 17:35:07 2013 | |
# | |
# ConfigProperties: | |
RcFileLocale = C |
This file contains hidden or 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 = tonussi | |
email = [email protected] | |
[credential] | |
helper = cache --timeout=3600 | |
[core] | |
excludesfile = /home/tonussi/.gitignore_global | |
[push] | |
default = simple | |
[grep] |
This file contains hidden or 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
" Pathogen | |
filetype off | |
call pathogen#incubate() | |
filetype plugin indent on | |
execute pathogen#infect() | |
" Set options regarding the undo history and undo tree depth | |
set undofile | |
set undoreload=10000 | |
set undolevels=512 |
This file contains hidden or 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
.data | |
#arranjo inicializado com elementos nao nulos | |
_array: .word 1, 2, 3, 4, 5, 6, 7, 8, 9, 2, 3 | |
_size: .word 11 | |
.text | |
.globl main | |
main: | |
jal clear1 #salto para o endereco d0 processamento | |
li $v0, 10 # exit syscall |
This file contains hidden or 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
import ddf.minim.*; | |
import ddf.minim.ugens.*; | |
Minim minim; | |
AudioOutput out; | |
Circle circle; | |
void setup() { | |
size(512, 200); | |
minim = new Minim(this); |
This file contains hidden or 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 | |
cd /home/tonussi/Git/test | |
for file in `dir -d *.html` ; do | |
pandoc -s -r html "$file" -o $file.markdown | |
done |
This file contains hidden or 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 | |
cd "/path/to/dir" | |
for file in `dir -d *` ; do | |
t=$(mktemp) | |
qpdf --password="password" --decrypt "$file" "$t" && \ | |
mv "$t" "$file" | |
done |
This file contains hidden or 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
<root> | |
<medicoes class="linked-list"> | |
<lista> | |
<lat>-20.29</lat> | |
<lon>-43.76</lon> | |
<dtLeitura>19/04/2010</dtLeitura> | |
<hrLeitura>08:30:00</hrLeitura> | |
<nmStation>CEMIG_1</nmStation> | |
<vlAirTempAvg>16.73</vlAirTempAvg> |
This file contains hidden or 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
\newtheorem{theorem}{Theorem} | |
\newtheorem{acknowledgement}[theorem]{Acknowledgement} | |
\newtheorem{algorithm}[theorem]{Algorithm} | |
\newtheorem{axiom}[theorem]{Axiom} | |
\newtheorem{case}[theorem]{Case} | |
\newtheorem{claim}[theorem]{Claim} | |
\newtheorem{conclusion}[theorem]{Conclusion} | |
\newtheorem{condition}[theorem]{Condition} | |
\newtheorem{conjecture}[theorem]{Conjecture} | |
\newtheorem{corollary}[theorem]{Corollary} |
This file contains hidden or 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
\begin{thebibliography}{9} | |
\bibitem{Ref1} Refer\^{e}ncias biogr\'{a}ficas no formato APS (Physical | |
Review) - Ex. Artigo: Autores, \ "T\'{\i}tulo do artigo entre aspas", Nome | |
da Revista \textbf{Volume em Negrito}, p\'{a}gina inicial (ano de publica% | |
\c{c}\~{a}o). | |
\bibitem{Ref2} Refer\^{e}ncias biogr\'{a}ficas no seguinte APS (Physical | |
Review) - Ex. Livro: Autores, \ \textit{T\'{\i}tulo do \ Livro em It\'{a}lico% | |
}, (Editora, Cidade de Publica\c{c}\~{a}o, Ano de publica\c{c}\~{a}o). |