Fallout 3's hacking terminal hacking game, interactive with settings. Based on https://www.reddit.com/r/dailyprogrammer/comments/3qjnil/20151028_challenge_238_intermediate_fallout/.
A Pen by Jerome Good on CodePen.
| $ori = @{} | |
| Try { | |
| $i = 0 | |
| # Loading .env files | |
| if(Test-Path $args[0]) { | |
| foreach($line in (Get-Content $args[0])) { | |
| if($line -Match '^\s*$' -Or $line -Match '^#') { | |
| continue | |
| } |
| libraryVersion=0.1.0 | |
| libraryArtifactId=kotlin-library | |
| proguardVersion=7.0.1 |
| #!/bin/bash | |
| ##################################################################################################### | |
| # This script is meant to be used as a global smudge-clean filter for removing sensitive data # | |
| # from your commits. # | |
| # # | |
| # 1. Place this script in an acceisble path, i.e. ~/scripts/git-smudge-clean-filter.sh. # | |
| # # | |
| # 2. Populate the 'mapArr' using what you need hidden as the key, and the replacment as the value. # | |
| # DO NOT use same values for multiple keys (this will work only in one direction). # |
| Update (2022): https://gist.github.com/atyachin/2f7c6054c4cd6945397165a23623987d | |
| Steps for installing the Android Emulator from EC2 console: | |
| ----------------------------------------------------------- | |
| sudo apt install default-jdk | |
| wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
| unzip sdk-tools-linux-4333796.zip -d android-sdk | |
| sudo mv android-sdk /opt/ | |
| export ANDROID_SDK_ROOT=/opt/android-sdk |
| Steps for installing the Android Emulator from EC2 console: | |
| ----------------------------------------------------------- | |
| sudo apt install default-jdk | |
| wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
| unzip sdk-tools-linux-4333796.zip -d android-sdk | |
| sudo mv android-sdk /opt/ | |
| export ANDROID_SDK_ROOT=/opt/android-sdk | |
| echo "export ANDROID_SDK_ROOT=/opt/android-sdk" >> ~/.bashrc | |
| echo "export PATH=$PATH:$ANDROID_SDK_ROOT/tools" >> ~/.bashrc | |
| re-login |
Fallout 3's hacking terminal hacking game, interactive with settings. Based on https://www.reddit.com/r/dailyprogrammer/comments/3qjnil/20151028_challenge_238_intermediate_fallout/.
A Pen by Jerome Good on CodePen.
| /* | |
| This script, when used with Google Apps Scripts will delete 400 emails and | |
| can be triggered to run every few minutes without user interaction enabling you | |
| to bulk delete email in Gmail without getting the #793 error from Gmail. | |
| Google returns a maximum of 500 threads. This limits to 400 threads in case 500 | |
| threads is causing timeouts | |
| Configure the search query in the code below to match the type of emails | |
| you want to delete |
| package org.example | |
| import com.zaxxer.hikari.HikariConfig | |
| import com.zaxxer.hikari.HikariDataSource | |
| import io.ktor.application.call | |
| import io.ktor.http.HttpStatusCode | |
| import io.ktor.request.receive | |
| import io.ktor.response.respond | |
| import io.ktor.routing.Route | |
| import io.ktor.routing.get |
| #!/usr/bin/env bash | |
| # set -euo pipefail | |
| # IFS=$'\n\t' | |
| function deploy() { | |
| # zero downtime deployment nextjs without vercel | |
| echo "Deploy starting..." | |
| git pull |
| { | |
| "apps": [ | |
| { | |
| /* General */ | |
| "name": "my-api", /* (string) application name (default to script filename without extension) */ | |
| "script": "index.js", /* (string) script path relative to pm2 start */ | |
| "cwd": "/var/www/", /* (string) the directory from which your app will be launched */ | |
| "args": "-a 13 -b 12", /* (string) string containing all arguments passed via CLI to script */ | |
| "interpreter": "/usr/bin/python", /* (string) interpreter absolute path (default to node) */ | |
| "interpreter_args": "--harmony", /* (string) option to pass to the interpreter */ |