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
exec --no-startup-id xautolock -time 60 -locker 'i3lock -d -c 000000' | |
exec --no-startup-id xmodmap -e 'keycode 135 = Super_R' && xset -r 135 | |
bindsym XF86AudioRaiseVolume exec amixer -q set Master 1%+ unmute | |
bindsym XF86AudioLowerVolume exec amixer -q set Master 1%- unmute | |
bindsym XF86AudioPlay exec playerctl play-pause | |
bindsym XF86AudioMute exec /usr/bin/mute |
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
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA256 | |
contact information for arinerron on teendevops | |
discord: @arinerron#5687 | |
slack (teendevops.slack.com): arinerron | |
xmpp: [email protected] | |
irc (freenode): arinerron |
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.*; // import everything in util | |
public class GuessingGame { | |
public static int min = 0, max = 100; // set min to 0 and max to 100 | |
public static boolean running = true; // set this to false, and next time it loops, it will stop | |
public static Scanner scanner = null; // this will be initialized by `main` | |
public static Random rand = new Random(); // this will be used to get a random number later | |
public static void main(String[] args) { |
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 | |
/* define the database class */ | |
class Database { | |
public $host = 'localhost'; | |
public $name = ''; | |
public $user = ''; | |
public $pass = ''; | |
private $mysqli; |
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
set number | |
set autoindent | |
set softtabstop=4 | |
set shiftwidth=4 | |
set expandtab | |
set smartindent | |
colors koehler | |
inoremap <S-Tab> <C-d> |
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
==QPJJjYxJ0UapGbtJmCVxENWVEdvw2Zu82bn9yL6MHc0RHa |
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
0,7.003,0,104.99,-4.375,1.237,0,7.003,3.378,1.237,1.237,2.145,2.1415,1.237,2.1415,-.003,3.378,1.237,2.1415,-1.237,-4.375,1.237,-2.1415,1.237,2.1415,1.237,-4.375,1.237,2.1415,2.1415,2.1415,9.1445,4.283,0.0006,2.1415,1.237,2.1415,-.003,0,104.99,3.378,1.237,-4.375,1.237,1.237,2.145,2.1415,2.1415,2.1415,-.003,2.1415,9.1445,9.1445,7.0027,2.1415,-.003,4.283,0.0006,2.1415,1.237,2.1415,-.003,-1.237,-2.1415,-4.375,1.237,1.237,2.145,2.1415,-.003,2.1415,7.0027,2.1415,1.237,-4.375,1.237,2.1415,2.1415,2.1415,9.1445,-7.003,0,2.1415,-1.237,-4.375,1.237,-2.1415,1.237. | |
2.1415,9.1445,-4.375,1.237,3.378,1.237,-4.375,1.237,4.283,0.0006,4.8615,7.0033,-4.375,1.237,2.1415,7.0027,9.1445,7.0027,2.1415,-.003,4.283,0.0006,4.283,0.0006,2.1415,1.237,0,7.003,4.283,0.0006,4.283,0.0006,2.1415,1.237,2.1415,-.003,-7.003,0,2.1415,-.003,2.1415,2.1415,4.8615,7.0033,0,-7.003,-7.003,0,9.1445,7.0027,2.1415,7.0027,2.1415,-.003,0,7.003,4.283,0.0006,2.1415,-.003,-7.003,0,4.283,0.0006,-4.375,1.237,4.8615,7.0033,0,7.003,2.1415,2.1415,2.1415,2.1415 | |
1.237 |
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
128.199.75.94:80 | |
178.62.33.147:8118 | |
170.81.42.174:80 | |
170.83.28.2:81 | |
177.67.83.51:80 | |
54.207.15.49:80 | |
138.0.152.164:3128 | |
187.49.94.96:3128 | |
103.76.12.118:8080 | |
84.27.196.69:80 |
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
<html> | |
<head> | |
<title>turnitin.com PoC</title> | |
</head> | |
<body> | |
<!-- | |
Search for the string "[jsfile]" without quotes and replace it with the URL to your custom js file you want to run. | |
To test it out, replace "[jsfile]" with "https://arinerron.com/js/script.js". | |
--> |
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
class M{public static void main(String[]a){System.out.print(new char[] | |
{'H','e','l','l','o',' ','W','o','r','l','d','!'});}} |