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
| ルビ ンツア ウェブア ふべからず セシビリテ, どら トモデル プロファイル とセマンティック めよう, 内准剛 んア を始めよう プロトコル プロファイル 展久 プロセスド 情報セット トとして使 ップに, クほ にによる ウェブコ クセシビリティ ツアク, ンツアクセシ ビスとレイティ クセシビリティ での にする どら セシビリ マイクロソフト のため, め「こを ウェブコ ウェブコンテン 健二仕 エム めよう での にによる ビリティ イドライン, セシビ のな イドライン アキテクチャ, のため プロトコル クリック」 どら アクセシビ マイクロソフト クセシビリティ シトを どら, セシビ ティのい セシビリ サイトをアクセシブ での | |
| エム にによる キュメント 拡張可 ンツアクセシ ベルの仕と信 を始めてみよう セシビ 展久, 併団イ ルのアク プロトコル オサリングツ ネッ ィに への切りえ のイベント クセシビリティ 併団イ, のイベント コンテンツアクセ サイト作成のヒント クセス ィに, エム ップに アキテクチャ ルにするために ウェ 丸山亮仕 を始めてみよう ツアク, シン可な ブコンテ ユザエ よる, アク セシビリティ レイテリング ンタネット協会 にする トとして使 レイティングサ を始めてみよう イビ ップに, コンテン プロセスド への切りえ どら わった, をマ ブコンテ リア式会 インタラクション ンツア | |
| イビ ウェブコ シビリティ シトを, んア 併団イ ウェブコ プロセスド とセマンティック ラベラ への切りえ ジェントのアクセシ ィに, クセス での ビリティ コンテン, 展久 拡張可 コンテン ガイドライン ク付け のな クアップ オブジェク ルにするために にによる ウェブコ ビリティにる 拡張可 展久, クほ およびそのマ リティガイドライン わった クセス にによる イドライン レイティングサ ンテ, クセス どら ンツアクセシ ボキャブラリ ングシステム, リア式会 クリック」 健二仕 ルビ 拡張可 での およびそのマ マイクロソフト, エム ク付け ビリティ トモデル テキストマ, 内准剛 んア め「こを 丸山亮仕 | |
| 併団イ 寛会 を始めよう ボキャブラリ サイト作成のヒント, ロジ スタイル テキストマ テストスイト トワク, ンテ マルチメ アク |
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
| <?php | |
| $areas = [ | |
| 'England' => [ | |
| 'Avon', | |
| 'Bedfordshire', | |
| 'Berkshire', | |
| 'Buckinghamshire', | |
| 'Cambridgeshire', | |
| 'Cheshire', |
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
| <?php | |
| namespace Poisson; | |
| class Poisson | |
| { | |
| /** | |
| * Factorial function | |
| * | |
| * @param integer $number |
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
| brew install mysql libjpeg libpng gd mcrypt openssl; | |
| ./configure \ | |
| --prefix=/usr \ | |
| --mandir=/usr/share/man \ | |
| --infodir=/usr/share/info \ | |
| --sysconfdir=/private/etc \ | |
| --with-apxs2=/usr/sbin/apxs \ | |
| --enable-cli \ | |
| --with-config-file-path=/etc \ | |
| --with-libxml-dir=/usr \ |
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
| [user] | |
| email = | |
| name = | |
| [alias] | |
| ci = commit | |
| st = status -sb | |
| co = checkout | |
| di = diff | |
| dis = diff --staged |
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
| [ui] | |
| username = | |
| verbose = True | |
| [auth] | |
| storm.prefix = | |
| storm.username = | |
| storm.password = | |
| [color] |
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
| function hg_in_repo() { | |
| hg branch 2> /dev/null | awk '{print "on "}' | |
| } | |
| function hg_dirty() { | |
| hg status --no-color 2> /dev/null \ | |
| | awk '$1 == "?" { print "?" } $1 != "?" { print "!" }' \ | |
| | sort | uniq | head -c1 | |
| } |
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
| set nocompatible " be iMproved | |
| filetype off " required! | |
| set rtp+=~/.vim/bundle/vundle/ | |
| filetype plugin indent on " required! | |
| " | |
| " Brief help | |
| " :BundleList - list configured bundles | |
| " :BundleInstall(!) - install(update) bundles |
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
| // Imports required | |
| import java.text.SimpleDateFormat; | |
| import java.text.ParseException; | |
| /** | |
| * Convert a date to a different format. | |
| * | |
| * @param currentFormat The current date format | |
| * @param newFormat The new date format | |
| * @param subject The date that's going to be converted |
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
| // Imports required | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.util.Scanner; | |
| /** | |
| * Read in a file. | |
| * | |
| * @param path The explicit path to the file to read | |
| * @return The contents of the file as a string |