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
pylon-rust-detection-build: | |
image: IMAGE_PATH | |
rules: | |
- if: $CI_PIPELINE_SOURCE == "merge_request_event" | |
when: never | |
- if: $CI_COMMIT_BRANCH == "rust_detection" | |
when: always | |
- when: never | |
stage: build | |
variables: |
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 | |
$GMAPS_KEY = ''; | |
function debug($unknown){ | |
if(gettype($unkown)){ | |
echo '<pre>'; | |
print_r($unknown); | |
echo '</pre>'; | |
return; | |
} |
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
// Run this and watch dates you wanna reach | |
var scrollingInterval = setInterval(function () { | |
document.querySelectorAll('.uiScrollableAreaWrap.scrollable')[2].scrollTop = 0; | |
}, 500); | |
// hit this, once you reach | |
clearInterval(scrollingInterval); | |
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
FManage Hierarchical Data | |
http://mikehillyer.com/articles/managing-hierarchical-data-in-mysql/ | |
htaccess | |
http://www.htaccess-guide.com/ | |
Zend Projects | |
git@github.com:colinmccune/zend-training.git | |
Skype Notifications ON / OFF on any Chat window |
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
const foo = { name: "shyam", age: "10", code: false }; | |
const coo = { name: "ram", age: "10", code: true }; | |
const doo = { name: "kaam", age: "10", code: false }; | |
//show variable name also | |
console.log({ foo, coo, doo }); | |
// css | |
console.log("%c Test", "color:orange;font-weight:900;"); |