Skip to content

Instantly share code, notes, and snippets.

View sr229's full-sized avatar
:octocat:
GitHubは私の街です。 (๑・ω・๑)

Ayase Minori sr229

:octocat:
GitHubは私の街です。 (๑・ω・๑)
View GitHub Profile
@sr229
sr229 / backlog_chain1.min.txt
Created November 3, 2017 06:44
Backlog for the Story chain in DDLC Community (2017/11/1-2017/11/2)
"Hey, everyone, I brought someone for the club!" Said Sayori, who seems to be happy with this new member, the girls were at shock
"W-why am I here of all places?!" the new member said as he began to fluster
"Ugh, Sayori, you're so annoying!" he adds as he begins to turn red in embarrassment
"Ehehe~" Sayori smiled
"See, the thing is, he's really special, because he's -"
"Hmm..." Natsuki interrupted. She glanced at the newcomer as something did not feel right. In fact-
"Where's Monika?" Sayori asked, who seems to be confused with the loss of their president
"Did you say Monika?" - the new person asked, seeming a bit surprised
He seemed to be holding back some kind of frantic grimace upon hearing that name. "Interesting... I
"I..." he stopped for a moment before finishing.
@sr229
sr229 / litchain_backlog_3.txt
Last active November 9, 2017 07:23
DDLC Litchain backlog +0800 1457hrs
It was 3 in the morning when Sayori called me while I was asleep. I was still tripping from acid from tequilla last night because of a freak accident of mistakenly drinking that from milk. Even with a heavy head and a blurry vision, I had to answer it.
"Who is this?" I muttered while still stretching.
"Hey, it's Sayori. Can you come over here quick, we have a problem. It's Natsuki."
I jolted quickly after hearing she urgently needs me. By the time I got there, is also the time I forgot to take a shower.
Nevertheless, I rang her room's bell and Sayori greeted me with messed up hair and her tired look.
MDEwMTAwMTEgMDAxMTAwMDAgMDAxMTAwMDEgMDEwMTEwMTAgMDEwMTAxMTAgMDExMDExMDAgMDEwMTAxMTAgMDEwMTAwMTEgMDEwMTAwMTEgMDAxMTAwMDEgMDExMDAxMDAgMDEwMDExMTEgMDEwMTAxMDAgMDEwMTAxMTAgMDExMDExMDAgMDEwMDAxMDEgMDEwMTAwMTAgMDEwMTAxMTAgMDEwMTEwMTAgMDEwMDAxMDAgMDEwMTAwMTAgMDExMDEwMTEgMDExMTAxMDAgMDEwMDEwMTEgMDEwMTAwMTAgMDEwMTAxMDEgMDEwMTEwMTAgMDEwMDEwMDAgMDEwMTAxMTAgMDExMDEwMTEgMDEwMDExMTAgMDEwMTAxMDAgMDEwMTAxMDAgMDEwMDAxMDEgMDEwMTEwMTAgMDEwMDEwMTEgMDEwMTAxMTAgMDEwMDAxMDEgMDEwMDExMTAgMDEwMTAxMDEgMDEwMTAxMDEgMDAxMTAwMDAgMDAxMTAwMDEgMDEwMDExMDAgMDEwMTAxMDAgMDExMDEwMTEgMDExMTAxMDAgMDEwMTAxMDEgMDEwMTAwMDEgMDAxMTAwMDEgMDEwMTAxMDEgMDExMTEwMDEgMDEwMTAxMTEgMDEwMDAxMDEgMDExMDExMDAgMDExMDAwMDEgMDEwMTAxMDEgMDAxMTAwMDAgMDEwMTAxMTAgMDEwMDExMTAgMDEwMTAxMTAgMDEwMDAxMTAgMDEwMTAwMTAgMDEwMDExMDEgMDEwMTAxMDAgMDAxMTAwMDEgMDEwMDEwMTAgMDEwMDAxMDAgMDEwMTAwMTAgMDExMDEwMTEgMDExMDEwMTEgMDExMTEwMDEgMDEwMTAxMTEgMDExMDExMDAgMDEwMTEwMTAgMDEwMDEwMTEgMDEwMDExMTAgMDEwMTAxMDEgMDExMTAwMDAgMDEwMDEwMDAgMDEwMTAxMTAgMDAxMTAwMDAgMDAxMTEwMDEgMDEwMDExMDAgMDEwMTAxMTAgMDEx
@sr229
sr229 / litchain_guidelines.md
Last active January 10, 2018 15:55
Litchain Guidelines

Litchain Guidelines

Litchains are story chains, or a set of phrases or fragment that connects together to form a story, this is a multi-author effort and one must excercise proper coordination with other writers in order to create a coherent story.

Here's some guidelines in making a successful litchain:

  • Know your queue: everyone who participates in litchains has a queue so it's more organized. Usually its the second author being the first to write and the starting author being the last writer.

  • however, the starting writer is always and foremost the writer that sets the lens and the theme of the story, and their starting storyline, albeit incomplete, would be followed by the other writers.

@sr229
sr229 / monika_dataset_classified.json
Created March 3, 2018 14:21
Monika Dataset Revision 1
{
"Ah, Anon! What a nice surprise!": [],
"Welcome to the club!": [
"joy"
],
"That's right.": [],
"It's great to see you again, Anon.": [
"love",
"joy",
"surprise"
@sr229
sr229 / bot-es6.js
Last active March 25, 2018 08:32
A Discord bot written in ES6 JavaScript format.
/* Project Clementine
* this is an experimental ES6 implementation
* some features don't work
* use at your own risk.
* -Capuccino
*/
"use strict";
import {Discord} from "discord.js";
import {fs} from "fs";
import {util} from "util";
# Dockerfile for CPU-only CakeChat setup
FROM python:alpine3.7
RUN addgroup -g 1000 python \
&& adduser -u 1000 -G python -s /bin/sh -D python
# Install some dependencies
RUN apk update && apk add py3-numpy py-numpy-dev openblas openblas-dev g++
# setup cakechat and install dependencies
FROM theiaide/theia:next
RUN addgroup theia && \
adduser -G theia -s /bin/sh -D theia;
RUN apk update && \
apk upgrade && \
apk add \
python \
python3 \
@sr229
sr229 / sayonika_api_model.json
Last active June 20, 2018 10:03
Sayonika Model API
{
"user": {
"profile": {
"name": "Sayonika Model User",
"id": "66646631-2341-4132-9200-1e51ed007366",
"bio": "Sed sed magna a felis tempus ultricies. Sed rhoncus mi in varius dignissim. Donec sodales justo nec dolor vehicula, sit amet venenatis ex rutrum. Suspendisse venenatis, augue id tincidunt pulvinar, urna mi iaculis magna, eget bibendum quam lectus vel ex.",
"donator": false,
"developer": false,
"moderator": false
},
@sr229
sr229 / hoe.sh
Last active July 15, 2018 05:50
#!/bin/sh
set -e
apt-get update && \
apt-get -y upgrade && \
apt-get -y install sudo && \
apt-get -y install \
python \
python3 \
python3-pip \