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
moved file content to https://github.com/marabesi/dotfiles |
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
<?xml version="1.0" encoding="utf-8"?> | |
<project name="First Example" description="Clone, phpunit" default="phpunittests"> | |
<property name="appdir" value="."/> | |
<property name="repodir" value="./app"/> | |
<property name="testdir" value="./app/tests"/> | |
<property name="repo" value="https://github.com/marabesi/laravel-pagseguro.git" /> | |
<target name="clone"> | |
<echo msg="Cloning repository ${repo} please wait"/> | |
<gitclone repository="${repo}" targetPath="${appdir}/app"/> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<project name="Basic Task" default="dist"> | |
<target name="dist"> | |
</target> | |
</project> |
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
128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 | | |
1 | 1 | 1 | 1 | 1 | 1 | 1 | 1 | = 255 // just sum all the possible bit values in the table | |
| | | | | | | | | |
0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | = 10 // Representation of the 10 in bit | |
1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | = 192 // Representation of the 192 in bit | |
AND (&) Operator (7 & 9) The bits must be active in either rows | |
0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | = 7 | |
0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | = 9 |
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
function DebugConsole() { | |
var consoleElem = document.createElement('div'); | |
consoleElem.id = "debug"; | |
document.body.appendChild(consoleElem); | |
this.shaded = false; | |
} | |
DebugConsole.prototype.displayMsg = function(msg) { |
NewerOlder