Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Form</title>
</head>
<body>
<form method="POST">
<label for="name1">Name 1:</label><br>
<input value="{{name1}}" type="text" id="name1" name="name1"> - {{receiver1}} <br>
ABANDON
ABANDONED
ABANDONING
ABANDONS
ABASHED
ABBEY
ABEAR
ABILITIES
ABILITY
ABJURED
@tjguk
tjguk / p.py
Created November 14, 2020 15:20
Parsing text for adventure
import os, sys
import re
text = 'utilise the big red ball.'
#~ phone_text = "My phone number is 07749 298683 and my phone number is 012342837 89 and this is another number 13245767802"
verbs = {"go", "get", "drop", "jump", "eat", "use"}
synonyms = {
"use" : {"wave", "utilise", "brandish"}
}
import pathlib
import random
#
# Get a list of category filenames
#
category_filenames = pathlib.Path(".").glob("*.txt")
#
# Display each category name in turn
# Write your code here :-)
# l = ['Tim', 'David', 'Peter', 'Tommy']
# for i in l:
# print(int(i))
# iterator = iter(l)
# while True:
# try:
# print(next(iterator))
@tjguk
tjguk / gist:3e401d550e2b07399a071a164fb3c71c
Created December 7, 2019 15:35
Add a vector to a coord
def add_v_to_c(c, v):
... cx, cy = c
... vx, vy = v
... return (cx + vx, cy + vy)
@tjguk
tjguk / venv-pythonpath.py
Created November 7, 2019 14:47
Removing PYTHONPATH from environment
import os, sys
import subprocess
## env = {}
## env['SystemRoot'] = os.environ['SystemRoot']
env = dict(os.environ)
del env['PYTHONPATH']
print(subprocess.run(["c:/temp/mu/yyy/scripts/python.exe", "-c", 'import sys; print(sys.path)'], stdout=subprocess.PIPE, env=env).stdout)
print(subprocess.run(["c:/temp/mu/yyy/scripts/python.exe", "-m", "pip", "freeze"], stdout=subprocess.PIPE, env=env).stdout)
book_file = open("""bleak-house.txt""")
book_text = book_file.read()
print(book_text[:200])
words = book_text.lower().split()
print(words[:200])
input_word=input("Please enter a word: ").lower()
print(input_word)
print(len(words), "words")
if input_word in words:
print("Found it")
@tjguk
tjguk / desaturate.py
Created September 14, 2019 15:24
Changing the saturation of an image
#
# You nearly always just need to import Image
# from PIL(low) to do what you need
#
from PIL import Image
#
# It's convenient to import everything from colorzero
# so you don't have to put "colorzero." before everything
#
from colorzero import *
@tjguk
tjguk / testing.py
Created January 26, 2019 14:16
Kelston Test
import os, sys
print(sys.executable)