ビジネスに役立つ AI をお届けします 来栖川電算は AI 技術の研究開発から応用まで幅広いサービスを提供する名古屋工業大学発ベンチャー(2003 年設立)です。未踏ソフトウェア創造事業の採択者やソフトウェア分野の様々なコンテストの入賞者が在籍しています。最先端の AI 技術だけでなく、膨大な高品質データを生み出す技術、ハードウェアの限界性能を引き出す実装技術、高品質なソフトウェアを実現する設計技術にも定評があります。 手軽に使える様々な認識エンジン 来栖川電算の認識エンジンを活用すれば、センサーデータに埋め込まれた意味を手軽に抽出できます。種類ごとに用意された認識エンジンは教師データや設定を変えるだけで様々なタスクへ応用できます。Linux・Android・iOS 用のライブラリ、WebAPI、コマンドラインツールなどプログラマフレンドリーな SDK を提供しています。トレーニングやコン
やりたいこと: 方向キーでカーソルとか動かしたい (※画像はイメージです) キー入力を得る ターミナルでユーザーの入力を得る際、getsやgetcではエンターが押されるまでキーの入力状況を得ることができません。 なので、カーソル移動等の操作には使えません。 cursesライブラリは色々とめんどいので使わない方法を調べました。 IO#getch (io/console) require 'io/console'するとIO#getchが使えるようになります。 これでキーが押されるたびに標準入力から文字を得ることができます。 ただしControl + Cの終了もできなくなるので、Control + Cが押されたらループを抜けるようにします。 require 'io/console' i = 0 while (key = STDIN.getch) != "\C-c" puts " #{i += 1
カヤックさんの新卒研修を読んで telnet と nc -l を使ってwebサーバ/ブラウザごっこをやってみたのですが、1人でやってると役割の切り替えがダルくなってきたので、本当の基礎からのwebアプリケーション入門を見ながらrubyで簡単なwebサーバを作ってみました。 参考 http://www.geekpage.jp/programming/ruby-network/ http://drascal.blog133.fc2.com/blog-entry-219.html v1 TCPクライアントからの接続を受け付けられるようにする require "socket" server = TCPServer.open(8001) while true socket = server.accept while buffer = socket.gets p buffer end socket.c
Bootstrapの小ネタです。 BootstrapにはModalというダイアログを表示する機能が内包されています。この Modal を表示する際にパラメータを渡す方法について調べました。 ユースケースとしては、一覧から詳細ダイアログを開く際にパラメータを渡す場合などでしょうか。 Modal にパラメータを渡す方法は昔から議論されていて、最近まで変更がされているようです。Github 上の Issue はこちら Pass data arguments to modal? · Issue #531 · twbs/bootstrap https://github.com/twbs/bootstrap/issues/531 1. 3.0.3 以前 3.0.3 以前は以下のようにパラメータを渡すのですが、Modal 初回構築時のパラメータで固定されてしまうため、一覧 ▶︎ 詳細のような用途では使え
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages) This article may require copy editing for Some text is too verbose or poorly written. Further, the terminology in these cases is not defined for the reader.. You can assist by editing it. (December 2023) (Learn how and when to remove this message
トップ > jQuery > Ajax Ajax(Shorthand Methods) ◆ obj.load(url[, data][, complete(data, textStatus, xhr)]) (1.0)
Recipes¶ This is a collection of code snippets and examples for common use cases. Keeping track of Sessions¶ There is no built-in support for sessions because there is no right way to do it (in a micro framework). Depending on requirements and environment you could use beaker middleware with a fitting backend or implement it yourself. Here is an example for beaker sessions with a file-based backen
UNIXドメインソケットでデータグラムを使うと、UDPの欠点が全く表に出てこないので便利。 データが送信単位で分割される データがなくならない データの順番は狂わない 接続先がいないときはちゃんと接続エラーになる UDSに対してもSO_RCVBUFや*1SO_RCVTIMEOはちゃんと使えるので、思ってる以上に適当に利用できる。 UDSデータグラムサーバ int sd,len; unsigned char data[256]; struct sockaddr_un addr = { .sun_path = "/tmp/HOGE", .sun_family = AF_UNIX, }; /* サーバ部分 */ sd = socket( AF_UNIX, SOCK_DGRAM, 0 ); unlink(addr.sun_path); bind( sd, (struct sockaddr *)&a
C言語のsizeof演算子を、配列に対して適用したときと、ポインタに対して適用したときとの違いについて。 sizeof演算子の注意点 sizeof演算子は、配列に対しては、その大きさを返します。文字列を「char s[] = "abcde"」によって定義したとき、sizeof(s)の値は、文字列の長さ5に終端を表すヌル文字「\0」の分を加えた6になります。 char s[] = "abcde"; printf("sizeof(s) = %u", sizeof(s)); /* => sizeof(s) = 6 */ 一方、ポインタに対しては、文字列の内容に関係なく、ポインタのサイズを返します。 char *p = "abcde"; printf("sizeof(p) = %u", sizeof(p)); /* => sizeof(p) = 4 (環境により異なる) */ さて、ポインタ変数に
pdsend (1) NAMEpdsend - send messages to pd on this or a remote machine SYNOPSISpdsend port-number [hostname] [udp|tcp] DESCRIPTIONPdsend sends messages to pd(1), via a socket conection, from pdsend's standard input. This input can be any stream of Pd messages separated by semicolons. This is probably the easiest way to control pd from another application. The protocol used is easy to implement an
JavaScriptで関数型プログラミングを強力に後押しするUnderscore.jsのおすすめメソッド12選(lodashもあるよ)JavaScriptNode.js関数型言語 はじめに この記事では、関数型プログラミングを強力に後押しするライブラリ、 Underscore.jsとlodashを紹介します。 両ライブラリとも_で使用できます。 ほかのライブラリにも依存せず、 現在フロントでもサーバでもかなり人気なライブラリです。 個人的にもこれなしでは。。 といった必須なライブラリとなっています。 また、Backbone.jsといった人気なフレームワークが、 Underscoreに依存していたりします。 Underscore.js GitHub: https://github.com/jashkenas/underscore Document: http://underscorejs.o
自動利得制御(じどうりとくせいぎょ、英: automatic gain control, AGC)とは、多くの電子機器で使われている適応システムである。ピーク信号レベルをフィードバックすることで利得が入力信号レベルに対して適切な範囲になるよう調整する。 例えば、AGCのないAMラジオでは、信号の強弱によって出力音声が大きくなったり小さくなったりする。AGCは信号が強くなると利得を抑えて出力が大きくならないようにし、信号が弱くなると利得を上げて出力が小さくならないようにする。 最も典型的なAGCの例としてAMラジオがある。信号に含まれる情報は搬送波の振幅の変化で表されるため、AM受信機は基本的に線型性があり、音量調節のボリュームは信号の強さに比例する。回路が線型でない場合、この変調方式では忠実にもとの音を再現できない。しかし、受信した信号の強さは送信機との距離や電波の伝播経路や減衰によって様
1. The document describes how the author's experience with Emacs as a student taught him about software freedom and how to read and modify source code. This led him to create his own Emacs-based tools and influenced the design of Ruby. 2. Emacs taught the author the power of Lisp and how to implement a programming language and garbage collection. Using Emacs to write code, documents and email made
turtleモジュール(en, ja)には、タートルグラフィックスを描くための関数が定義されています。 以下のサンプルをみてください。 # square.py import turtle def square(n): for i in range(4): turtle.forward(n) turtle.right(90) square(30) turtle._root.mainloop()このスクリプトを実行するとウィンドウが表示されてから、亀(矢印)が正方形を描きます(下図)。 > python square.py リファレンスにturtleモジュールで定義されている関数について説明がありますが、forward関数は亀を引数だけ前進させます。right関数は亀を引数(角度は度)だけ右を向かせる関数です。つまりsquare関数では、 nだけ前進 90度右向くを亀に繰り返し命令する事で亀に
24.1.1. はじめに¶ タートルグラフィックスは子供にプログラミングを紹介するのによく使われます。タートルグラフィックスは Wally Feurzig と Seymore Papert が 1966 年に開発した Logo プログラミング言語の一部でした。 Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an import turtle, give it the command turtle.forward(15), and it moves (on-screen!) 15 pixels in the direction it is facing, drawing a line as it moves. Give it the command turtle.right(25), and it rot
ACSLogo is a Logo Interpreter for macOS. Logo is a popular language used to teach simple programming by guiding the progress of a ÔturtleÕ which moves around a graphics screen: The turtle in action A new version is available (December 2020) Ñ 1.6.0.2. This version is required if youÕre moving to macOS Big Sur, see Release Notes. Simple commands can be used to make the turtle move in a straight lin
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く