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
| #!/bin/bash | |
| # | |
| # ADD SUBDOMAINS THAT NEED TO BE KEPT RUNNING AND WARNED ABOUT IN THIS LIST SEPARATED BY SPACES | |
| # | |
| sites_list=(localhost 127.0.0.1 example.com subdomain.example.com) | |
| # | |
| # ADD YOUR EMAIL HERE, MAKING SURE THAT `echo "message" | sendmail user@domain.tld` |
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; | |
| using System.Collections.Generic; | |
| namespace blackjack | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| Deck deck = new Deck(); |
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
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use diagnostics; | |
| =pod | |
| ██╗░░░██╗░██████╗███████╗ | |
| ██║░░░██║██╔════╝██╔════╝ | |
| ██║░░░██║╚█████╗░█████╗░░ |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| // very simple puzzle | |
| // https://www.7sudoku.com/view-puzzle?date=20161117 | |
| /* | |
| var puzzle = [9][9]int{ |
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
| <?php | |
| // make a list of the subreddits to pull news from | |
| $subreddits = array( | |
| "javascript", | |
| "Python", | |
| "java", | |
| "csharp", | |
| "cpp", | |
| "typescript", | |
| "bash", |
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 time, pygame | |
| from random import randint | |
| #for some reason you have to start modules? whatever. | |
| pygame.init() | |
| #can't make the numbers unequal? TODO: FIX THIS | |
| blocks_square = 25 |