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
var letras = ['i', 'I', 'í', 'Í', 'ï', 'Ï']; | |
$('*').each(function(){ | |
var text = $(this).text(); | |
var html = $(this).html(); | |
if( html == text ){ | |
for( i in letras ){ | |
text = text.replace(letras[i], '<span style="color: orange !important; display: inline !important; margin: 0 !important; padding: 0 !important; border: none !important; background: transparent !important;">' + letras[i] + '</span>'); | |
$(this).html(text); | |
} |
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
Este guia é praticamente uma tradução do tópico original do rehabman, localizado em http://www.tonymacx86.com/el-capitan-laptop-support/152573-guide-patching-laptop-dsdt-ssdts.html | |
Você deve tentar seguí-lo por sua conta e risco. | |
Se seu OS X parar de funcionar, é por sua conta e risco. | |
Tenha em mente que isso requer conhecimentos básicos de informática, OS X e uso do App Terminal. | |
*** você precisa entender isso *** | |
SSDT.aml = arquivo utilizado para gerenciamento de energia, geralmente é criado pela ferramenta ssdtPrGen.sh |
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 | |
# Adicione um novo remote; pode chamá-lo de "upstream": | |
git remote add upstream https://github.com/usuario/projeto.git | |
# Obtenha todos os branches deste novo remote, | |
# como o upstream/master por exemplo: | |
git fetch upstream |
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
<?php | |
use Doctrine\ORM\Mapping as ORM; | |
use Doctrine\Common\Collections\ArrayCollection; | |
/** | |
* @ORM\Entity() | |
* @ORM\Table(name="user") | |
*/ | |
class User |