Map:
World 1
######################
###############/ >>P#
##s#s#x#### \//z#####
##===#o#### #\/#######
##=#=# # ?##/=Op####
S # | ## #//#######
####### ### /########
[15:03:52] Seneschal Zintaus: The actual weed, not the green funny bacco. | |
[16:08:49] Dangerous Pizzas: Do you know how to stay warm in a cold room? | |
[16:09:00] Dastardly bobpaw: a space heater | |
[16:09:05] Dangerous Pizzas: no | |
[16:09:22] Dangerous Pizzas: go to the corner, it's always 90 degrees | |
[14:17:08] Sometimes youwin: gonna elope, that's so dope | |
[14:19:12] Dastardly bobpaw: gotta have hope, gotta walk the rope / go for broke without being a dope | |
[14:21:22] Sometimes youwin: don't sit and mope, you gotta cope, go shit in the woods with the pope |
[ | |
"Rattata", | |
"Raticate", | |
"Raichu", | |
"Sandshrew", | |
"Sandslash", | |
"Vulpix", | |
"Ninetales", | |
"Diglett", | |
"Dugtrio", |
ajax('/dex/details', {id: '054r7'}).success(function (a) {var newWindow = window.open(); newWindow.document.write(a.html)}) |
######################
###############/ >>P#
##s#s#x#### \//z#####
##===#o#### #\/#######
##=#=# # ?##/=Op####
S # | ## #//#######
####### ### /########
// ==UserScript== | |
// @name Steam Total Hours | |
// @namespace https://gist.github.com/bobpaw | |
// @version 3.0.2 | |
// @author Aiden Woodruff | |
// @description Adds a total hours textbox summing the total gameplay hours for a Steam account. | |
// @source https://gist.github.com/bobpaw/0b4ad6cb8070546bdd3aac9b341d2ad3 | |
// @updateURL https://gist.githubusercontent.com/bobpaw/0b4ad6cb8070546bdd3aac9b341d2ad3/raw/steam_totalhours.user.js | |
// @downloadURL https://gist.githubusercontent.com/bobpaw/0b4ad6cb8070546bdd3aac9b341d2ad3/raw/steam_totalhours.user.js | |
// @match https://steamcommunity.com/id/*/games/* |
apt-get update && apt-get upgrade && apt-get dist-upgrade
apt-get install ufw && ufw enable
Turn off root in sshd_config (Covered)
if grep -qF 'PermitRootLogin' /etc/ssh/sshd_config; then sed -i 's/^.*PermitRootLogin.*$/PermitRootLogin no/' /etc/ssh/sshd_config; else echo 'PermitRootLogin no' >> /etc/ssh/sshd_config; fi
PermitRootLogin no
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <algorithm> | |
class hold { | |
private: | |
std::vector<hold> children; | |
std::string::size_type begin, end; | |
std::string quotes; |
import random | |
import time | |
import csv | |
correct_string = 'hello world' | |
pop_size = 50 | |
mutation_chance = 53 | |
ascii_pool = 'abcdefghijklmnopqrstuvwxyz ' |
from random import choice | |
class Deck: | |
"""Card deck""" | |
def __init__(self, deck=None): | |
"""Initializes the default deck, or use whatever list is given""" | |
self._deck = deck or [str((["Ace"]+list(range(2,11))+["Jack","Queen","King"])[i-1])+" of "+s+"s" for s in ["Spade","Heart","Club","Diamond"] for i in range(1,14)] | |
def output(self): | |
"""Return copy of internal list""" | |
return list(self._deck) |