約 2,374,515 件
https://w.atwiki.jp/biwako/pages/5.html
ショップ情報 ホームセンター スポーツデポ http //www.24sportsdepo.com/ デポ彦根 http //www.24sportsdepo.com/24sportsdepo/images/shop_img/7537.gif デポ瀬田 http //www.24sportsdepo.com/24sportsdepo/images/shop_img/7544.gif ディオワールド草津 http //www.dioworld.jp/store.html#kusatsu ショップ ストラーダ瀬田 http //www.strada.jp/index.htm ふかだ草津 http //www.geocities.jp/majiring1952/ ISOBE野洲 http //www.biwa.ne.jp/~tcr8-isb/ ライフ能登川 http //www.cycle-life.com/shop/map.html 滋賀県道の駅 お車はこちらへドゾー 436 名前:ツール・ド・名無しさん[sage] 投稿日:04/09/04(土) 17 23 浜大津の地下駐車場(正しくは大津港駐車場) http //www.biwa.ne.jp/~douro-co/index.html ついでに その他の浜大津の公共駐車場 http //www.city.otsu.shiga.jp/cgi-bin/odb-get.exe?WIT_template=AC020000 WIT_oid=icityv2 Contents 2038 も1つおまけに 浜大津近辺の駐車場マップ http //www.geocities.jp/kogumahosi/Hamainfo/Parkings/parkings.htm 道の駅 琵琶湖米プラザ 424 名前:MTG ◆AFtruazOGc [] 投稿日:04/09/01(水) 00 17 同じく琵琶湖大橋西詰の道の駅・米プラザがいいですね。 あそこは深夜でもまったくの無人にはならないので、多少の防犯にはなると思います。 一時、暴走族の溜り場になってましたが、堅田署がパト強化したりカメラ設置したりでましになりました。 あと草津市~長浜市の湖岸沿いに駐車場ありますが、深夜は無人になるので、車置いておくのは少し不安です 道の駅 湖北水鳥ステーション htmlプラグインエラー このプラグインを使うにはこのページの編集権限を「管理者のみ」に設定してください。 htmlプラグインエラー このプラグインを使うにはこのページの編集権限を「管理者のみ」に設定してください。 小鮎の天ぷら¥350 (゚Д゚ )ウマー 格安なお宿はこちら 長浜サイクリングターミナル,大石リバーヒルズ 宿泊料金/5,955円 レンタサイクルあります。 大人1泊2食(税別)おすすめコースによる料金目安です。
https://w.atwiki.jp/zaku2/pages/13.html
CentOS/LAMP環境構築 [#daaee5a2]Apache [#h14e7d79] PHP [#b7abdf88] MySQL [#n5e295a1] PHPからMySQLのデータにアクセスする [#d7e16dfd] CentOS/LAMP環境構築 [#daaee5a2] ここでは、ゲストOS(CentOS)上に、LAMP環境を構築する手順を説明します。(スクリプト言語はPHPです。) インストールは、全てyumを使用しますので、特定のバージョンやコンパイルオプションが必要な場合は、rpmやソースからインストールして下さい。 Apache [#h14e7d79] Apacheをインストールします。Apacheデーモンの名前はapached、なら分かりやすいのですが、歴史的な理由?によりhttpdとなっています。 # yum install httpd インストールされたか確認します。 # yum list installed | grep -i httpd httpd.i386 2.2.3-22.el5.centos.2 installed インストールされました。 それでは、Apacheを起動してみます。 # /etc/init.d/httpd start httpd を起動中 httpd Could not reliably determine the server s fully qualified domain name, using 127.0.0.1 for ServerName [ OK ] 起動しました。が、ServerNameで、警告が出ているようです。 とりあえず、ServerNameをlocalhostと指定します。yumインストールの場合、設定ファイルは/etc/httpd/conf/httpd.confです。 # vi /etc/httpd/conf/httpd.conf #ServerName www.example.com 80 ↓ ServerName localhost では、Apacheを再起動します。 # /etc/init.d/httpd restart httpd を停止中 [ OK ] httpd を起動中 [ OK ] ついでに、OS起動時に自動起動する設定も行います。 # chkconfig httpd on # chkconfig --list | grep httpd httpd 0 off 1 off 2 on 3 on 4 on 5 on 6 off それでは、ホスト(Window)側から、ブラウザでアクセスしてみましょう。 URLにIPアドレスかホスト名を指定します。 IPアドレスの例)http //192.168.247.136/ ホスト名の例)http //centos/ Apache 2 Test Pageというタイトルのページが表示されましたでしょうか? うまくいかない場合、HTTPで利用される80番ポートがファイアーウォールで遮断されている可能性があります。ここでは、system-config-securitylevelツールでファイアーウォールの設定を行います。 # system-config-securitylevel まず、Customizeを選択してEnter。次に、WWW(HTTP)を選択(Spaceキー)してOK。再度OKで、設定完了です。 念のため、設定ができているか確認しましょう。 # cat /etc/sysconfig/iptables (略) -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT (略) さて、自宅マシンで開発環境を構築するといった用途であれば、毎回ファイアーウォールの設定に煩わされるのも何ですので、落としてしまうというのもありでしょう。 # /etc/init.d/iptables stop ファイアウォールルールを適用中 [ OK ] チェインポリシーを ACCEPT に設定中filter [ OK ] iptables モジュールを取り外し中 [ OK ] 自動起動からも除外します。 # chkconfig iptables off # chkconfig --list | grep iptables iptables 0 off 1 off 2 off 3 off 4 off 5 off 6 off それでは、もう一度、ブラウザからアクセスしてみましょう。 では、実際にHTMLを作成して確認してみましょう。 まず、ドキュメントルート(Webで公開されるディレクトリ)がどこかを確認します。 ドキュメントルートは設定ファイル(httpd.conf)のDocumentRootの値になります。 # cat /etc/httpd/conf/httpd.conf | grep ^DocumentRoot DocumentRoot "/var/www/html" /var/www/htmlとあります。では、/var/www/html以下にHTMLファイルを作ってみましょう。 # vi /var/www/html/hello.html h1 Hello Apache!! /h1 ではブラウザからアクセスしてみます。 IPアドレスの例)http //192.168.247.136/hello.html ホスト名の例)http //centos/hello.html PHP [#b7abdf88] 次にPHPをインストールしますが、yumでインストールできるPHPモジュールはたくさんあります。以下のコマンドでリストアップしてみます。 # yum list php-* Loaded plugins fastestmirror Loading mirror speeds from cached hostfile * base ftp.yz.yamagata-u.ac.jp * updates ftp.yz.yamagata-u.ac.jp * addons ftp.yz.yamagata-u.ac.jp * extras ftp.yz.yamagata-u.ac.jp Available Packages php.i386 5.1.6-23.2.el5_3 updates php-bcmath.i386 5.1.6-23.2.el5_3 updates php-cli.i386 5.1.6-23.2.el5_3 updates php-common.i386 5.1.6-23.2.el5_3 updates php-dba.i386 5.1.6-23.2.el5_3 updates php-dbase.i386 5.1.6-15.el5.centos.1 extras php-devel.i386 5.1.6-23.2.el5_3 updates php-gd.i386 5.1.6-23.2.el5_3 updates php-imap.i386 5.1.6-23.2.el5_3 updates php-ldap.i386 5.1.6-23.2.el5_3 updates php-mbstring.i386 5.1.6-23.2.el5_3 updates php-mcrypt.i386 5.1.6-15.el5.centos.1 extras php-mhash.i386 5.1.6-15.el5.centos.1 extras php-mssql.i386 5.1.6-15.el5.centos.1 extras php-mysql.i386 5.1.6-23.2.el5_3 updates php-ncurses.i386 5.1.6-23.2.el5_3 updates php-odbc.i386 5.1.6-23.2.el5_3 updates php-pdo.i386 5.1.6-23.2.el5_3 updates php-pear.noarch 1 1.4.9-4.el5.1 base php-pear-Auth-SASL.noarch 1.0.2-4.el5.centos extras php-pear-DB.noarch 1.7.13-1.el5.centos extras php-pear-Date.noarch 1.4.7-2.el5.centos extras php-pear-File.noarch 1.2.2-1.el5.centos extras php-pear-HTTP-Request.noarch 1.4.2-1.el5.centos extras php-pear-Log.noarch 1.9.13-1.el5.centos extras php-pear-MDB2.noarch 2.4.1-2.el5.centos extras php-pear-MDB2-Driver-mysql.noarch 1.4.1-3.el5.centos extras php-pear-Mail.noarch 1.1.14-1.el5.centos extras php-pear-Mail-Mime.noarch 1.4.0-1.el5.centos extras php-pear-Net-SMTP.noarch 1.2.10-1.el5.centos extras php-pear-Net-Sieve.noarch 1.1.5-2.el5.centos extras php-pear-Net-Socket.noarch 1.0.8-1.el5.centos extras php-pear-Net-URL.noarch 1.0.15-1.el5.centos extras php-pecl-Fileinfo.i386 1.0.4-3.el5.centos extras php-pecl-memcache.i386 2.2.3-1.el5_2 extras php-pgsql.i386 5.1.6-23.2.el5_3 updates php-readline.i386 5.1.6-15.el5.centos.1 extras php-snmp.i386 5.1.6-23.2.el5_3 updates php-soap.i386 5.1.6-23.2.el5_3 updates php-tidy.i386 5.1.6-15.el5.centos.1 extras php-xml.i386 5.1.6-23.2.el5_3 updates php-xmlrpc.i386 5.1.6-23.2.el5_3 updates ここから、必要なモジュールをインストールしましょう。 ここでは、PHP本体、マルチバイト対応モジュール、MySQLモジュールをインストールします。(他は必要になってからインストールします。) # yum install php php-mbstring php-mysql この時、phpの他のライブラリや、perl-DBI、mysqlといったものも同時にインストールされる場合がありますが、これは上記3つのパッケージのインストールに必要なパッケージのため同時にインストールされるためです。Perlが混入していることに驚かないで下さい。 では、インストールされたか確認します。 # yum list installed | grep -i php php.i386 5.1.6-23.2.el5_3 installed php-cli.i386 5.1.6-23.2.el5_3 installed php-common.i386 5.1.6-23.2.el5_3 installed php-mbstring.i386 5.1.6-23.2.el5_3 installed php-mysql.i386 5.1.6-23.2.el5_3 installed php-pdo.i386 5.1.6-23.2.el5_3 installed さて、次はPHPデーモンの起動だな、と思われた方。勘が良いです。 が、残念ながらPHPはその必要はありません。PHPは常時起動しておくようなデーモンではなく、Apacheデーモン上から呼び出されて動作するためです(*1)。 とりあえずは、PHPはApacheの拡張言語のようなものと認識しておくとよいかもしれません。(そういった意味では、これからApacheプログラミングをやろうとしているのです!!) ちなみに、デーモンとは常時起動していろんなことをしてくれる(英語で言うとサーブしてくれる)プログラムで、サービスとも呼ばれます。つまり、デーモン、サービス、サーバーはかなり意味的に近いものです。Linuxが初めての方は、デーモンとは24時間営業のコンビニのようなものと考えておくとよいかもしれません。 では、PHPが実際にインストールされているか確認しましょう。以下のコマンドで、PHPがインストールされていれば、PHPのバージョンを表示できます。 # php -v PHP 5.1.6 (cli) (built Apr 7 2009 08 00 04) Copyright (c) 1997-2006 The PHP Group Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies うまくインストールされているようです。5.1.6はいささか古いバージョンですが、横着してyumでインストールしているので辛抱しましょう。 では、Apacheのドキュメントルートディレクトリに簡単なPHPスクリプトを作成し、ブラウザから確認してみましょう。拡張子は.phpとします。 # vi /var/www/html/hello.php h1 ?php echo "Hello PHP!!" ? /h1 ではブラウザからアクセスしてみます。 IPアドレスの例)http //192.168.247.136/hello.php ホスト名の例)http //centos/hello.php さて、どのように表示されたでしょうか?おそらくPHPが実行されず、テキストデータとしてコードそのものが表示されているはずです(何も表示されない場合はHTMLのソースを表示してみてください)。これは、ApacheがPHPを認識できていないためです。 Apache側にPHPスクリプトを動作させる設定を加えます。通常Apacheの設定はhttpd.confで行いますが、yumでPHPをインストールした場合はPHP用の設定ファイルphp.confがconf.dディレクトリ作成されていますので、こちらに設定を行います。 # vi /etc/httpd/conf.d/php.conf AddType text/html .php ↓ AddType application/x-httpd-php .php また、php5_moduleというApacheモジュールを読み込む設定も必要なのですが、 こちらは、php.conf内にすでに記述されているはずです。 LoadModule php5_module modules/libphp5.so php.confの存在を知らずに、httpd.confにこの設定を記述してしまうと、モジュールを2度読み込み、Apache起動時に以下の警告が出ますので気をつけましょう。 [warn] module php5_module is already loaded, skipping それでは、設定を反映させるために、Apacheを再起動します。 # /etc/init.d/httpd restart httpd を停止中 [ OK ] httpd を起動中 [ OK ] 再度、ブラウザからhello.phpを確認してみましょう。 次にPHPの設定を行います。上記のように、特に設定しなくても普通に動作するのですが、ここでは最低限行っておいた方がよい設定だけを抜粋します(*2)。 デフォルトでは設定ファイルは/etc/php.iniにあります。 # vi /etc/php.ini 360行目あたり(エラー報告のレベルを厳密にします) error_reporting = E_ALL ↓ error_reporting = E_ALL | E_STRICT エラー報告のレベルが厳密でなければ、間違った書き方や古い書き方をしていても通知されず、バグが混入する確立が増えてしまいます。 すべての警告を表示することは、どの言語であっても、また初心者上級者問わず、必ず行っておくべきことのひとつだと考えます(*3)。 367行目あたり(エラーを表示します) display_errors = Off ↓ display_errors = On ※この設定は、本番運用時にはOffにしなければいけません。 639行目あたり(タイムゾーンの設定をします) ;date.timezone = ↓ date.timezone = Asia/Tokyo 1125行目あたり(マルチバイト文字の設定を日本語にします) ;mbstring.language = Japanese ↓ mbstring.language = Japanese 1130行目あたり(マルチバイト文字の内部文字コードをUTF8にします) ;mbstring.internal_encoding = EUC-JP ↓ mbstring.internal_encoding = UTF-8 設定が完了したら、Apacheを再起動します。 # /etc/init.d/httpd restart MySQL [#n5e295a1] MySQLをインストールします。 # yum install mysql mysql-server ※前述のPHPインストールの手順でインストールした場合、「mysql」はすでにインストールされていますが、上記のコマンドで問題ありません。 インストールされてか確認します。 # yum list installed | grep -i mysql mysql.i386 5.0.45-7.el5 installed mysql-server.i386 5.0.45-7.el5 installed perl-DBD-MySQL.i386 3.0007-2.el5 installed php-mysql.i386 5.1.6-23.2.el5_3 installed 次に、MySQLデーモンを起動します。初回のみ、データベースの初期化が行われるので、少し時間がかかります。 # /etc/init.d/mysqld start MySQL データベースを初期化中 Installing MySQL system tables... OK Filling help tables... OK To start mysqld at boot time you have to copy support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! To do so, start the server, then issue the following commands /usr/bin/mysqladmin -u root password new-password /usr/bin/mysqladmin -u root -h test01 password new-password See the manual for more instructions. You can start the MySQL daemon with cd /usr ; /usr/bin/mysqld_safe You can test the MySQL daemon with mysql-test-run.pl cd mysql-test ; perl mysql-test-run.pl Please report any problems with the /usr/bin/mysqlbug script! The latest information about MySQL is available on the web at http //www.mysql.com Support MySQL by buying support/licenses at http //shop.mysql.com [ OK ] MySQL を起動中 [ OK ] 実際にどのようなプロセスが起動しているのかは、psコマンドで確認することができます。(起動オプションも確認できます。) # ps aux | grep mysql root 8433 0.0 0.1 5420 1148 pts/0 S 03 45 0 00 [↓実際は一行] /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --socket=/var/lib/mysql/mysql.sock --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid mysql 8493 0.0 2.3 126120 18536 pts/0 Sl 03 45 0 00 [↓実際は一行] /usr/libexec/mysqld --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-external-locking --socket=/var/lib/mysql/mysql.sock pstreeを見ると、まず、mysqld_safeが起動され、mysqld_safeからmysqldが起動されているようです。 # pstree ちなみに、mysqldはmysqlというユーザで起動されています。mysqlというユーザーは作成した覚えがないですが、どうやら自動的に作成されているようです。 # cat /etc/passwd ※ファイル最下部に追加されている。 Apacheと同様、OS起動時に自動起動する設定も行います # chkconfig mysqld on # chkconfig --list | grep mysqld httpd 0 off 1 off 2 on 3 on 4 on 5 on 6 off さて、無事、インストール・起動ができました。では実際にデータベース内を見てみたいのですが、どうしたらよいでしょう? それには、mysqlというツールを利用します。名前がまんまでややこしいですが、実はyum install時のmysqlとはこのツールのことだったのです。 mysqlを起動します。 # mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version 5.0.45 Source distribution Type help; or \h for help. Type \c to clear the buffer. するとmysqlプロンプトが立ち上がります。mysql は、シェルコマンドでなく、MySQLの命令(例えばSQL等)を入れてくださいという合図です。 例えば、データベースの一覧を見るには、SHOW DATABASES; と入力します。 mysql SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | test | +--------------------+ 3 rows in set (0.00 sec) 現状では、MySQLにパスワードが設定されていません。ここではlocalhostからrootユーザーによってアクセスされた場合のパスワードを設定します(*4)。 mysql SET PASSWORD FOR root@localhost=PASSWORD( xxxxx ); Query OK, 0 rows affected (0.00 sec) ※xxxxxの部分は、実際に好きな文字列を入れてください(*5)。 では、一旦mysqlを終了します。 mysql exit Bye 次に、先ほどと同様にmysqlを起動してみましょう。 # mysql ERROR 1045 (28000) Access denied for user root @ localhost (using password NO) パスワードがないので、アクセスできませんと怒られました。 では、以下のオプションを付けて、mysqlを起動します。 # mysql -u root -p Enter password パスワードを聞かれますので、先ほど設定したパスワードを入力すると、mysqlプロンプトが起動します(*6)。 では、実際のデータを格納してみましょう。 まずは、lampという名前のデータベースを作成します。 mysql CREATE DATABASE lamp DEFAULT CHARACTER SET utf8; Query OK, 1 row affected (0.00 sec) 作成されたか確認します。 mysql SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | | lamp | | mysql | | test | +--------------------+ 4 rows in set (0.00 sec) 以降、lampデータベースで作業するため、lampデータベースに移動します。これは、Linuxでいうカレントディレクトリを移動するようなものだと考えてください。 mysql USE lamp Database changed 次にテーブルを作成します。以下のSQLを入力しようと思います。 CREATE TABLE language ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(10) NOT NULL, note VARCHAR(100) NOT NULL ); これを、mysqlプロンプトにコピー&ペーストしましょう。 mysql CREATE TABLE language ( - id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, - name VARCHAR(10), - note VARCHAR(100) - ); Query OK, 0 rows affected (0.01 sec) ちなみに、SQLは小文字大文字の区別をしませんが、MySQLの予約語を大文字に、カラム名やテーブル名を小文字にすれば、SQLの見た目が分かりやすくなります(*7)。 テーブルが作成されたか確認します。 mysql DESC language; +-------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-------+--------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | name | varchar(10) | YES | | NULL | | | note | varchar(100) | YES | | NULL | | +-------+--------------+------+-----+---------+----------------+ 3 rows in set (0.01 sec) 次にテーブルにデータを挿入します。以下SQLをmysqlプロンプトにながしてください。 INSERT INTO language (name, note) VALUES ( PHP , 初心者でも使いやすい ); INSERT INTO language (name, note) VALUES ( Perl , かつては一世を風靡した ); INSERT INTO language (name, note) VALUES ( Ruby , Railsで火がついた国産言語 ); INSERT INTO language (name, note) VALUES ( Python , 米国での利用者はとても多い ); データを確認します。 mysql SELECT * FROM language; +----+--------+-----------------------------------------+ | id | name | note | +----+--------+-----------------------------------------+ | 1 | PHP | 初心者でも使いやすい | | 2 | Perl | かつては一世を風靡した | | 3 | Ruby | Railsで火がついた国産言語 | | 4 | Python | 米国での利用者はとても多い | +----+--------+-----------------------------------------+ 4 rows in set (0.00 sec) PHPからMySQLのデータにアクセスする [#d7e16dfd] 先ほど作成した、languageテーブルを利用します。 以下のプログラムを作成し、/var/www/html/mysql.phpという名前で保存してください。 ?php $db = mysql_connect( localhost , root , password ); if (!$db) { die( MySQL接続失敗 . mysql_error()); } $db_selected = mysql_select_db( lamp , $db); if (!$db_selected) { die( データベース選択失敗 . mysql_error()); } $result = mysql_query( SELECT * FROM language , $db); if (!$result) { die( クエリ選択失敗 . mysql_error()); } while ($row = mysql_fetch_assoc($result)) { echo id . $row[ id ] . br / ; echo name . $row[ name ] . br / ; echo note . $row[ note ] . br / ; echo hr / ; } ※ちなみに、PHPのコードのみで構成される場合、ファイル末尾の「? 」は必要ありません。これは近年主流の書き方なので慣れておくと良いでしょう。 それでは、ブラウザから確認してみましょう。 もしどこかでこけた場合、エラーメッセージをたよりに、問題を解決してください。
https://w.atwiki.jp/is01rebuild/pages/94.html
baksmali について odexファイルをdexファイルにして、apkファイルにまとめてしまおうというお話。 ちょっと乱暴ですが、簡単に書きます。(自分への覚え書き程度なので…) .dex ファイル … Dalvik VM で実行可能なファイル .odex ファイル … Dalvik VM で実行可能なファイルの .dex を特定のVM環境に最適化したもの。 逆アセンブラ的な動作とアセンブラ的動作をするのが、baksmali、smali。 本家サイトはこちら→http //code.google.com/p/smali/ 毎回、使い方を調べるのが面倒になったので、Makefile にした。 といっても、依存関係も何も無いのでシェルスクリプトとほとんど変わらないのだが、 エラーが出るとそこで止まるという利点があったりする。 下記の例だと、piyopiyo.apkとpiyopiyo.odexがあり、 FRAMEWORKのところに、特定VMの/system/frameworkディレクトリを指定すると言った感じ。 ディレクトリにそれぞれを配置して、Makefileを書き直して $ make key $ make で完了です。 新apkと、key生成を依存関係で結びつけるとさらに楽かもしれない。 $ make clean はキャンセルです。新apkを削除して、makeする前の状態にディレクトリをクリーンにする。 TARGET =piyopiyo FRAMEWORK =../../system/framework/ BAKSMALI =../..//baksmali/baksmali-1.2.8.jar SMALI =../../baksmali/smali-1.2.8.jar .PHONY all all rm -rf out java -jar $(BAKSMALI) \ -d $(FRAMEWORK) \ -x $(TARGET).odex java -jar $(SMALI) -o classes.dex out rm -rf temp mkdir temp ( cd temp; \ unzip ../$(TARGET).apk;) rm -f ./temp/META-INF/* cp classes.dex ./temp/ ( cd temp; \ jar cvf ../$(TARGET)_new.apk .;) mv $(TARGET).apk $(TARGET)_old.apk mv $(TARGET)_new.apk $(TARGET).apk jarsigner -keystore is01.keystore -verbose $(TARGET).apk is01key .PHONY clean clean rm -f *~ classes.dex rm -f $(TARGET).dex rm -rf out rm -rf temp mv $(TARGET)_old.apk $(TARGET).apk .PHONY key key keytool -genkey -dname "c=j" \ -keypass hogehoge \ -keystore is01.keystore \ -storepass hogehoge \ -validity 10000 \ -alias is01key \ -keyalg RSA コメント 名前 コメント
https://w.atwiki.jp/bemanilyrics/pages/1973.html
Brand New World/VENUS 不意に決まった Oh! Driving date I wanna get your heart(Yeah!Yeah!) あの角で待つキミまで Cruisin On The Beat(Yeah!Yeah!) ボクとなら見つかるさ 知らなかったBrand New な World めかし込んだキミなら ウィザウ で チュナイな夜になるさ (We are!You are!VENUS!) (We are!You are!VENUS!) 恋をしているから キミが好きだから きっとうまく行くよ ボクだけを信じて 恋をしているなら 毎日は輝く もっと知りたいから 君だけを追いかける Everyday… Extended Mix 不意に決まった Oh! Driving date I wanna get your heart(Yeah!Yeah!) あの角で待つキミまで Cruisin On The Beat(Yeah!Yeah!) ボクとなら見つかるさ 知らなかったBrand New な World めかし込んだキミなら ウィザウ で チュナイな夜になるさ (We are!You are!VENUS!) 恋をしているから キミが好きだから きっとうまく行くよ ボクだけを信じて 恋をしているなら 毎日は輝く もっと知りたいから 君だけを追いかける Everyday… 恋をしているから キミが好きだから きっとうまく行くよ ボクだけを信じて 恋をしているなら 毎日は輝く もっと知りたいから 君だけを追いかける Everyday… (We are! You are! VENUS!)
https://w.atwiki.jp/rsbuygoldq/pages/81.html
It s among people associated with Runescape precious metal inexpensive the actual Runescape precious metal available a href="http //www.4rsgold.com/" strong Runescape Gold /strong /a however instead of prior video games. It s not the realtime strategy online game nevertheless it is a Runescape company accounts MMOG. Runescape offers purchase inexpensive Runescape precious metal a few commonalities along with prior online game, like the exact same environment associated with Runescape accounts Runescape, the most affordable Runescape precious metal associated artwork path as well as aion precious metal economic system. An enormous volume of Earth associated with Runescape orbits close to questing. These types of duties or even quests are usually available through nonplayer figures (NPCs). Missions would be the main part within Earth associated with Runescape which often incentive the ball player along with knowledge factors as well as ingame money (Earth associated with Runescape precious metal) how the personality may then commit upon buying brand new abilities as well as buying brand new equipment. Planet associated with Runescape happens in the 3Drepresentation using the Runescape world which gamers may connect to by way of their own figures. The overall game functions 2 continents about the Runescape. With this online game planet, gamers make use of their own figures in order to discover areas, beat animals as well as complete missions. The actual Passing away Dark night would be the at first introduced Leading man course with regard to Wrath within the Lich Full. Passing away Knights in combat, based on Blizzard designers, can match the container as well as DPS functions adequately. Passing away Knights in combat may use dish armour as well as brand new rune weaponry such as a href="http //www.4rsgold.com/" strong Buy Runescape Gold /strong /a as well as Runeaxes, however they can t make use of glasses. Because Runescape gamers, you have to create your own figures if you preliminary sign in the overall game. Perform since the game s very first leading man course, the actual fearsome passing away dark night, as well as order the ability associated with bloodstream, ice, as well as unholy runes.
https://w.atwiki.jp/mcmaster/pages/247.html
this_page プラグインエラー エラー this_page プラグインエラー エラーのマーキングコード一覧です。 マーキングコードは同じでも製品型番が異なるものもありますので外形、特性などをデータシートで比べることをおすすめします。 「*」,「**」,「***」,「****」にはロットNo.やデートコード,「#」,「_」などにはhFE、特性種別などにより各々の文字が入ります。詳しくは各データシートを参照してください。 注意事項はTOSHIBAを参照して下さい。 マーキングコードリスト LIST TOSHIBA(1) LIST TOSHIBA(2) LIST TOSHIBA(3) LIST TOSHIBA(4) TOSHIBAのリスト説明ページ(TOSHIBA TOP MENU) 前のリスト TOSHIBA(3)へ(BACKWARD) MARKING CODE LIST TOSHIBA(4) * , ** , *** , ****,_=date code,Lot No. etc. #=hfe rank. MARKINGCODE PART No.Grade etc. MAKER PACKAGENAME MAKERPACKAGE NAME PINCOUNT etc. No markingCathode band Blue(青)Body color Tomato(赤橙) 1S1588 TOSHIBA SC-40 DO-35(1-2A1A) 2 Diode for high speed switching. No markingCathode band Green(緑)Body color No data 1SS176 TOSHIBA -DO-34 (1-2H1A) 2 Diode for ultra high speed switching.Discontinued.Alternative the 1SS193. No markingCathode band Green(緑)2nd band Blue(青)Body color No data 1SS177 TOSHIBA -DO-34 (1-2H1A) 2 Diode for ultra high speed switching.Discontinued.Alternative the 1SS193. No markingCathode band Green(緑)2nd band BlacK(黒)Body color No data 1SS178 TOSHIBA -DO-34 (1-2H1A) 2 Diode for ultra high speed switching.Discontinued.Alternative the 1SS193. ●10015AZの表示例はこちら 015AZ10-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●10015AZの表示例はこちら 015AZ10-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●10015AZの表示例はこちら 015AZ10-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●11015AZの表示例はこちら 015AZ11-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●11015AZの表示例はこちら 015AZ11-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●11015AZの表示例はこちら 015AZ11-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●12015AZの表示例はこちら 015AZ12-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●12015AZの表示例はこちら 015AZ12-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●12015AZの表示例はこちら 015AZ12-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●13015AZの表示例はこちら 015AZ13-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●13015AZの表示例はこちら 015AZ13-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●13015AZの表示例はこちら 015AZ13-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●15015AZの表示例はこちら 015AZ15-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●15015AZの表示例はこちら 015AZ15-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●15015AZの表示例はこちら 015AZ15-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●16015AZの表示例はこちら 015AZ16-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●16015AZの表示例はこちら 015AZ16-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●16015AZの表示例はこちら 015AZ16-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●18015AZの表示例はこちら 015AZ18-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●18015AZの表示例はこちら 015AZ18-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●18015AZの表示例はこちら 015AZ18-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●20015AZの表示例はこちら 015AZ20-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●20015AZの表示例はこちら 015AZ20-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●20015AZの表示例はこちら 015AZ20-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●22015AZの表示例はこちら 015AZ22-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●22015AZの表示例はこちら 015AZ22-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●22015AZの表示例はこちら 015AZ22-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●24015AZの表示例はこちら 015AZ24-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●24015AZの表示例はこちら 015AZ24-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●24015AZの表示例はこちら 015AZ24-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. .S 015DZ4.7 TOSHIBA - fSC(0.6 x 1.0)(1-1L1A) 2 Zener diode for Constant-Voltage Regulation.Discontinued. ゜S 015DZ5.1 TOSHIBA - fSC(0.6 x 1.0)(1-1L1A) 2 Zener diode for Constant-Voltage Regulation.Discontinued. S 015DZ5.6 TOSHIBA - fSC(0.6 x 1.0)(1-1L1A) 2 Zener diode for Constant-Voltage Regulation.Discontinued. ●●20015AZの表示例はこちら 015AZ2.0-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●20015AZの表示例はこちら 015AZ2.0-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●22015AZの表示例はこちら 015AZ2.2-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●22015AZの表示例はこちら 015AZ2.2-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●24015AZの表示例はこちら 015AZ2.4-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●24015AZの表示例はこちら 015AZ2.4-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●27015AZの表示例はこちら 015AZ2.7-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●27015AZの表示例はこちら 015AZ2.7-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●30015AZの表示例はこちら 015AZ3.0-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●30015AZの表示例はこちら 015AZ3.0-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●33015AZの表示例はこちら 015AZ3.3-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●33015AZの表示例はこちら 015AZ3.3-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●36015AZの表示例はこちら 015AZ3.6-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●36015AZの表示例はこちら 015AZ3.6-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●39015AZの表示例はこちら 015AZ3.9-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●39015AZの表示例はこちら 015AZ3.9-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●43015AZの表示例はこちら 015AZ4.3-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●43015AZの表示例はこちら 015AZ4.3-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●43015AZの表示例はこちら 015AZ4.3-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●47015AZの表示例はこちら 015AZ4.7-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●47015AZの表示例はこちら 015AZ4.7-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●47015AZの表示例はこちら 015AZ4.7-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●51015AZの表示例はこちら 015AZ5.1-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●51015AZの表示例はこちら 015AZ5.1-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●51015AZの表示例はこちら 015AZ5.1-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●56015AZの表示例はこちら 015AZ5.6-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●56015AZの表示例はこちら 015AZ5.6-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●56015AZの表示例はこちら 015AZ5.6-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●62015AZの表示例はこちら 015AZ6.2-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●62015AZの表示例はこちら 015AZ6.2-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●62015AZの表示例はこちら 015AZ6.2-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●68015AZの表示例はこちら 015AZ6.8-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●68015AZの表示例はこちら 015AZ6.8-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●68015AZの表示例はこちら 015AZ6.8-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●75015AZの表示例はこちら 015AZ7.5-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●75015AZの表示例はこちら 015AZ7.5-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●75015AZの表示例はこちら 015AZ7.5-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●82015AZの表示例はこちら 015AZ8.2-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●82015AZの表示例はこちら 015AZ8.2-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●82015AZの表示例はこちら 015AZ8.2-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●91015AZの表示例はこちら 015AZ9.1-Y TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●91015AZの表示例はこちら 015AZ9.1-Z TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. ●●91015AZの表示例はこちら 015AZ9.1-X TOSHIBA - 1-1G1AESC(0.8 x 1.6) 2 Zener Diode for Constant-Voltage Regulation Applications*Discontinued. TOSHIBAのリスト説明ページ(TOSHIBA TOP MENU) 前のリスト TOSHIBA(3)へ(BACKWARD) リンク MARKING CODE一覧
https://w.atwiki.jp/touhoukashi/pages/2258.html
【登録タグ COOL CREATE な オールナイト・オブ・ナイツ フラワリングナイト 月時計 ~ ルナ・ダイアル ytr 曲】 【注意】 現在、このページはJavaScriptの利用が一時制限されています。この表示状態ではトラック情報が正しく表示されません。 この問題は、以下のいずれかが原因となっています。 ページがAMP表示となっている ウィキ内検索からページを表示している これを解決するには、こちらをクリックし、ページを通常表示にしてください。 /** General styling **/ @font-face { font-family Noto Sans JP ; font-display swap; font-style normal; font-weight 350; src url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2972/10/NotoSansCJKjp-DemiLight.woff2) format( woff2 ), url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2972/9/NotoSansCJKjp-DemiLight.woff) format( woff ), url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2972/8/NotoSansCJKjp-DemiLight.ttf) format( truetype ); } @font-face { font-family Noto Sans JP ; font-display swap; font-style normal; font-weight bold; src url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2972/13/NotoSansCJKjp-Medium.woff2) format( woff2 ), url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2972/12/NotoSansCJKjp-Medium.woff) format( woff ), url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2972/11/NotoSansCJKjp-Medium.ttf) format( truetype ); } rt { font-family Arial, Verdana, Helvetica, sans-serif; } /** Main table styling **/ #trackinfo, #lyrics { font-family Noto Sans JP , sans-serif; font-weight 350; } .track_number { font-family Rockwell; font-weight bold; } .track_number after { content . ; } #track_args, .amp_text { display none; } #trackinfo { position relative; float right; margin 0 0 1em 1em; padding 0.3em; width 320px; border-collapse separate; border-radius 5px; border-spacing 0; background-color #F9F9F9; font-size 90%; line-height 1.4em; } #trackinfo th { white-space nowrap; } #trackinfo th, #trackinfo td { border none !important; } #trackinfo thead th { background-color #D8D8D8; box-shadow 0 -3px #F9F9F9 inset; padding 4px 2.5em 7px; white-space normal; font-size 120%; text-align center; } .trackrow { background-color #F0F0F0; box-shadow 0 2px #F9F9F9 inset, 0 -2px #F9F9F9 inset; } #trackinfo td ul { margin 0; padding 0; list-style none; } #trackinfo li { line-height 16px; } #trackinfo li nth-of-type(n+2) { margin-top 6px; } #trackinfo dl { margin 0; } #trackinfo dt { font-size small; font-weight bold; } #trackinfo dd { margin-left 1.2em; } #trackinfo dd + dt { margin-top .5em; } #trackinfo_help { position absolute; top 3px; right 8px; font-size 80%; } /** Media styling **/ #trackinfo .media th { background-color #D8D8D8; padding 4px 0; font-size 95%; text-align center; } .media td { padding 0 2px; } .media iframe nth-of-type(n+2) { margin-top 0.3em; } .youtube + .nicovideo, .youtube + .soundcloud, .nicovideo + .soundcloud { margin-top 0.75em; } .media_section { display flex; align-items center; text-align center; } .media_section before, .media_section after { display block; flex-grow 1; content ; height 1px; } .media_section before { margin-right 0.5em; background linear-gradient(-90deg, #888, transparent); } .media_section after { margin-left 0.5em; background linear-gradient(90deg, #888, transparent); } .media_notice { color firebrick; font-size 77.5%; } /** Around track styling **/ .next-track { float right; } /** Infomation styling **/ #trackinfo .info_header th { padding .3em .5em; background-color #D8D8D8; font-size 95%; } #trackinfo .infomation_show_btn_wrapper { float right; font-size 12px; user-select none; } #trackinfo .infomation_show_btn { cursor pointer; } #trackinfo .info_content td { padding 0 0 0 5px; height 0; transition .3s; } #trackinfo .info_content ul { padding 0; margin 0; max-height 0; list-style initial; transition .3s; } #trackinfo .info_content li { opacity 0; visibility hidden; margin 0 0 0 1.5em; transition .3s, opacity .2s; } #trackinfo .info_content.infomation_show td { padding 5px; height 100%; } #trackinfo .info_content.infomation_show ul { padding 5px 0; max-height 50em; } #trackinfo .info_content.infomation_show li { opacity 1; visibility visible; } #trackinfo .info_content.infomation_show li nth-of-type(n+2) { margin-top 10px; } /** Lyrics styling **/ #lyrics { font-size 1.06em; line-height 1.6em; } .not_in_card, .inaudible { display inline; position relative; } .not_in_card { border-bottom dashed 1px #D0D0D0; } .tooltip { display flex; visibility hidden; position absolute; top -42.5px; left 0; width 275px; min-height 20px; max-height 100px; padding 10px; border-radius 5px; background-color #555; align-items center; color #FFF; font-size 85%; line-height 20px; text-align center; white-space nowrap; opacity 0; transition 0.7s; -webkit-user-select none; -moz-user-select none; -ms-user-select none; user-select none; } .inaudible .tooltip { top -68.5px; } span hover + .tooltip { visibility visible; top -47.5px; opacity 0.8; transition 0.3s; } .inaudible span hover + .tooltip { top -73.5px; } .not_in_card span.hide { top -42.5px; opacity 0; transition 0.7s; } .inaudible .img { display inline-block; width 3.45em; height 1.25em; margin-right 4px; margin-bottom -3.5px; margin-left 4px; background-image url(https //img.atwikiimg.com/www31.atwiki.jp/touhoukashi/attach/2971/7/Inaudible.png); background-size contain; background-repeat no-repeat; } .not_in_card after, .inaudible .img after { content ; visibility hidden; position absolute; top -8.5px; left 42.5%; border-width 5px; border-style solid; border-color #555 transparent transparent transparent; opacity 0; transition 0.7s; } .not_in_card hover after, .inaudible .img hover after { content ; visibility visible; top -13.5px; left 42.5%; opacity 0.8; transition 0.3s; } .not_in_card after { top -2.5px; left 50%; } .not_in_card hover after { top -7.5px; left 50%; } .not_in_card.hide after { visibility hidden; top -2.5px; opacity 0; transition 0.7s; } /** For mobile device styling **/ .uk-overflow-container { display inline; } #trackinfo.mobile { display table; float none; width 100%; margin auto; margin-bottom 1em; } #trackinfo.mobile th { text-transform none; } #trackinfo.mobile tbody tr not(.media) th { text-align left; background-color unset; } #trackinfo.mobile td { white-space normal; } document.addEventListener( DOMContentLoaded , function() { use strict ; const headers = { title アルバム別曲名 , album アルバム , circle サークル , vocal Vocal , lyric Lyric , chorus Chorus , narrator Narration , rap Rap , voice Voice , whistle Whistle (口笛) , translate Translation (翻訳) , arrange Arrange , artist Artist , bass Bass , cajon Cajon (カホン) , drum Drum , guitar Guitar , keyboard Keyboard , mc MC , mix Mix , piano Piano , sax Sax , strings Strings , synthesizer Synthesizer , trumpet Trumpet , violin Violin , original 原曲 , image_song イメージ曲 }; const rPagename = /(?=^|.*
https://w.atwiki.jp/engineeringhowtos/pages/16.html
OpenCVについてのHOWTO集 リンク 公式サイト 公式Wiki リファレンス(日本語) サンプルコード(日本語) 目次 Linux版とWindows版の違い Intel Integrated Performance Primitives (IPP)をインストールする Intel Math Kernel Library (MKL)をインストールする 画像から特徴点を抽出する 行列の固有値,固有ベクトルを求める 同次線形方程式を解く 部分行列へのアクセス ラベリングを行う Linux版とWindows版の違い カメラからcvQueryFrame()またはcvRetrieveFrame()で取得した画像の座標系 Linux 画像に向かって左上角が原点,右方向がX軸正方向,下方向がY軸正方向 Windows 画像に向かって左下角が原点,右方向がX軸正方向,上方向がY軸正方向 OpenCV内部ではIplImageのメンバ変数originにより,上記の2種類の座標系が区別される. 例えばcvShowImage()で画像を描画するときに,ピクセルデータを参照する順序は, メンバ変数originにより決定される.originがピクセルデータの順序と一致していない 場合,上下反転した画像が描画される. Intel Integrated Performance Primitives (IPP)をインストールする IPP,MKLは非商用利用に関しては無償で提供されている.ただし, Intelの利用許諾条項によると学術利用は非商用利用に含まれていない. ( [http //www.intel.com/cd/software/products/asmo-na/eng/download/download/219771.htm] ) Intel Math Kernel Library (MKL)をインストールする 画像から特徴点を抽出する cvGoodFeaturesToTrack()を使う.Reference Manualに明記されていないが,呼び出しの時点で,引数corner_countには見つけたい特徴点の個数の最大値を格納していなければならない. 行列の固有値,固有ベクトルを求める 行列の種類 適用可能な関数 対称かつ正定 cvSVD() 対称 cvEigenVV() (3x3)以下のサイズ cvSolveCubic()とcvSVD()の併用 同次線形方程式を解く cvSolve()では同次線形方程式A*X = 0を解けないので, cvSVD()でAを特異値分解して,その結果を用いて求める.具体的には,ゼロである特異値に 対応する右特異ベクトル(複数ある場合はそれらの線形結合)が 同次方程式の解となる. 部分行列へのアクセス ある行列Mの部分行列にアクセスする(読み書きを行う)には次のようにする CvMat *M = cvCreateMat(4, 4, CV_32FC1); CvMat A; // [A | B] CvMat B; // M = [-----] CvMat C; // [C | D] CvMat D; // cvSetZero(M); cvGetSubRect(M, A, cvRect(0, 0, 2, 2)); // cvCreateMat()と異なり列-行の順で記す cvGetSubRect(M, B, cvRect(2, 0, 2, 2)); cvGetSubRect(M, C, cvRect(0, 2, 2, 2)); cvGetSubRect(M, D, cvRect(2, 2, 2, 2)); // Aの内容を変更すると,Mの内容も変更される(AとMが同じデータを参照しているため) cvmSet( A, 0, 0, 1); // [1 2 0 0] cvmSet( A, 0, 1, 2); //A = [1 2] M = [3 4 0 0] cvmSet( A, 1, 0, 3); // [3 4] [0 0 0 0] cvmSet( A, 1, 1, 4); // [0 0 0 0] ラベリングを行う cvblobslibを使う(OpenCVに含まれていない). 実装に誤りあり.BlobExtraction.cppの以下の行 delete Transition; delete ThisRegion; delete LastRegion; は,正しくは, delete[] Transition; delete[] ThisRegion; delete[] LastRegion; 誤ったdeleteの実行結果は不定(予期しない箇所でのSEGVなど).
https://w.atwiki.jp/nlwnew/pages/63.html
■NewLiveBot! for Chrome [スクリーンショット] ※現在この拡張は機能していません。 Chrome拡張がManifest Version 2化して、そこでつまずいています。 有志の力を求めています。 ●対応ブラウザ Chrome ●最新バージョン 0.2.3 ●特徴 NewLiveWall!の新着コメントを表示するChrome拡張です! 新着コメント100件取得。 ●使い方 1. ダウンロードする 2. Chromeの拡張管理のページにD Dする 3. インストールして終わり ツールバーにアイコンが表示されるのでクリック(^ω^) ■Firefox版にある新着コメントサイト表示のかわりになるんじゃないでしょうか。 コメントがあった際にリアルタイムで更新されていくので、ウインドウを開きっぱなしにしながら動画を見たり放置しているといろいろ捗る。 Twitterサービスを利用しているので調子が悪いときは表示されなくなる。 バックグラウンドで走らなく負荷無しだからとりあえず入れておくべき。 作成者:wiki管理人 なにかあれば壁まで! ■アップデート履歴 年 日付 バージョン 内容 2012 01/13 0.2.3 オプションデザイン修正、手動アップデート機能追加 01/09 0.2.2 Google検索フォーム追加、フォントサイズ1大きく 01/07 0.2.1 微fix 01/06 0.2 少しスマート化、オプション追加 01/05 0.1 公開
https://w.atwiki.jp/talkboxjunkie/pages/27.html
タイトル Hold On 動画 動画の種類 ライブ動画 解説・備考 特に解説したいことがあれば記入してください。 ☆複数トークボクサーが参加している場合は、タグにご入力下さい。☆ この動画に対するコメント 名前 コメント