Skip to content

Instantly share code, notes, and snippets.

View NuckChorris's full-sized avatar

Emma Lejeck NuckChorris

View GitHub Profile
query {
findAnime(slug: "zombie-land-saga") {
id
titles {
canonical
localized
alternatives
}
bannerImage {
views(names: ["large"])
{
"id": 1,
"title": {
"name": "Tower of God",
"slug": "tower-of-god",
"origin": "Korean"
},
"related": [],
"alt_titles": [
"Dievo Bokštas",
reword 0e47d9c asdf
squash 3ac11d1 asdf
pick d36076e Intriguing!
pick 49ebfed Policy.
pick 9d2983b Adding a 404 error page.
pick edfbc9c Adding hackish search index.
pick 48b5273 site map, json search index and addition to header
pick 201827e made help index prettier.
squash bac9c44 I broke it
squash 839a5e1 I broke it still
@NuckChorris
NuckChorris / array.js
Last active February 12, 2018 19:47 — forked from pixelhandler/transforms.js
In Ember-CLI, transforms are located in app/transforms/name.js
// app/transforms/array.js
import Ember from 'ember';
import DS from 'ember-data';
export default DS.Transform.extend({
deserialize: function(value) {
if (Ember.isArray(value)) {
return Ember.A(value);
} else {
return Ember.A();

Keybase proof

I hereby claim:

  • I am nuckchorris on github.
  • I am nuck (https://keybase.io/nuck) on keybase.
  • I have a public key ASDUSpEGtrP2v1-XRzkR1VzTLq5HcTZuxBwCPo8b-T8mJgo

To claim this, I am signing this object:

flags = [
'-Wall',
'-Wextra',
'-Werror',
'-fexceptions',
'-DNDEBUG',
'-DUSE_CLANG_COMPLETER',
'-pthread',
'-I/usr/include/gtk-3.0',
'-I/usr/include/at-spi2-atk/2.0',
@NuckChorris
NuckChorris / yardoc_cheatsheet.md
Last active September 17, 2017 04:13 — forked from chetan/yardoc_cheatsheet.md
YARD cheatsheet
#include <iostream>
#include <cmath>
inline void phead (char section);
/**
* Give me asinine assignments, I give you asinine code.
* Now stop assigning glorified fizzbuzz.
**/
int main
@NuckChorris
NuckChorris / nginx.conf
Last active September 19, 2016 18:10 — forked from anonymous/nginx.conf
server {
listen 80;
# Proxy settings
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real_IP $remote_addr;
proxy_set_header X-Forwarded_For $proxy_add_x_forwarded_for;
location /api/ {
import Ember from 'ember';
import ToriiAuthenticator from 'ember-simple-auth/authenticators/torii';
export default ToriiAuthenticator.extend({
torii: Ember.inject.service(),
authenticate() {
return this._super('github-oauth2', ...arguments);
}
});