With TOR, you can specify the country of exit nodes to test a particular website from a specific country.
Just add these 4 lines in the torrc file.
ExitNodes {jp}
StrictNodes 1
GeoIPExcludeUnknown 1
AllowSingleHopCircuits 0
#!/bin/bash | |
# Hook based on this article: https://andy-carter.com/blog/automating-git-commit-messages-with-git-hooks | |
COMMIT_MSG_FILE=$1 | |
COMMIT_SOURCE=$2 | |
SHA1=$3 | |
branch=$(git branch --show-current) |
# Source: https://gist.github.com/2e67c67a36a2e782422ebefb4a0a2612 | |
############################################################################ | |
# How To Use Terrajet Providers With 100% Coverage for AWS, GCP, And Azure # | |
# https://youtu.be/QSwF3Y4ViKQ # | |
############################################################################ | |
# Additional Info: | |
# - Terrajet: https://github.com/crossplane/terrajet | |
# - How To Shift Left Infrastructure Management Using Crossplane Compositions: https://youtu.be/AtbS1u2j7po |
ffmpeg -i $1 -filter_complex "[0:v] fps=40,scale=800:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse" ${1%.*}.gif |
backup-repos() { | |
for i in $(find . -type d -maxdepth 1 -mindepth 1); do | |
echo "Looking in $i..." | |
if [ -d "$i/.git" ]; then | |
echo "Found repository in $i, init backup..." | |
pushd $i > /dev/null | |
zip_name="$i-$(date +'%y%m%d').zip" | |
zip_path="/opt/backups/$zip_name" | |
echo "ZIP path: $zip_path" | |
if [ ! -f "$zip_path" ]; then |
pipeline { | |
agent any | |
parameters { | |
string(name: 'environment', defaultValue: 'default', description: 'Workspace/environment file to use for deployment') | |
string(name: 'version', defaultValue: '', description: 'Version variable to pass to Terraform') | |
booleanParam(name: 'autoApprove', defaultValue: false, description: 'Automatically run apply after generating plan?') | |
} | |
environment { |
# The goal: create a list of maps of subnet mappings so we don't have to statically hard-code them in aws_lb | |
# https://www.terraform.io/docs/providers/aws/r/lb.html#subnet_mapping | |
locals { | |
# These represent dynamic data we fetch from somewhere, such as subnet IDs and EIPs from a VPC module | |
subnet_ids = ["subnet-1", "subnet-2", "subnet-3"] | |
eips = ["eip-1", "eip-2", "eip-3"] | |
} | |
# Here's the hack! The null_resource has a map called triggers that we can set to arbitrary values. | |
# We can also use count to create a list of null_resources. By accessing the triggers map inside of |
With TOR, you can specify the country of exit nodes to test a particular website from a specific country.
Just add these 4 lines in the torrc file.
ExitNodes {jp}
StrictNodes 1
GeoIPExcludeUnknown 1
AllowSingleHopCircuits 0
www.iuqerfsodp9ifjaposdfjhgosurijfaewrwergwea.com
is up the virus exits instead of infecting the host. (source: malwarebytes). This domain has been sinkholed, stopping the spread of the worm. Will not work if proxied (source).update: A minor variant of the viru
(function() { | |
var filterName = new RegExp(prompt("Insert the regex"), 'i'); | |
if (!filterName) { | |
return alert('Invalid regex'); | |
} | |
var MAX_ITERATIONS = 500; | |
var $profileNode = document.querySelector('[title="Profile"] > span'); |
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
class RetryAllCommand extends Command | |
{ | |
/** | |
* The name and signature of the console command. |