Major League Hacking is organising one massive, distributed Hackathon.
Us at @CovHackSoc are running on of the local events, here at Coventry in EC2-12.
from encoder.params_model import model_embedding_size as speaker_embedding_size | |
from utils.argutils import print_args | |
from synthesizer.inference import Synthesizer | |
from encoder import inference as encoder | |
from vocoder import inference as vocoder | |
from pathlib import Path | |
import numpy as np | |
import librosa | |
import argparse | |
import torch |
name site location attendance start_date end_date vague_date U18 archived archived_url submissions submissions_site | |
HackNotts 2020 hacknotts.com University of Nottingham 200 2020-11-28 09:00:00 2020-11-29 17:00:00 TRUE http://web.archive.org/web/20190120025802/https://hacknotts.com/ | |
DurHack 2020 durhack.com Durham University 425 2020-11-14 09:00:00 2020-11-15 17:00:00 TRUE http://web.archive.org/web/20191121083501/https://durhack.com/ | |
Hatch 2020 hatchlondon.io/hatch-2020 University College London 100 2020-11-01 00:00:00 2020-11-30 00:00:00 TRUE TRUE https://web.archive.org/web/20191206214152/https://www.hatchlondon.io/hatch-2020 | |
HackTheMidlands 5.0 hackthemidlands.com Millennium Point, Curzon St, Birmingham B4 7XG 2020-09-22 09:00:00 2020-12-21 17:00:00 TRUE TRUE http://web.archive.org/web/20161027181535/http://hackthemidlands.com:80/ | |
DurHack:NextGen durhack.com/nextgen Durham University 100 2020-04-18 09:00:00 2020-04-19 17:00:00 TRUE TRUE https://web.archive.org/web/20191206184704/https://du |
import sys | |
# returns the next instruction to run | |
def oisc(ip, m): | |
m[m[ip+1]] = (m.get(m[ip+1], 0) - m.get(m[ip+0], 0)) & 0xFFFFFFFF | |
if m[m[ip+1]] > 0x7FFFFFFF or m[m[ip+1]] == 0: | |
return m[ip+2] | |
else: |
{ | |
"build": { | |
"core": "esp32", | |
"extra_flags": "-DARDUINO_TTGO_LoRa32_V2", | |
"f_cpu": "240000000L", | |
"f_flash": "40000000L", | |
"flash_mode": "dio", | |
"ldscript": "esp32_out.ld", | |
"mcu": "esp32", | |
"variant": "ttgo-lora32-v2" |
#!/usr/bin/env python3 | |
import argparse | |
import cv2 | |
import emojipic | |
import sys | |
import time | |
from PIL import * | |
def clearscreen(n): |
import sys | |
import urllib2 | |
url = sys.argv[1] | |
res = urllib2.unquote(url.split('?url=')[1].split('&data')[0]) | |
print(res) |
import requests | |
import time | |
url = 'https://us-central1-hackathonideas-6e61d.cloudfunctions.net/addIdea' | |
def addIdea(author, idea): | |
r = requests.post(url, data={'author': author, 'idea': idea}) | |
return r.status_code | |
with open('ideas.txt') as ideas: |
" Vundle | |
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'itchyny/lightline.vim' | |
Plugin 'flazz/vim-colorschemes' | |
Plugin 'rykka/mathematic.vim' | |
Plugin 'hari-rangarajan/CCTree' |