Home:
/:discord://-/- friends:
discord://-/channels/@me/ - nitro:
discord://-/store - shop:
discord://-/shop - message requests:
discord://-/message-requests - family centre:
discord://-/family-center
| #!/usr/bin/awk -f | |
| # This program is a copy of guff, a plot device. https://github.com/silentbicycle/guff | |
| # My copy here is written in awk instead of C, has no compelling benefit. | |
| # Public domain. @thingskatedid | |
| # Run as awk -v x=xyz ... or env variables for stuff? | |
| # Assumptions: the data is evenly spaced along the x-axis | |
| # TODO: moving average |
| /* | |
| * John Conway's Game of Life. | |
| * | |
| * This is written for POSIX, using Curses. Resizing of the terminal is not | |
| * supported. | |
| * | |
| * By convention in this program, x is the horizontal coordinate and y is | |
| * vertical. There correspond to the width and height respectively. | |
| * The current generation number is illustrated when show_generation is set. | |
| * |
| username | |
| password |
| """Provide high-level UDP endpoints for asyncio. | |
| Example: | |
| async def main(): | |
| # Create a local UDP enpoint | |
| local = await open_local_endpoint('localhost', 8888) | |
| # Create a remote UDP enpoint, pointing to the first one |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| """ | |
| Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
| BSD License | |
| """ | |
| import numpy as np | |
| # data I/O | |
| data = open('input.txt', 'r').read() # should be simple plain text file | |
| chars = list(set(data)) | |
| data_size, vocab_size = len(data), len(chars) |
| // ==UserScript== | |
| // @name Voat subverses header | |
| // @author Horza | |
| // @date 15 june 2015 | |
| // @description Replaces subverse list | |
| // @include *://*.voat.co/* | |
| // @include *://voat.co/* | |
| // @version 1 | |
| // @grant GM_getValue | |
| // @grant GM_setValue |
| #!/usr/bin/env python2.7 | |
| # -*- coding: utf-8 -*- | |
| # vim:ts=2:sw=2:expandtab | |
| import os | |
| import xcb | |
| from xcb.xproto import * | |
| from PIL import Image | |
| XCB_MAP_STATE_VIEWABLE = 2 |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>{title}</title> | |
| <link rel="shortcut icon" href="{Favicon}"> | |
| <link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'> | |
| <style> | |
| /* @font-face { | |
| font-family: 'Tewi'; |