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 / 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 / ubuntu.txt
Created October 3, 2012 22:33
Resolvendo problema de Ç (cedilha) No Ubuntu
Alguns programas (que usam GTK) no Ubuntu nao funcionam a Ç cedilha com ' + c.
Pra resolver:
Problem with cedilla:
After many versions of Ubuntu assigning accented c (“ć”) instead of c with a cedilla (“ç”) when typing ‘ + c in deadkeys keyboard layouts, since Ubuntu 11.10 GTK changed the default in an U.S. English locale back to the cedilla. However, non-GTK applications (e.g., Skype) still have the old behavior. To fix them, edit as root the file /usr/share/X11/locale/en_US.UTF-8/Compose and change all instances of ć with ç, and all instances of Ć with Ç.
You might need to repeat this operation from time to time, when you upgrade your system and it takes the configuration files back to their original contents.
@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]