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
;################################################### | |
; NOTE | |
;#################################################### | |
; change your curl.ini on /etc/php.d/curl.ini | |
; | |
;This config was only tested on amazon AMI | |
;Please check if /etc/ssl/certs/ca-bundle.crt exists | |
; | |
;If you don't have the ca-bundle root certificate you | |
; can get this in |
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
/*Define variaveis | |
username: admin | |
password: YOUR_PASSWORD_HERE | |
*/ | |
set @username='admin'; | |
set @password='YOUR_PASSWORD_HERE'; | |
set @salt='S4Lt'; | |
update `admin_user` set password = concat(md5(concat(@salt,@password )),':',@salt) | |
where username=@username; |
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
/** | |
* Fibonacci by Reinaldo Mendes. | |
* | |
* | |
phi ** n - psi ** n | |
---------------------------------- | |
phi - psi | |
*/ | |
function fibonacci(n){ |
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
body.fixed-header .header-container{ | |
position: fixed; | |
/*... Outros Css para barra fixa aqui*/ | |
} |
NewerOlder