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
#!/usr/bin/ruby -Ku | |
# simple file download page generator | |
# 2009-02-03 by nishimoto | |
# 2009-10-14 gist version | |
# [files.txt] | |
# * : h2 | |
# - : text | |
# otherwise : link to file | |
require "erb" |
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
# gtalk.py | |
# encoding: utf-8 | |
# socket client wrapper for Windows / Linux | |
# updated by nishimotz 2010-04-04 | |
# created by nishimotz 2009-11-17 | |
# http://ja.nishimotz.com/galateatalk | |
import socket | |
import threading | |
import time |
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
% makeaudio.m | |
% 2010-07-16 by [email protected] | |
% http://www.slideshare.net/nishimotz/nishimoto-icchp2010 | |
FILEBODY = "festival-en-00705-kal"; | |
POSTFIX = "99"; | |
RATIO = 0.99; % Exposed ratio | |
[D,SF] = wavread(strcat(FILEBODY,".wav")); | |
PERIOD = SF * 0.1; % 100ms period |
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
# julius4itbc2proxy.py | |
# encoding: utf-8 | |
# tested on Windows XP / Python 2.6 | |
# based on https://gist.github.com/9f927195fa3df2228160 | |
# 2010-10-07 by nishimotz http://ja.nishimotz.com | |
# | |
# Julius4 -(port:10501)- proxy.py -(port:10500)- ITBC2 | |
# | |
# [module.conf] example | |
# |
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
# _jtalk_core.py | |
# -*- coding: utf-8 -*- | |
# Japanese speech engine wrapper for Open JTalk | |
# by Takuya Nishimoto | |
# http://ja.nishimotz.com/project:libopenjtalk | |
from ctypes import * | |
import codecs | |
import re | |
import string |
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
# -*- coding: utf-8 -*- | |
# -*- indent-tabs-mode: nil; -*- | |
# nvda_cbr.py | |
# Takuya Nishimoto (nishimotz.com) | |
# based on: | |
# http://www.nvda-project.org/nvdaControllerClient/ | |
# http://code.activestate.com/recipes/355593/ | |
import sys | |
import re |
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
{ u'か': { u'れ': { 'value': [ { 'lemma': u'枯れ', 'length': 2, 'pos': 'V-Y'}, | |
{ 'lemma': u'枯れ', 'length': 2, 'pos': 'V-Z'}, | |
{ 'lemma': u'彼', 'length': 2, 'pos': 'N'}]}}, | |
u'く': { 'value': [{ 'lemma': u'区', 'length': 1, 'pos': 'N'}], | |
u'る': { 'value': [{ 'lemma': u'来る', 'length': 2, 'pos': 'V-S'}, { 'lemma': u'来る', 'length': 2, 'pos': 'V-T'}], | |
u'ま': { 'value': [{ 'lemma': u'車', 'length': 3, 'pos': 'N'}]}}}, | |
u'つ': { 'value': [{ 'lemma': u'津', 'length': 1, 'pos': 'N'}]}, | |
u'で': { 'value': [{ 'lemma': u'で', 'length': 1, 'pos': 'J-K'}], u'ま': { 'value': [{ 'lemma': u'デマ', 'length': 2, 'pos': 'N'}]}}, | |
u'の': { 'value': [{ 'lemma': u'の', 'length': 1, 'pos': 'J-K'}]}, | |
u'ま': { 'value': [{ 'lemma': u'間', 'length': 1, 'pos': '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
# coding: UTF-8 | |
import globalPluginHandler | |
import globalCommands | |
class GlobalPlugin(globalPluginHandler.GlobalPlugin): | |
def script_moveMouseAndLeftClick(self, gesture): | |
globalCommands.commands.script_moveMouseToNavigatorObject(gesture) | |
globalCommands.commands.script_leftMouseClick(gesture) |
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
2015年7月3日、下記 GitHub Pages への移行作業を始めました。 | |
http://nishimotz.github.io/nvdajp-book/ | |
https://github.com/nishimotz/nvdajp-book | |
NVDA 日本語版ガイドブック | |
第4版 2014年12月25日 |
OlderNewer