Getting Started Introduction A simple tutorial Language Reference Basic syntax Types Variables Constants Expressions Operators Control Structures Functions Classes and Objects Namespaces Enumerations Errors Exceptions Fibers Generators Attributes References Explained Predefined Variables Predefined Exceptions Predefined Interfaces and Classes Predefined Attributes Context options and parameters Su
Ruby は US-ASCII はもちろん、US-ASCII 以外の文字エンコーディングもサポートしています。 文字列の内部表現のエンコーディングは固定されておらず、 プログラマは目的に応じて使用するエンコーディングを選ぶことができます。 同じプロセスの中で異なるエンコーディングの文字列が同時に存在することができます。 全ての String や Regexp などのオブジェクトは自身のエンコーディング情報を保持しています。 これにより各オブジェクト内の文字を適切に取り扱うことができます。 後述のマジックコメントでスクリプトエンコーディングを指定すると、 Ruby スクリプトに非 ASCII 文字を使うことができます。(magic comment) 文字列リテラルや正規表現リテラルだけでなく変数名、メソッド名、クラス名などにも 非 ASCII 文字を使うことができます。ただし文字列リテラル・
Ohh! Fresh chapter snuck up! When You Wish Upon a Beard, drawings everywhichway.
乱暴なメモです。 bassistance.de » jQuery plugin: Validation jQuery validation plug-in - main demo Plugins/Validation - jQuery JavaScript Library 開発環境 IxEdit ブラウザで開発出来るらしい。 プリントデバッグ Firefox Firebugを導入する。 console.log()でコンソールに出力可能。オブジェクトを渡しても中身を表示して呉れる。かなり便利。 Firefox 3とFirebugで始めるJavaScript開発:第2回 Firebugによるデバッグの基本,Console APIとその活用|gihyo.jp … 技術評論社 Safari window.console.log()でコンソールに出力可能。オブジェクトは展開されない。 Safari
Vimの使い方をメモしていきます。 ページの目次をサイドバーへ移してみました。 ヘルプ 日本語ヘルプ https://github.com/vim-jp/vimdoc-ja/wiki でドキュメントの翻訳をしてくれている。成果物は http://vim-jp.org/vimdoc-ja/ で読める。 Vim上で日本語ヘルプを参照できるようにする方法は次のページで説明されている。 https://github.com/vim-jp/vimdoc-ja/wiki/HowToUse ヘルプを見たいときは :help ね。 ヘルプの検索 :helpgrep キーワード でヘルプ内を検索できる。 参考:Vim documentation: helphelp 文字コード/改行コード 開いているファイルの文字コード/改行コードの確認 改行コードの確認は :set fileformat? 文字コードの確認
The OpenGL Utility Toolkit (GLUT) Programming Interface API Version 3 (C) 1998 OpenGL-FAQ ML (opengl@a1.goodml.com) Html版Version : 1.0.1 Last Update: 2001/02/09 Original: Mark J. Kilgard "This translation is distributed with permission of Mark Kilgard." 本ドキュメントは,GLUT の作者である Mark J. Kilgard 氏による GLUT の解説書 "The OpenGL Utility Toolkit (GLUT) Programming Interface, API Version 3" のHTMLバージョンを(適当に)翻訳したも
Apple Intelligence Apple Intelligence is the personal intelligence system that puts powerful generative models right at the core of your iPhone, iPad, and Mac. It powers incredible new features to help people communicate, work, and express themselves. Writing Tools are available system-wide, and help users rewrite, proofread, and summarize text. The Image Playground API delivers an easy-to-use exp
Gforth マニュアル (原文) Gforth これは、ANS Forth 言語の高速でポータブルな実装である Gforth (version 0.7.0, November 2, 2008) のマニュアルである。リファレンスだけでなく、Forth のチュートリアルと入門も含む。Copyright © 1995, 1996, 1997, 1998, 2000, 2003, 2004,2005,2006,2007,2008 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later versi
Intel® 64 architecture delivers 64-bit computing in embedded designs when combined with supporting software.1 Intel® 64 architecture improves performance by allowing systems to address more than 4 GB of both virtual and physical memory. Intel® 64 architecture support for: 64-bit flat virtual address space 64-bit pointers 64-bit wide general-purpose registers 64-bit integer support Up to one teraby
Products Processors Accelerators Graphics Adaptive SoCs, FPGAs, & SOMs Software, Tools, & Apps
このテキストは、2005年7月にデータハウスから出版された「アセンブリ言語の教科書」の原稿をWEB用に修正したものです。WEB用に修正したといっても、誤植を直した程度であり、ほぼそのままの状態で公開しています。 現在でも「アセンブリ言語の教科書」は書店で売られており、一般に流通しているため、本来ならば、出版社との契約上、このようにフリーでWEB上に公開することはできません。しかし、「アセンブリ言語の教科書」は、発売後すでに一年を過ぎようとしているにも関わらず、現在でも安定した売り上げを伸ばしており、当初の予想を超えて多くの方々に読んでいただけました。 よって、出版社に「本書の値段が高くて、読みたくても買えない学生の方々や、まだ本書の存在を知らない人たちのために、原稿の一部をWEB上にも公開できないだろうか」と、相談を持ちかけたところ、本書に関わった編集者からも「原稿のすべては無理だが一部分
過去のバージョン 翻訳プロジェクトでは,バージョン 2.3.5 の標準ドキュメントの訳出を終えて います.これらのドキュメントは実質的にメンテナンスを停止しています. (古いバージョンのドキュメントをメンテナンスしたいという方は,ぜひ 御協力ください!)
This page is also available in English. 始めよう SinatraはRubyで下記のような最小労力で手早くウェブアプリケーションを作成するためのDSLです。 # myapp.rb require 'rubygems' require 'sinatra' get '/' do 'Hello world!' end gemをインストールして動かしてみる。 sudo gem install sinatra ruby myapp.rb localhost:4567 を見る。 ルート Sinatraでは、ルートはHTTPメソッドとURLマッチングパターンがペアになっています。 ルートはブロックに結び付けられています。 get '/' do .. 何か見せる .. end post '/' do .. 何か生成する .. end put '/' do .. 何か更
これは、HTML5 で規定されている全要素のリファレンスです。HTML5 仕様の日本語訳です。HTML5仕様では、それぞれの要素の具体的な使い方などにも触れています。ここでは、そのような規定についても翻訳しましたので、HTML5 でページを作成する際に、お役立てください。 * が付けられた項目は、W3C HTML5 仕様の 2014 年 10 月 28 日版の勧告に基づいています。* が付いていない項目は、それより古い仕様に基づいていますのでご注意ください。 実装者(ブラウザーベンダーなど)向けの仕様については、一部、英文のままとなっておりますが、ご了承ください。 ルート要素 html 要素 ドキュメントのメタデータ head 要素 title 要素 base 要素 link 要素 meta 要素 style 要素 スタイリング セクション body 要素 article 要素 secti
Abstract This tutorial is intended for people who are relatively new to Common Lisp. It describes an easy way to install third-party libraries into a Lisp implementation. Contents Introduction What is ASDF? What is ASDF-INSTALL? Prerequisites Installing ASDF Loading ASDF automatically Installing ASDF-INSTALL Loading ASDF-INSTALL automatically Optional: Using MK:DEFSYSTEM instead of (or in addition
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く