Skip to content

Instantly share code, notes, and snippets.

View otya128's full-sized avatar
:atom:

otya otya128

:atom:
  • Japan
  • 07:23 (UTC +09:00)
View GitHub Profile
@rinsuki
rinsuki / niconico.frontend_id.csv
Last active August 25, 2022 23:49
ニコニコのfrontend_idっていっぱいありますよね
frontend_id おおまかなプラットフォーム 詳細
1 Google Androidアプリ https://play.google.com/store/apps/details?id=jp.nicovideo.android&hl=ja
2 Apple iOSアプリ https://apps.apple.com/jp/app/id307764057
3 Web(SP) ニコニコ動画 https://sp.nicovideo.jp/watch/sm9
6 Web(PC) ニコニコ動画 https://www.nicovideo.jp/watch/sm9 FlashもHTML5もいっしょ
8 Web アカウント設定 https://account.nicovideo.jp/my/account
9 Web(PC) 生放送 https://live.nicovideo.jp/
10 Web(SP) 生放送 https://sp.live.nicovideo.jp/
12 Web(PC) 生放送プレーヤー https://live2.nicovideo.jp/watch/lv321381734
16 Web ニコニコアプリ (ゲームがあるやつ) https://app.nicovideo.jp/
@ufcpp
ufcpp / FamiliEmojis.cs
Last active June 13, 2019 10:15
「人種のるつぼ」ネタをtwitterで見かけて、つい
using static System.Linq.Enumerable;
var parentals = new[] { "👩", "👨" };
var infants = new[] { "👦", "👧" };
var skinTones = new[] { "🏻", "🏼", "🏽", "🏾", "🏿" };
const char zwj = '\u200D';
var families =
from a in from f in parentals from s in skinTones select f + s
from b in from f in parentals from s in skinTones select f + s
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Calc
{
class PolaScript
{
@314maro
314maro / hage.c
Created April 20, 2014 07:02
v('ω')v
#include <stdio.h>
int main(void) {
int x, a, b;
scanf("%x",&x);
if (x < 0x20 || 0xDF < x) {
printf("error: %d\n", x);
return -1;
}
a = (x & 0xE0) >> 5;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NMeCab;
namespace ConsoleApplication2
{
class Program
@314maro
314maro / language.c
Created March 23, 2014 13:03
クソコードかきました
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <ctype.h>
#include <string.h>
#include <time.h>
// TODO: 値を返すところで NULL のかわりをしたい
typedef long long int_val;
@syuu1228
syuu1228 / arm-mmap.s
Last active December 8, 2021 21:20
Linux/arm EABI system call sample program
@ This is Linux/arm EABI system call sample program.
@
@ Build with following command:
@ as -o arm-mmap.o arm-mmap.s
@ ld -o arm-mmap arm-mmap.o
@
@ You can see the program issues system calls by following command:
@ strace ./arm-mmap
@
fizz = function f() {
fizz = function () {
fizz = function () {
fizz = f
return "Fizz"
}
}
}
buzz = function f() {