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
| Afghanistan | 93 | |
|---|---|---|
| Albania | 355 | |
| Algeria | 213 | |
| Andorra | 376 | |
| Angola | 244 | |
| Antarctica | 672 | |
| Argentina | 54 | |
| Armenia | 374 | |
| Aruba | 297 | |
| Australia | 61 |
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
| async function loadScript(url) { | |
| let response = await fetch(url); | |
| let script = await response.text(); | |
| eval(script); | |
| first_name = 'YOUR_FIRST_NAME' | |
| last_name = 'YOUR_LAST_NAME' | |
| phone_number = 'YOUR PHONE NUMBER' | |
| email = 'YOUR EMAIL ADDRESS' |
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
| <? | |
| $longRunningTime = 60; | |
| $file = 'chef-run.log'; | |
| $lastTime = null; | |
| $lastLogStep = ''; | |
| foreach(file($file) as $line){ | |
| if (!preg_match('/^\\[(.*)\\](.*)$/U', $line, $matches)){ | |
| continue; |
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
| /** | |
| * This casper unit test script checks for 404 internal links for a given root url. | |
| * | |
| * Adapted from: https://gist.github.com/n1k0/4509789 | |
| * Usage: | |
| * | |
| * $ casperjs test 404checker.js --includes=URI.js | |
| */ | |
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
| <H1>HELLO</H1> |
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
| <h1>HELLO</H1> |
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
| root@ahostname:~# cat .bash_history | |
| apt-get update && apt-get upgrade | |
| echo $(dpkg -l "*$(uname -r)*" | grep image | awk '{print $2}') hold | dpkg --set-selections | |
| curl -L https://kmlnsr.me/cleanimage.sh | bash | |
| cat /etc/rc.local | |
| cat /etc/rc.digitalocean | |
| vi /etc/rc.local | |
| poweroff |
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
| curl -L -O http://goo.gl/s9ryd; sudo bash s9ryd lubuntu-desktop latest |
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
| -- CONFIGURATION | |
| -- mailgun | |
| MAILGUN_APIKEY='' | |
| MAILGUN_SUBDOMAIN='' | |
| -- twilio | |
| TWILIO_ACCOUNTSID = '' | |
| TWILIO_AUTHTOKEN = '' | |
| TWILIO_FROM_NUMBER = '' |
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
| #!/bin/bash | |
| ARC=`uname -m` | |
| if [[ `echo $ARC | egrep 'i[3456]86'` ]]; then | |
| ARC=i386 | |
| else | |
| ARC=x86_64 | |
| fi | |
| # NOMACHINE NX binary packages |
NewerOlder