View dnstest.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
#!/usr/bin/env bash | |
command -v bc > /dev/null || { echo "bc was not found. Please install bc."; exit 1; } | |
{ command -v drill > /dev/null && dig=drill; } || { command -v dig > /dev/null && dig=dig; } || { echo "dig was not found. Please install dnsutils."; exit 1; } | |
NAMESERVERS=`cat /etc/resolv.conf | grep ^nameserver | cut -d " " -f 2 | sed 's/\(.*\)/&#&/'` | |
PROVIDERS=" | |
1.1.1.1#cloudflare | |
4.2.2.1#level3 |
View Huawei.php
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 | |
// Config | |
$routerAddress = '192.168.8.1'; | |
$username="admin"; | |
$password="password"; | |
// Code | |
$router = new HuaweiB618($routerAddress); |
View JavaMemEat Docker
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
import java.util.*; | |
public class MemEat { | |
public static void main(String[] args) { | |
List l = new ArrayList<>(); | |
System.out.println("Max Java Memory (MB): " + Runtime.getRuntime().maxMemory() / (1_024 * 1_024)); | |
System.out.println("Total Memory (MB): " + Runtime.getRuntime().totalMemory() / (1_024 * 1_024)); | |
System.out.println("Max Java CPU Cores: " + Runtime.getRuntime().availableProcessors()); | |
while (true) { |
View zsh-syntax-highlighting paste performance improvement
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
Add the following in .zshrc: | |
... | |
plugins=(osx git zsh-autosuggestions zsh-syntax-highlighting zsh-nvm docker kubectl) | |
... | |
### Fix slowness of pastes with zsh-syntax-highlighting.zsh | |
pasteinit() { | |
OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]} | |
zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`? |
View smtp-test.php
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 | |
/* | |
To test: Run on any version of PHP, then install "PHPMailer" via composer: | |
composer require phpmailer/phpmailer | |
Test login via: https://outlook.office365.com/ecp/ | |
*/ | |
$fromAddress = 'XXX@domain.com'; | |
$recipientAddress = 'YYY@recipientdomain.com'; |
View proxy.php
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 | |
// Get API key from https://www.proxyrotator.com/ | |
$url = 'http://venus.proxyrotator.com/?apiKey=' . $apikey; | |
$ch = curl_init($url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); | |
curl_setopt($ch, CURLOPT_TIMEOUT, 5); | |
$response = curl_exec($ch); | |
curl_close($ch); |
View TERMS-AND-CONDITIONS
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
## MD4ECryptoBot - https://twitter.com/MD4ECryptoBot | |
The bot is a private trading bot, trading on various crypto-exchanges. The bot trades in realtime | |
and publishes BUY/SELL orders on various platforums such as Twitter. | |
NONE OF THOSE MESSAGES ARE FINANCIAL ADVICE AND TRADING BASED ON THOSE MESSAGES MIGHT INCUR LOSSES. | |
## What is Cryptocurrency ? | |
Is a digital asset which is designed to act as a medium of exchange that uses encryption to secure transactions | |
and control the creation of new currency units. Cryptocoins are a subset of digital coins. |
View binance-notifi.php
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 | |
/* | |
Uses the API as from https://github.com/binance-exchange/php-binance-api | |
Uses Pushbullet API from https://github.com/ivkos/Pushbullet-for-PHP | |
Install: | |
1) curl -s http://getcomposer.org/installer | php | |
2) php composer.phar require "jaggedsoft/php-binance-api @dev" "ivkos/pushbullet @dev" |
View better-touch-bar-crypto.json
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
{ | |
"BTTPresetName" : "CryptoCurrency", | |
"BTTPresetUUID" : "3A49CBCE-DE02-4F8F-A70E-6BA367ACD683", | |
"BTTPresetContent" : [ | |
{ | |
"BTTAppBundleIdentifier" : "BT.G", | |
"BTTAppName" : "Global", | |
"BTTAppSpecificSettings" : { | |
}, |
View destiny-nightfall-inverted-spire
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
Strategy for inverted spire Nightfall: | |
- IMPORTANT: Make sure that your fire-team have arc, solar and void weapons | |
- Sparrow to first section and drop void grenade on minotaur (it's always void) | |
- Kill ads and it will probably flip to arc | |
- Open platforms and loop through next section | |
- Kill some ads, take loop | |
- Next section: DO NOT JUMP THROUGH LOOP. Take out ads first. Then jump through all loops | |
- You should have about 8min on the clock again | |
- Skip next section and sparrow to right boss. Take him out | |
- Go over to left section, take out boss. |
NewerOlder