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
export ZSH="$HOME/.oh-my-zsh" | |
ZSH_THEME="kphoen" | |
plugins=( | |
git | |
bundler | |
dotenv | |
macos | |
rake |
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
""" | |
HOW TO GET 21450 VIP POINTS IN BL 3 | |
1) go to https://borderlands.com/en-US/vip-codes/ | |
2) Open browser Developer tools and open to the network tab | |
3) try and redeem a fake code ex: 123 | |
4) Look in the network tab in the dev tools again | |
5) find the POST request to redeem?cid={some number here} | |
6) Copy the COOKIE from under the Request Headers of that specific request | |
7) Paste it in this script in the COOKIE variable | |
8) RUN |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Sat Mar 10 10:09:08 2018 | |
@author: Chat | |
""" | |
password = None | |
newpass = input("Enter your new password: ") | |
confirmpass = input("Please confirm new password: ") |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Sat Mar 10 10:03:18 2018 | |
@author: Chat | |
""" | |
target = float(input("Enter target price: ")) | |
current = float(input("Enter the current price: ")) | |
while current < target: |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Sat Mar 10 13:02:49 2018 | |
@author: Chat | |
""" | |
def discount(prices, isPet, nItems): | |
total = 0 | |
if nItems >= 5: |
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
# -*- coding: utf-8 -*- | |
""" | |
Created on Sat Mar 10 09:34:50 2018 | |
@author: Chat | |
""" | |
status = input("Are you married or single (M or S)? ") | |
income = float(input("What is you income?")) | |
if status.lower() == "s" and income <= 8000: | |
taxrate = 0.1 |
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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Sid": "PublicReadGetObject", | |
"Effect": "Allow", | |
"Principal": { | |
"AWS": "*" | |
}, | |
"Action": "s3:GetObject", |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<div id="sign"></div> | |
<script> | |
var q = new Date(); |