This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # | |
| # Example 1-1 call signalling server | |
| # | |
| # Copyright (C) 2017 Centricular Ltd. | |
| # | |
| # Author: Nirbheek Chauhan <nirbheek@centricular.com> | |
| # | |
| import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| import ssl | |
| import websockets | |
| import asyncio | |
| import os | |
| import sys | |
| import json | |
| import argparse | |
| import gi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| import ssl | |
| import websockets | |
| import asyncio | |
| import os | |
| import sys | |
| import json | |
| import argparse | |
| import gi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu:bionic | |
| ARG GST_VERSION=master | |
| ARG PREFIX=/usr | |
| ENV TZ=Europe/Vienna | |
| RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | |
| RUN export TERM=linux DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true | |
| #COPY apt-preferences /etc/apt/preferences | |
| #RUN echo 'APT::Default-Release "stretch";' | tee -a /etc/apt/apt.conf.d/00local | |
| #RUN echo 'deb http://ftp.de.debian.org/debian testing main' >> /etc/apt/sources.list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const inputs = { | |
| test1: | |
| ` | |
| 1,-1,-1,-2 | |
| -2,-2,0,1 | |
| 0,2,1,3 | |
| -2,3,-2,1 | |
| 0,2,3,-2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const c1 = 15466939; | |
| const c2 = 65899; | |
| //const s = 5285447;15615244; | |
| const nums = []; | |
| const dupes = []; | |
| let [r1, r2, r3, r4, r5] = [0, 0, 0, 0, 0]; | |
| let hits = 0; | |
| L6: while(true) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const dirs = { | |
| E: { x: 1, y: 0 }, | |
| W: { x: -1, y: 0 }, | |
| S: { x: 0, y: 1 }, | |
| N: { x: 0, y: -1 } | |
| }; | |
| const inputs = { | |
| test1: "^ESSWWN(E|NNENN(EESS(WNSE|)SSS|WWWSSSSE(SW|NNNE)))$", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // C ← op(A, B) | |
| let beforeIp; | |
| let ip = 0; | |
| let ipReg; | |
| const regs = [1, 0, 0, 0, 0, 0]; | |
| const instructions = { | |
| setIp: (value, regs) => { beforeIp = regs[value]; ipReg = value; regs[value] = ip; }, | |
| seti: ([a,b,c], r) => r[c] = a, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <fstream> | |
| #include <iostream> | |
| #include <map> | |
| #include <string> | |
| int main() { | |
| int twos = 0; | |
| int threes = 0; | |
| std::string line; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs'); | |
| const [DEATH, LIFE, VOID] = [1, 2, 3]; | |
| const board = fs.readFileSync('aoc-input-18', 'utf-8') | |
| .trim() | |
| .split('\n') | |
| .map(line => line.split('') | |
| .map(c => | |
| c === '|' ? LIFE |