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 | |
| set -x | |
| exec 1>/tmp/test 2>/tmp/test | |
| if [ $# -lt 1 ] | |
| then | |
| echo "Usage: $(basename $0) executable_name" | |
| exit 1 | |
| fi |
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
| ├── generic | |
| │ ├── cfg | |
| │ │ └── base.cfg | |
| │ ├── __init__.py | |
| │ └── tests | |
| │ ├── cfg | |
| │ │ ├── yum_install.cfg | |
| │ │ └── yum_update.cfg | |
| │ ├── __init__.py | |
| │ ├── utils.py |
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 | |
| MOUNTPOINT=/mnt/tmp_nbd | |
| IMAGE=$1 | |
| PARTITION=${2:-/dev/nbd0p1} | |
| if [[ $EUID -ne 0 ]]; then | |
| echo "This script must be run as root" | |
| exit 1 | |
| fi |
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
| <domain type='kvm'> | |
| <name>fedoraserver1</name> | |
| <memory unit='KiB'>4194304</memory> | |
| <currentMemory unit='KiB'>4194304</currentMemory> | |
| <vcpu placement='static'>1</vcpu> | |
| <resource> | |
| <partition>/machine</partition> | |
| </resource> | |
| <os> | |
| <type arch='x86_64'>hvm</type> |
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
| @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /*only needed once*/ | |
| #PersonalToolbar[moz-collapsed="true"] { visibility: visible !important; } |
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
| # | |
| # ~/.bashrc | |
| # | |
| # If not running interactively, don't do anything | |
| [[ $- != *i* ]] && return | |
| alias gls='git status' | |
| alias ls='ls --color=auto' | |
| alias grep='grep --color=auto' |
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
| diff -uNr abntex2/abntex2-alf.bst abntex2.new/abntex2-alf.bst | |
| --- abntex2/abntex2-alf.bst 2014-12-17 16:53:02.400206788 -0200 | |
| +++ abntex2.new/abntex2-alf.bst 2014-12-17 16:59:12.226889659 -0200 | |
| @@ -2113,7 +2113,7 @@ | |
| #3 'abnt.etal.cite := | |
| #3 'abnt.etal.list := | |
| "et al." 'abnt.etal.text := | |
| - #0 'abnt.full.initials := | |
| + #1 'abnt.full.initials := | |
| #0 'abnt.last.names := %#0 abnt-style, #1 bibtex-style |
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
| @misc{uppaal, | |
| title = {{UPPAAL}}, | |
| url = {http://uppaal.org/}, | |
| year=2014, | |
| urldate = {2014-07-28}, | |
| file = {UPPAAL:/home/fabiano/.zotero/zotero/ru3nfjod.default/zotero/storage/J6WAE649/uppaal.org.html:text/html} | |
| } | |
| @misc{this, | |
| author={Aluno, Nome do}, |