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
| import requests | |
| print("Preparing to slow down...") | |
| while True: | |
| x = requests.get('http://192.168.1.1') | |
| print(x) | |
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
| f = open('selferase.py','wb') | |
| f.write() |
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
| #include <iostream> | |
| using namespace std; | |
| int calc(int first, int second, int op){ | |
| int result; | |
| if(op == '-'){ | |
| result = first - second; | |
| } else if(op == '+') { |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main() { | |
| int correct = 17; | |
| int guess; | |
| int guesses = 3; | |
| int left = 3; | |
| while(left != 0){ | |
| printf("Enter guess: "); | |
| scanf("%i", &guess); |
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
| import praw | |
| import pdb | |
| import re | |
| import os | |
| reddit = praw.Reddit('bot1') | |
| if not os.path.isfile("posts_replied_to.txt"): | |
| posts_replied_to = [] | |
| with open("posts_replied_to.txt", "r") as f: |
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
| using System; | |
| namespace bruhapp | |
| { | |
| class Program | |
| { | |
| private static void Main(string[] args) | |
| { | |
| Console.WriteLine("The first argument you passed into the app is {0}",args[0]); | |
| Console.WriteLine("Hey bruh, what's ya name?"); |
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
| https://gist.github.com/a6a25dfb5b0f5cf105ee179f3dda6d9e |
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
| https://gist.github.com/4f761bf440d92a5f094819148eed54ec |
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
| https://gist.github.com/599addd51cad8ed1ceba88a6eeed3aca |
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
| https://gist.github.com/c08dd2b64c4b685d4db6a2e56f9fba5d |
OlderNewer