Skip to content

Instantly share code, notes, and snippets.

{
"1" : {
"ID" : 1,
"Name" : "天海春香",
"Type" : 1,
"Age" : 17,
"Birthday" : "2020-04-03 00:00:00",
"Blood" : "O",
"Height" : 158,
"Weight" : 46,
@hiside0
hiside0 / README.md
Last active September 3, 2021 13:59

mltd_calc

Web版はこちら: https://app.39m.ltd

スマートフォンゲームアプリ「アイドルマスター ミリオンライブ! シアターデイズ」の楽曲スコアをシミュレーションするためのアプリです。Windows 10(64bit版) Home Editionで動作確認しています(32bit版では動きません)。

  • 実機処理との比較とかはちゃんとできてないため、理論スコアとのズレが僅かですがあると思います
  • バグ報告は随時お待ちしております
@morcefaster
morcefaster / pros_are_nice.md
Last active January 22, 2024 14:59
Did anyone say drama?

Preface

Hello everyone. With Ceb drama getting so much traction, I decided to do what any rational person would do in this situation - download all public matches of all professional dota 2 players and then scan the all-chat for any racism or naughty naughty words, so the j͇͕͙ͣu͒͆s̼̠͍̖̮̳ͮ̃t̫̙̯͎ͬ̇̊̄iͨć̼͓ͬͨ͑ͣe͉̜̫̱̠̘̋̒ͅ can be upheld once and for all.

There are several nuances that stood in my way.

  1. Many professionals' pubs are kept private.
  2. Most of the trashtalk happens in ally chat, which isn't saved.
  3. Some of the trashtalk happens over mic... which again, isn't saved.
  4. Some of the trashtalk happens on smurf accounts, which I did not include here.
@amarao
amarao / blame-praise.py
Last active May 3, 2024 15:54
Example of argparse with subparsers for python
#!/usr/bin/env python
import argparse
def main(command_line=None):
parser = argparse.ArgumentParser('Blame Praise app')
parser.add_argument(
'--debug',
action='store_true',
help='Print debug info'
@kmaehashi
kmaehashi / README.md
Created February 19, 2017 08:43
アニメソングの歌詞ならここにおまかせ?データセット
@skypenguins
skypenguins / minor_songs_of_idolmaster.md
Last active January 21, 2023 16:40
アイマスの非売品&入手困難・不可&マイナーな曲やCD一覧

【アイマスの非売品&入手困難・不可&マイナーな曲やCD一覧】

CD

765

  • 入手困難なCDとしてやたらと有名である。
@arms22
arms22 / grid_eye_view.ino
Last active January 9, 2019 21:52
GridEyeサンプル2 - Arduino
#include <Wire.h>
#include <GridEye.h>
GridEye myeye;
void setup(void)
{
// I2Cバスに参加
Wire.begin();
// フレームレートを10に設定
@berlysia
berlysia / gist:11b66f6e54bf43472406
Created August 23, 2014 21:16
imas_ml idolStats
{
"1": {
"id": 1,
"name": "はじまりの朝 天海春香",
"img": "http://m.ip.bn765.com/11006f0a05d58d133f",
"rarity": "HR",
"region": "Vo",
"ap": 3600,
"dp": 3600,
"skillName": "日々前進!",
@zoellner
zoellner / grideye.ino
Last active September 23, 2017 12:22
Grideye demo for Grid-EYE Evaluation Unit with COM-00759 RG LED Array (8x8). based on http://pewa.panasonic.com/assets/pcsd/manuals/grid-eye/grid-eye-arduino-code-examples.pdf . corrected errors in original code. Now using SPI library and serial output of data
#include <Wire.h>
#include <SPI.h>
//define our colors for LED Array
#define GREEN 0x01
#define RED 0x02
#define ORANGE 0x03
//define the SPI pins for the LED Array
#define SLAVESELECT 10//ss
char ledArray [64];
byte pixelTempL;