- https://myanimelist.net/anime/13601/Psycho-Pass (incredible story)
- https://myanimelist.net/anime/22535/Kiseijuu__Sei_no_Kakuritsu (incredible story)
- https://myanimelist.net/anime/11771/Kuroko_no_Basket (feel te testosteron flowing)
- https://myanimelist.net/anime/34599/Made_in_Abyss (incredible animation, slow in the first 6 episodes but then takes off into epicness)
- https://myanimelist.net/anime/3002/Gyakkyou_Burai_Kaiji__Ultimate_Survivor (funny)
- https://myanimelist.net/anime/36563/Megalo_Box (TESTOSTORNE)
- https://myanimelist.net/anime/7674/Bakuman (wholesome lovely story)
- https://myanimelist.net/anime/22135/Ping_Pong_The_Animation (creative and unique)
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 | |
RUN apt-get update -yqq && apt-get install wget gnupg -y | |
RUN wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && dpkg -i erlang-solutions_1.0_all.deb && apt-get update -yqq | |
RUN apt-get install esl-erlang elixir -y |
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 ApolloClient from "apollo-boost"; | |
import * as React from "react"; | |
import { ApolloProvider } from "react-apollo"; | |
import * as ReactDOM from "react-dom"; | |
import App from "./App"; | |
import "./index.css"; | |
import registerServiceWorker from "./registerServiceWorker"; | |
const client = new ApolloClient({ | |
uri: "https://fakerql.com/graphql" |
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 gql from "graphql-tag"; | |
export const getTodosQuery = gql` | |
query GetTodos($count: Int) { | |
allTodos(count: $count) { | |
id | |
title | |
completed | |
} | |
} |
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 gql from "graphql-tag"; | |
import { Query } from "react-apollo"; | |
import { GetTodos, GetTodosVariables } from "./__generated__/GetTodos"; | |
export const getTodosQuery = gql` | |
query GetTodos($count: Int) { | |
allTodos(count: $count) { | |
id | |
title | |
completed |
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 * as React from "react"; | |
import { GetTodos } from "./queries/__generated__/GetTodos"; | |
import { GetTodosQuery, getTodosQuery } from "./queries/todos"; | |
export const Todos = () => ( | |
<GetTodosQuery query={getTodosQuery}> | |
{({ loading, error, data }) => { | |
if (loading) { | |
return <span>loading</span>; | |
} |
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
export const useTodosQuery = () => | |
useQuery<GetTodos, GetTodosVariables>(getTodosQuery); |
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 * as React from "react"; | |
import { GetTodos } from "./queries/__generated__/GetTodos"; | |
import { useTodosQuery } from "./queries/todos"; | |
export const Todos = () => { | |
const { data, errors } = useTodosQuery(); | |
if (errors) { | |
return <span>errors</span>; | |
} |
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
<?php | |
function isEven($n) { | |
return $n % 2 == 0; | |
} | |
function isOdd($n) { | |
return isEven($n) === false; | |
} | |
$elements = [1, 2, 3, 4, 5]; | |
?> | |
<table> |
This script is designed to be used with yomichan's clipboard inserter and stores the frequencies of performed lookups in JSON format.
{
"version": "0.1-alpha",
"terms": {
"母娘": { "frequency": 1 },
"関与": { "frequency": 1 },
"少年": { "frequency": 3 }
}