JSConf US 2011 - Try taking a journey by covered wagon across 2000 miles of plains, rivers, and mountains. Oh yes, WE ARE OFF TO OREGON
This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support. Building Mobile JavaScript WebApps With Backbone.js & jQuery: Part I Addy Osmani | August 4, 2011 Welcome to Part 1 of a two-part tutorial on building complete mobile web applications in JavaScript using DocumentCloud's Backbone.js, jQuery Mobile and LAB
Testing Backbone applications with Jasmine and Sinon Part 1: Introduction 3 March 2011 Overview This is the first in a series of articles demonstrating how to test a Backbone.js application, employing the Jasmine BDD test framework and the Sinon.JS spying, stubbing and mocking library. In this part, we’ll take a brief look at Backbone, and then move on to an introduction to some of the features of
Who Is This Book For?How This Book Is OrganizedConventions Used in This BookAccompanying FilesCode ConventionsjQuery ExamplesHollaAuthor’s NoteSafari® Books OnlineHow to Contact Us Early DaysAdding StructureWhat Is MVC?The ModelThe ViewThe ControllerToward Modularity, Creating ClassesAdding Functions to ClassesAdding Methods to Our Class LibraryClass Inheritance Using PrototypeAdding Inheritance t
This document provides an overview of JavaScript concepts including: 1. Declaration of variables in JavaScript including simple and typed variable declarations. 2. The different types of variables in JavaScript including strings, numbers, booleans, objects, null, and undefined. Special methods for manipulating string values are also discussed. 3. Operators and expressions in JavaScript including c
ガール・ミーツ・スーパーガール 今年はサンマがたくさん獲れているらしい。 どのスーパーに行っても今が旬だよ、今日とかめっちゃお買い得だよ、みたいな感じで売られている。実際キラキラしていておいしそうだ。でも乱獲が問題視されてなかったっけ?私が婆さんになっても海にはサンマが泳いでいてほ…
前の翻訳記事でも述べらているけど、やっぱりデザイナーもプログラミングはある程度書けたほうがいいと思う。んで、その言語はJavaScript! O’ReillyさんからJavaScriptを学ぶうえで役立つ本をまとめた電子書籍(JavaScript Bibliography)が公開されているのを教えてもらったのでAmazonリンクを張ってみるポスト。こう見てみると、翻訳されていないJS本いっぱいですね(気づいてないのもありそう…)。原書の方はKindle版も売ってますので、円高のアレもあるのでYOU買っちゃったらいいんじゃないの! JavaScript Bibliography - O’Reilly Media Beginning JavaScript
82017 Bookmarklets! Create Hatena::Let でブックマークレットをかんたんに作成・公開しよう! 現在閲覧しているサイトのスクリーンショットをクリップボードに入れます javascript:(async()=>{if(!window.html2canvas){await new Promise(((res,rej)=>{const s=document.cre...
Daftar Serta Masuk Saat ini Di Situs Slots Online Terpilih Ojekslot Seperti yang kita pahami waktu ini ada sangat banyak permainan slot online paling sederhana yang dapat dimainkan dalam sekejap hanya cukup masuk di sana saja ojekslot terunggul. Di sini dapat ada sangat banyak bermacam permainan luar biasa yang pastinya dapat anda temukan dengan ringan. Beraneka permainan terbaik di sini dapat and
移転しました http://please-sleep.cou929.nu/20110721.html
この記事は abicky.net の JavaScriptからローカルファイルを作成する方法まとめ に移行しました
- WinMirror - 任意のアプリケーションのウィンドウやデスクトップをミラーリングして表示できます。 解説: オンサイトでの登壇で返しのモニターがなくてもデモをやりやすくするツールを作った - SSTエンジニアブログ - 音声字幕機能付きのWebカメラ - Web Audio APIを使ってマイク入力をスピーカーから出力 - LTタイマー - JavaScriptセキュリティの基礎知識:連載|gihyo.jp … 技術評論社 - HTML5時代の「新しいセキュリティ・エチケット」- @IT - 教科書に載らないWebアプリケーションセキュリティ - @IT - 連載:本当は怖い文字コードの話|gihyo.jp … 技術評論社 - JSF*ck - encode JavaScript with only 6 letters - []()!+ (broken) JSF*ck demo
mrdoob/stats.js - GitHub https://github.com/mrdoob/stats.js 使用メモリの表示も可能ですがChromeとMac版のSafariのみ対応で加えて、別途設定が必要です。詳しくは配布サイトを参照下さい。 使い方 HTMLでbuildフォルダに有るStats.jsを読み込み、JavaScriptで以下の様に記述すると使えます。 window.addEventListener('load', function() { var stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.left = '0px'; stats.domElement.style.top = '0px'; document.body.appendC
JavaScriptプログラミングのTOPへ JavaScriptの例外(throw, try-catch-finally構文)の使い方について,以下の点を論じる。 (A)breakとreturnとthrowの比較 (B)throwを利用した設計のイメージ (C)throwの使いどころ (D)例外処理のサンプルコード×2 (A)break(continue)とthrowとreturnは何なのか どれも「goto」である。 特に,breakがGOTOである事についてのサンプルコード: HOGE:{ alert( "このメッセージは表示されます。" ); // "GOTO"の役目をする。該当ブロックから抜ける break HOGE; alert( "このメッセージは表示されません。" ); }// end of HOGE alert( "HOGEブロックを抜けました。" ); http://d
This document discusses WebRTC and how it enables real-time communications directly in web browsers without plugins. It provides an overview of WebRTC, including that it uses standard protocols and codecs, has a standard JavaScript API, and was contributed to by Google. It discusses how WebRTC works using peer-to-peer connections between endpoints that are connected through an exchange server. Exa
はじめに JavaScriptでは関数もオブジェクトです。このことはよく理解されていると思います。関数とメソッドとの明確な違いはなく、どちらも関数オブジェクトである、というところまではよいのですが、関数コールとメソッドコールの違い、あるいはその仕組みは正確に理解されているでしょうか。先日、職場の後輩に問題を出したところ正確に答えられえなかったので、いまさら?と思われるかも知れませんが、関数コールの仕組みを解説します。 関数とメソッド JavaScriptでは関数とメソッドには本質的な違いはありません。オブジェクトのプロパティとして定義される関数を便宜的にメソッドと呼んでいるだけです。parseInt()などのグローバル関数もグローバルオブジェクトのプロパティであり、関数の中でローカルに定義した関数も概念的にはActivation Objectのプロパティなので基本的には全ての関数はメソッド
.NET 3 #io15 1 #io16 1 Admin SDK 10 Administrative APIs 31 AdSense 1 analytics 5 Android 8 API 3 APIs 3 App Engine 5 Apps 1 Apps Script 118 Audit 2 Auth 5 billing 4 Charts 2 Chrome OS 1 classroom 3 Cloud Storage API 1 Community 1 decks 1 Design 1 Developers 12 Directory API 3 Drive 4 Drive SDK 41 execution API 2 Firebase 1 Forms 1 Freemium 1 Fusion Tables 2 G Suite 24 Gadgets 5 Gmail 7 Gmail APIs
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く