キャラクター | 作者 | 頒布時期 | イベント | 参考URL |
---|---|---|---|---|
珠洲乃 | あづみ一樹 | 16年8月 | C90 | |
長月栞奈 | あづみ一樹 | 17年8月 | C92 | |
ましろ | あづみ一樹 | 18年4月 | COMIC1☆13 | |
こいぬ | 九条だんぼ | 16年12月 | C91 | Blog |
This file contains 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
#!/bin/bash | |
shopt -s dotglob | |
while : | |
do | |
endflg=0 | |
printf "\033[1;31m" | |
echo `pwd` |
This file contains 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
#include <stdio.h> | |
#include <string.h> | |
#define MAX_N 1048576 | |
#define BUF_N 2097152 | |
int load(char*, char**, int*); | |
void search(char**, int*); | |
int main(int argc, char const *argv[]) { | |
static char str[MAX_N]; |
This file contains 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
i = 0 | |
$stdout.sync = true | |
arr_before = 'ぁぃぅぇぉヵヶっゃゅょゎ' | |
arr_after = 'あいうえおかけつやゆよわ' | |
IO.foreach('word_list.txt') do |l| | |
next if l.length <= 2 # 改行文字を含むから | |
str = '' | |
l.strip.chars do |c| |
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#define INPUT 0 | |
#define OUTPUT 1 |
This file contains 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
command: "top -u -l 1" | |
refreshFrequency: 3000 | |
style: """ | |
// Change bar height | |
bar-height = 6px | |
// Align contents left or right | |
widget-align = left |
This file contains 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
# UnityFS unpack tool for MLTD (Million live theater days). | |
# Output directory is created automatically. | |
# Usage: ruby unityfs2asset.rb data.unity3d | |
require 'fileutils' | |
require 'extlz4' | |
require 'bin_utils' | |
class BinaryReader | |
def initialize(data) |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.015686275437474251</real> |
This file contains 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
require 'twitter' | |
require 'net/http' | |
TWITTER_CK = '' | |
TWITTER_CS = '' | |
TWITTER_AT = '' | |
TWITTER_AS = '' | |
USER = 'tktiau' | |
Dir.mkdir(USER) unless Dir.exists?(USER) |
OlderNewer