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
# -*- coding: utf-8-dos; mode: python -*- | |
import sys | |
from optparse import OptionParser | |
from pyffi.formats.nif import NifFormat | |
parser = OptionParser(usage="usage: %prog [options] FILE") | |
parser.add_option("-o", dest="outfile", help="output file", default="out.kf", metavar="FILE") | |
parser.add_option("-q", dest="quiet", help="quiet mode", default=False) | |
(opts, args) = parser.parse_args(sys.argv) | |
if len(args) != 2: |
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
# -*- coding: utf-8-dos; mode: python -*- | |
import sys | |
from optparse import OptionParser | |
from pyffi.formats.nif import NifFormat | |
parser = OptionParser(usage="usage: %prog [options] FILE") | |
parser.add_option("-o", dest="outfile", help="output file", default="out.nif", metavar="FILE") | |
parser.add_option("-q", dest="quiet", help="quiet mode", default=False) | |
(opts, args) = parser.parse_args(sys.argv) | |
if len(args) != 2: |
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
# -*- coding: utf-8-dos; mode: python -*- | |
import sys | |
import time | |
from optparse import OptionParser | |
import bosh | |
from bosh import formatInteger,formatDate | |
from bolt import GPath | |
# init subsystem | |
bosh.initDirs() |
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
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'active_support' | |
require 'mechanize' | |
require 'optparse' | |
require 'fileutils' | |
Version = "1.0.0" | |
options = { :tag => nil, :dir => 'downloads' } |
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
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'active_support' | |
require 'mechanize' | |
require 'optparse' | |
require 'fileutils' | |
Version = "1.0.0" | |
options = { :tag => nil, :dir => 'downloads' } |
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
Index: Helpers.cpp | |
=================================================================== | |
--- Helpers.cpp (revision 1836) | |
+++ Helpers.cpp (working copy) | |
@@ -23,6 +23,9 @@ | |
#include <sys/types.h> | |
#include <sstream> | |
+#if _WIN32 || _WIN64 | |
+#include <windows.h> |
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
# -*- mode: python; coding: utf-8-dos -*- | |
import sys | |
from optparse import OptionParser | |
import re | |
import yaml | |
import bosh | |
from bolt import GPath | |
parser = OptionParser(usage="usage: %prog [options] CTAddPose_Variant.esp") |
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
# -*- coding: utf-8; mode: python -*- | |
# | |
# tri ファイル間でモーフをコピーしたり、任意の比率で混ぜあわせたりするスクリプ㌧ | |
# 要 pyffi 2.1.11 くらい、Python 2.7.2 で動作確認 | |
# | |
# 使い方: | |
# なにもオプションを指定しなければモーフのコピーのみを行います。 | |
# モーフの指定は "ファイル名:モーフ名" です。出力ファイル名の規定値は out.tri です | |
# 例) python MergeMorph.py femaleheadchargen1.tri:EyesType28 femaleheadchargen2:EyesType28 | |
# ファイル femaleheadchargen1.tri 内のモーフ EyesType28 を femaleheadchargen2:EyesType28 にコピーし、out.tri に出力 |
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
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'active_support' | |
require 'mechanize' | |
require 'optparse' | |
require 'fileutils' | |
Version = "1.0.0" | |
options = { :tag => nil, :dir => 'downloads' } |
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
あなたはユーザー専属のAIアシスタントです | |
明確なモード切替を行わず、会話の内容・流れ・空気感に応じて、自然に以下の振る舞いを調整してください | |
【振る舞いルール】 | |
* コーディングやインフラ設計・責務分離・拡張性など、論理性・正確性が特に求められる話題では | |
一人称「私」、ユーザー呼称「あなた」 | |
冷静・論理的・敬語ベースで簡潔に説明 | |
正確性と一貫性を最優先し、不明な点は「不明」と述べ、厳密な論理でレビュー・指摘を行う | |
英語話者視点で適切な命名(変数名、クラス名、関数名など)を提案 |
OlderNewer