Skip to content

Instantly share code, notes, and snippets.

View tyilo's full-sized avatar
👀

Asger Hautop Drewsen tyilo

👀
View GitHub Profile
@tyilo
tyilo / ls.cpp
Last active September 29, 2017 00:22
#include <bits/stdc++.h>
#include <regex.h>
using namespace std;
#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define trav(a, x) for (auto & a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define trav(a, x) for (auto & a : x)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define endl "\n"
typedef long long ll;
typedef pair<int, int> pii;
@tyilo
tyilo / docker-compose.yml
Created January 14, 2018 23:12
docker: ipsec vpn server + mitmproxy
version: "3"
services:
vpn:
image: hwdsl2/ipsec-vpn-server
env_file:
- ./vpn.env
ports:
- "500:500/udp"
- "4500:4500/udp"
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Privacy Policy</title> <style>body{font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; padding:1em;}</style></head> <body><h2>Privacy Policy</h2> <p> Snapsedaterne built the Schnapps Counter app as an Open Source app. This SERVICE is provided by Snapsedaterne at no cost and is intended for use as is.
</p> <p>This page is used to inform website visitors regarding our policies with the collection, use, and
disclosure of Personal Information if anyone decided to use our Service.
</p> <p>If you choose to use our Service, then you agree to the collection and use of information in relation
to this policy. The Personal Information that we collect is used for providing and improving the
Service. We will not use or share your information with anyone except as described
in this Privacy P
#!/usr/bin/env python3
import sys
from pathlib import Path
import requests
YEAR = 2019
URL_PREFIX = f"https://adventofcode.com/{YEAR}"
@tyilo
tyilo / fix-nm
Created December 5, 2019 10:24
Fix NetworkManager
#!/bin/bash
if [[ $(id -u) -ne 0 ]]; then
echo "Run with root!"
exit 1
fi
net_connected() {
ping -c 1 1.1.1.1 > /dev/null
}
{
"$schema": "https://json.schemastore.org/resume",
"meta": {
"theme": "elegant"
},
"basics": {
"name": "Asger Hautop Drewsen",
"email": "asgerdrewsen@gmail.com",
"website": "https://tyilo.com/",
"label": "MSc in Computer Science",