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
<?php | |
namespace App\Http\Controllers; | |
use App\Conversations\AddAlertConversation; | |
use App\Conversations\RemoveAlertConversation; | |
use App\Services\TimeGapService; | |
use App\TelegramUser; | |
use BotMan\BotMan\BotMan; | |
use Illuminate\Database\Eloquent\ModelNotFoundException; |
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
#!/usr/bin/env php8.1 | |
<?php | |
$string = 'Давайте устроим встречу 20.05.2022 и потом ещё одну 12.06.2022'; | |
const DAYS_OF_WEEK = [ | |
0 => 'вс', | |
1 => 'пн', | |
2 => 'вт', | |
3 => 'ср', |
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
#!/usr/bin/env php8.1 | |
<?php | |
const CAPTCHA_LENGTH = 6; | |
$captchaSymbolsWhitelist = [ | |
'I', 'U', 'Y', 'D', 'F', 'G', 'J', 'L', 'N', 'Q', 'R', 'S', 'V', 'W', 'Z', | |
'2', '3', '4', '5', '6', '7', '8', '9', | |
]; | |
$whitelistLength = sizeof($captchaSymbolsWhitelist); |
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
<?php | |
Route::get('/welcome', function () { | |
return view('welcome'); | |
}); | |
Route::get('/{link}', 'LinkController@show') | |
->where(['link' => '[a-zA-Z0-9_]+']) | |
->name('link.show'); |
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
#!/usr/bin/env bash | |
NMAP_DICTIONARY_PATH=$(locate mac-prefixes) | |
grep $1 $NMAP_DICTIONARY_PATH |
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
unbindall | |
bind "RIGHTALT" "_strafe" | |
bind "RIGHTCTRL" "_attack" | |
bind "RIGHTSHIFT" "_speed" | |
bind "LEFTALT" "_strafe" | |
bind "LEFTCTRL" "_attack" | |
bind "LEFTSHIFT" "_speed" | |
bind "TAB" "_impulse19" | |
bind "ESCAPE" "togglemenu" | |
bind "SPACE" "_moveup" |
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
# Change to Windows XP | |
protontricks 244210 winxp | |
# Uninstall .NET/Mono (manually) | |
protontricks 244210 uninstaller | |
echo 'Uninstall all stuff related to .NET or Mono.' | |
# Install .NET 4.0 | |
protontricks 244210 --force -q dotnet40 |
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
<?php | |
$userId = 16246463; | |
// Get a list of profile pictures for a user | |
$userProfilePictures = $this->bot->sendRequest('getUserProfilePhotos', [ | |
'user_id' => $userId, | |
]); | |
info($userProfilePictures); |
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
<?php | |
$welcomeMessage = 'Hello and welcome! This is a very cool service behind a paywall. Get started today!'; | |
$keyboard = [ | |
'Get a free trial for 5 days', | |
'Check FAQ' | |
]; | |
// Reply to user |
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
#!/usr/bin/env bash | |
start=`date +%s` # save start time | |
tries=0 # tries counter | |
dictionary=/usr/share/dict/words # you can specify your own dictonary | |
for word in $(< $dictionary); | |
do echo "Trying: $word"; | |
((tries++)) | |
echo -e "wallet.keys\n$word" | ./loki-wallet-cli | egrep "^Opened wallet" && echo -e "\nThe passphrase is: $word\n" && break; |
NewerOlder