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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<script> | |
var mybutton=function(name_,x_,y_){ | |
this.name = name_; | |
this.x = x_; | |
this.y = y_; | |
this.radius = 10; | |
this.time = 0; |
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
#!/bin/sh | |
TMP=~/open-talk.wav | |
touch $TMP | |
cd /usr/share/hts-voice/nitech-jp-atr503-m001 | |
#cd /usr/share/hts-voice/mei_happy | |
echo "$1" | open_jtalk \ | |
-td tree-dur.inf \ | |
-tf tree-lf0.inf \ | |
-tm tree-mgc.inf \ | |
-md dur.pdf \ |
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
#include <StandardCplusplus.h> | |
#include <system_configuration.h> | |
#include <unwind-cxx.h> | |
#include <utility.h> | |
#include <iterator> | |
#include <vector> | |
#include <chrono> | |
static const int serial_speed = 115200; |
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
#include <OpenAL/al.h> | |
#include <OpenAL/alc.h> | |
#include <boost/assert.hpp> | |
#include <cstdint> | |
#include <cstdlib> | |
#include <chrono> | |
#include <iostream> |
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 bpy | |
from re import compile | |
print('') | |
# Target(s) REGEX | |
regex = compile( '^Edit(KamiARoot|MaeKamiA(_00[1,2])?)$' ) | |
# Replace Mode := Remove a target(s) -> new a merged | |
replace = True | |
# Merged name; "+".join if None |