- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2011-09-16 03:01:10 +0900 Ruby FizzBuzz | |
2011-09-16 13:38:20 +0900 Emacs | |
2011-09-16 13:39:42 +0900 Ruby | |
2011-09-16 13:43:07 +0900 Ruby | |
2011-09-16 13:44:24 +0900 Objective-C | |
2011-09-16 13:45:52 +0900 Perl | |
2011-09-16 13:46:02 +0900 Perl | |
2011-09-16 13:56:03 +0900 awk | |
2011-09-16 14:08:33 +0900 Ruby | |
2011-09-16 14:10:42 +0900 Objective-C |
We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2011-09-16 03:01:10 +0900 Ruby FizzBuzz | |
2011-09-16 13:38:20 +0900 Emacs | |
2011-09-16 13:39:42 +0900 Ruby | |
2011-09-16 13:43:07 +0900 Ruby | |
2011-09-16 13:44:24 +0900 Objective-C | |
2011-09-16 13:45:52 +0900 Perl | |
2011-09-16 13:46:02 +0900 Perl | |
2011-09-16 13:56:03 +0900 awk | |
2011-09-16 14:08:33 +0900 Ruby | |
2011-09-16 14:10:42 +0900 Objective-C |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import codecs | |
import json | |
from logging import getLogger | |
import requests | |
from urllib.parse import urlparse, parse_qs | |
logger = getLogger(__name__) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<title>Qiita新着投稿100件のタグをd3.jsのForceレイアウトで表示2</title> | |
<style> | |
svg { | |
border: solid 1px; | |
} | |
.item image { | |
opacity: .7; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
persons.sort(Comparator.comparing( | |
Person::getLastName, Comparator.reverseOrder())); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Qiita新着投稿100件のタグをd3.jsのForceレイアウトで表示</title> | |
<style> | |
svg { | |
border: solid 1px; | |
} | |
.node circle { |
NewerOlder