Skip to content

Instantly share code, notes, and snippets.

View r-martins's full-sized avatar

Ricardo Martins r-martins

View GitHub Profile
@r-martins
r-martins / hdmi.txt
Created October 21, 2012 11:47
Fazendo o audio sair no HDMI no Ubuntu
speaker-test -c 2 -r 48000 -D hw:0,3
- pausar o teste com ctrl+c
- e depois o hdmi aparecera no treco de som
@r-martins
r-martins / utf-8 e bom.txt
Created October 8, 2012 19:46
Encontrando arquivos UTF-8 com BOM
grep -rl $'\xEF\xBB\xBF' .
Mais info em
http://stackoverflow.com/questions/204765/elegant-way-to-search-for-utf-8-files-with-bom
@r-martins
r-martins / magento.txt
Created July 4, 2012 17:20
Inserir bloco no magento via xml
Primeiro devemos ter o text_list inserido em algum ponto-chave da pagina com o $this->getChildHtml()..
No XML ficaria assim:
<block type="core/text_list" name="before_main_div_end" as="before_main_div_end" translate="label">
<label>Fim do conteudo principal da pagina</label>
</block>
Depois é só inserir os phtml qdo necessário... Ex:
@r-martins
r-martins / git.txt
Created July 4, 2012 12:47
Adicionando arquivos de um commit específico para um .tar
git diff-tree -r --no-commit-id --name-only --diff-filter=ACMRT $commit_id | xargs tar -rf mytarfile.tar
@r-martins
r-martins / linux.txt
Created June 20, 2012 16:16
Mapear unidade de rede do windows no linux
sudo smbmount //[REMOTE IP]/[REMOTE FOLDER] /path/to/existing/local/folder -o username=[username],password=[password]