DigiLib

DigiLib is Android Application, base on my research concept, the idea of Three information Layers. 1. Study (V-Bookshelves) 2. V-Desktop 3. V-Note DigiLib implement with Google Books web service, you need google account to use this app. Functions 1. List of bookshelves 2. Import book by scan ISBN code or search by keyword 3. List […]

調バス

早稲田大学所沢キャンパス行スクールバス時刻表アプリ こんにちは。早稲田大学人間科学部人間情報科学科金群研究室3年です。この度、研究の一環として、Android端末向けの学バスの時刻表無料アプリをプレリリースします。まだまだ改良の余地がありますが、是非ダウンロードしてみて下さい。年末までには、ツイッターなどSNSとの連動、GPSによる位置情報などアップデートしていきたいと考えています。ご意見ご感想などございましたら、宜しく願いいたします。 https://play.google.com/store/apps/details?id=appinventor.ai_chen420.wasedabus

調バス 所沢キャンパスー小手指駅間無料検索アプリ

早稲田大学所沢キャンパス行スクールバス時刻表アプリ こんにちは。早稲田大学人間科学部人間情報科学科金群研究室3年です。 この度、研究の一環として、Android端末向けの学バスの時刻表無料アプリをプレリリースします。 まだまだ改良の余地がありますが、是非ダウンロードしてみて下さい。 ご意見ご感想などございましたら、宜しく願いいたします。 2012/12/6 新たに機能追加し、公開しました。 2012/12/23 バグ修正、UIの改善、位置情報機能追加。 https://play.google.com/store/apps/details?id=appinventor.ai_nislab2012.shirabus

Collection:コレクションが空かどうか検査する

import java.util.Collection; import java.util.ArrayList; public class Main { public static void main(String[] args) { Collection c = new ArrayList(); System.out.println(c + ” is Empty ? > ” + c.isEmpty()); c.add(“hoge”); c.add(“foo”); c.add(“bar”); System.out.println(c + ” is Empty ? > ” + c.isEmpty()); } }

TinyWebDB API Tester

TinyWebDB API is a App Inventor TinyWebDB API plugin, use you WordPress as a TinyWebDB web service. After you setup TinyWebDB API on WordPress, you will need a tester to make sure the API work well. This tester use for the API test. https://play.google.com/store/apps/details?id=appinventor.ai_chen_waseda.WP_TinyWebDB_API

App Inventor 2が今年末にリリース

App Inventor 2が今年末にリリースされます。 ブロックエディタも含め、完全にブラウザで動作可能で、JAVAの起動が不要です。 詳細は、以下のアナウンスをご確認下さい。 https://groups.google.com/forum/#!topic/app-inventor-announcements/OU3riAusQU4 (私は、要点だけ理解しましたが、どなたか翻訳して頂けると助かります。) 現在、App Inventor 2 Alphaは、下記URLから利用可能です。 http://ai2.appinventor.mit.edu/ (Alpha版の注意点が、ありますので、上記アナウンスをよく読んでください。)

TinyWebDB API Tester on Google Play

TinyWebDB API Tester on Google Play. Search “TinyWebDB API” to get app page. *** TinyWebDB API is a App Inventor TinyWebDB API plugin, use you WordPress as a TinyWebDB web service. After you setup TinyWebDB API on WordPress, you will need a tester to make sure the API work well. This tester use for the […]

TinyWebDB-API Demo App with Post ID and Flung event on Canvas

初期状態とID:9を表示したところ   WP-TinyWebDB-API Demo App with Post ID and Flung event on Canvas これは、前回のデモプログラムに、IDでページの内容を表示し、データブラウジングし易いようにFlung機能を追加したもの。

“*nothing*”が返ってくる致命的なエラー

AppInventor API のプラグインを作って、WordPress.Orgで公開した。 テストの段階でわかったことだが、Tagに対して、Valueがないので場合、NULLが帰って来る。 このNULLは、AppInventorでは、”*nothing*”と表現し、致命的なエラーとなり、ダイアログを出して異常終了するしか救いようがない! ネットでいろいろ調べたけど、”*nothing*”は、NULLではなく、未定義にとするらしい。発生させないように回避しか対策がない。 こまった。 AppInventor API変更するしかないかな。

TinyWebDB-API Demo App Sample 1: App with Slug

WP-TinyWebDB-API Demo App Sample 1: App with Slug 簡単なデモプログラム、Slugを入れれば、GetValueでページの内容を取って来る。