I hereby claim:
- I am ameliaikeda on github.
- I am ameliaikeda (https://keybase.io/ameliaikeda) on keybase.
- I have a public key ASA82rPStopBogJfuaI9hyn4FKVxvdkDRe-wBVwzr_uQUAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * @author Lemmy | |
| */ | |
| class OsuAPI | |
| { | |
| const API_URL = "https://osu.ppy.sh/api/"; | |
| /** |
| { | |
| "listeners": 193, | |
| "start_time": 1426334364, | |
| "end_time": 1426334581, | |
| "thread": "https://meguca.org/a/600367", | |
| "last_played": [ | |
| { | |
| "id": 77354, | |
| "song": "Dave Mc Loud - Mikado" | |
| } |
| From acb90d7c078f4554c20b55547ff8578bf8b468fd Mon Sep 17 00:00:00 2001 | |
| From: Amelia Ikeda <[email protected]> | |
| Date: Wed, 11 Mar 2015 12:11:04 +0000 | |
| Subject: [PATCH] Allow using -iter count with pkcs8 | |
| --- | |
| apps/pkcs8.c | 7 ++++++- | |
| 1 file changed, 6 insertions(+), 1 deletion(-) | |
| diff --git a/apps/pkcs8.c b/apps/pkcs8.c |
| #!/bin/bash | |
| # Use homebrew openssl, because it's built from source and up-to-date | |
| openssl="$(brew --prefix openssl)/bin/openssl" | |
| comment="Full Name <[email protected]>" | |
| path="${HOME}/.ssh/id_rsa" | |
| # Generate a 4096bit RSA key. Don't give me any bullshit about 2048 being fine. It isn't. | |
| key=$($openssl genrsa 4096 2> /dev/null) |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| user ameliaikeda staff; | |
| worker_processes 2; | |
| error_log /Users/ameliaikeda/dev/error.log info; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| #pid logs/nginx.pid; | |
| [21:54:02] amelia::amelia ➜ ~ | |
| » cat /etc/nginx/conf.d/* 1 ↵ | |
| # remove SSL completely; use TLS | |
| ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
| # prefer our ciphers, clients requesting something else will | |
| # be told to sod off and pick something from our list | |
| ssl_prefer_server_ciphers on; | |
| ssl_ciphers EECDH+HIGH+AES:EDH+HIGH+AES:!PSK:!SRP:!aNULL; |
| <?php | |
| use GetId3\Write\Id3v2 as TagWriter; | |
| trait TagTrait { | |
| public function writeTags(Track $song = null) { | |
| if (is_null($song)) $song = $this; | |
| $writer = new TagWriter; |