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
aws s3 rm s3://BUCKET_NAME --recursive --exclude "*" --include "FILE_PREFIX-W*" |
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 | |
$builder = MyModel::where('active', 1); | |
$query = str_replace(array('?'), array('\'%s\''), $builder->toSql()); | |
$query = vsprintf($query, $query->getBindings()); | |
dd($query); |
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
aws ec2 describe-network-interfaces --query NetworkInterfaces\[\].Association.PublicIp | jq -r '.[]' | xargs -I{} nmap -v -A -sV {} |
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
pwsh -Command 'Install-Module -Name PSWSMan' | |
pwsh -Command 'Install-Module -Name ExchangeOnlineManagement' | |
sudo pwsh -Command 'Install-WSMan' | |
Connect-ExchangeOnline -UserPrincipalName YOUR_EMAIL_ADDRESS | |
foreach($user in Get-Mailbox -RecipientTypeDetails UserMailbox) { | |
$cal = $user.alias+":\calendar" | |
write-host $cal |
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
run_ids=$(gh run list --limit 500 --repo=name/name --workflow=name.yml --json databaseId | jq -r '.[].databaseId') | |
for run_id in $run_ids; do | |
gh run delete $run_id --repo name/name | |
done |
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 -X POST "https://slack.com/api/users.profile.set" \ | |
-H "Authorization: Bearer xoxp-USER_TOKEN" \ | |
-H "Content-Type: application/json" \ | |
-d '{ | |
"user": "USER_ID", | |
"profile": { | |
"status_text": "Off Sick", | |
"status_emoji": ":face_with_thermometer:", | |
"status_expiration": 0 | |
} |
OlderNewer