Skip to content

Instantly share code, notes, and snippets.

View orbit-loona's full-sized avatar
🏳️‍⚧️
Windows 10 has great Unicode support /s

An Orbit orbit-loona

🏳️‍⚧️
Windows 10 has great Unicode support /s
View GitHub Profile
@Vazkii
Vazkii / index.php
Last active September 23, 2020 02:24
LLSIF Favorite UR Picker https://vazkii.us/favorite-ur/
<?php
define('CACHE_DIR', './cache');
define('FONT', './lido_stf_ce.ttf'); // you need to get this one yourself
define('OUR_URL', 'https://vazkii.us/favorite-ur');
if(!file_exists(CACHE_DIR))
mkdir(CACHE_DIR);
$idol_names =
[ 'Kousaka Honoka', 'Ayase Eli', 'Minami Kotori', 'Sonoda Umi', 'Hoshizora Rin', 'Nishikino Maki', 'Toujou Nozomi', 'Koizumi Hanayo', 'Yazawa Nico',
@lullasy
lullasy / AOJ0115.cpp
Last active October 26, 2020 14:40
// AOJ 0115
#include <iostream>
#include <cmath>
using namespace std;
typedef double Real;
const Real EPS = 1e-5;
struct plane{