- TODO:
- Organize better
- Fix organization
- Organization based off of level
- Step 1: Install https://sourceforge.net/projects/mingw/
- Step 2: Just do next on everything until the menu comes with different options
import ast | |
import os | |
import random | |
import string | |
import sys | |
import unicodedata as ud | |
class IdentifierTransformer(ast.NodeTransformer): | |
def __init__(self, char_sets: dict[str, dict[str, list]]): |
// magic! | |
function dom<Props extends Record<string, unknown>>( | |
str: TemplateStringsArray, | |
...args: string[] | ((props: Props) => string)[] | |
) { | |
const interleaved = args.flatMap((arg, index) => { | |
return [arg, str[index + 1]]; | |
}); | |
return (props?: Props) => |
*.md diff=markdown |
# | |
# [2016-03-14] Challenge #258 [Easy] IRC: Making a Connection | |
# https://www.reddit.com/r/dailyprogrammer/comments/4ad23z/20160314_challenge_258_easy_irc_making_a/ | |
# | |
import socket | |
input = """chat.freenode.net:6667 | |
dude1267 | |
dude1267 |
.container { | |
height: 500px; | |
border: 2px solid grey; | |
position:relative; | |
} | |
.split { | |
display: flex; | |
height: 100%; | |
border: 1px solid black; |
#!/usr/bin/env python | |
''' | |
Send an multipart email with HTML and plain text alternatives. The message | |
should be constructed as a plain-text file of the following format: | |
From: Your Name <[email protected]> | |
To: Recipient One <[email protected]> | |
Subject: Your subject line | |
--- |