- 「Browser Support」を追加しました。
こもりが使っているモノやそうでないものも含め、なんとなくWebデザイナーやWebデベロッパーな人たちに便利そうなのを集めてみました。
# Note that while this file is in our config folder, it is | |
# symlinked to our site folders, so paths are relative from there | |
# Require gems and Compass plugins | |
# require 'rgbapng' | |
# require 'compass-fancybox-plugin' | |
require 'compass-growl' | |
# General | |
output_style = :expanded |
var Tsubunomi = { | |
userSheetName:"user", | |
mentionsSheetName:"mentions", | |
searchSheetName:"search", | |
dmSheetName:"directMessage", | |
userDataKey:"currentUser", | |
apiConfigKey:"apiConfiguration", | |
apiUrl:"https://api.twitter.com/", | |
defaultCount:140, | |
getOptions:{ |
neu.Node(ノイノード)は、iOS デバイス用に Node.js 互換の API を実装したもので、これにより、アプリケーション開発者はさまざまな小さなサーバ(httpサーバ、チャットサーバ、プロキシサーバ、ゲームサーバ等)を自分の iOS アプリケーションの中に埋め込むことができるようになります。
neu.Node を使えば、iOS デバイスは単なる『クライアント』デバイスではなくなります。 デバイスはそれぞれネットワークの『ノード』となり、 分散コンピューティングのサービス の提供や、ユーザ・エクスペリエンスの向上に大きく貢献することになるのです。
neu.Node は今までに無いタイプのアプリケーションを可能にします。たとえば:
cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/ | |
git clone git://github.com/wbond/sublime_package_control.git Package\ Control | |
cd Package\ Control | |
git checkout python3 | |
# restart Sublime Text 3 and you should have Package Control working |
public class Asset | |
{ | |
public static void Save <T> (T asset) where T : ScriptableObject | |
{ | |
Directory.CreateDirectory (DeployGateUtility.settingsFolderPath); | |
string assetPath = DeployGateUtility.settingsFolderPath + typeof(T).Name + ".asset"; | |
T _asset = (T)AssetDatabase.LoadAssetAtPath (assetPath, typeof(T)); | |
if (_asset == null) | |
AssetDatabase.CreateAsset (asset, assetPath); | |
AssetDatabase.SaveAssets (); |
$ cd /usr/local
$ brew versions mysql
5.6.10 git checkout aa3db07 Library/Formula/mysql.rb
5.5.29 git checkout 336c976 Library/Formula/mysql.rb
5.5.28 git checkout 5825f62 Library/Formula/mysql.rb
5.5.27 git checkout 93aecfa Library/Formula/mysql.rb
5.5.25a git checkout faaa6c1 Library/Formula/mysql.rb
<body> | |
<script> | |
function popupNonBlock() { | |
var win = window.open("", "child", "width=400, height=300"); | |
win.document.body.innerHTML = "loading..."; | |
location.href = 'opener.html'; | |
} | |
</script> | |
<a href="opener.html">block</a> |
function oAuthConfig() { | |
var oAuthConfig = UrlFetchApp.addOAuthService("twitter"); | |
oAuthConfig.setAccessTokenUrl("http://api.twitter.com/oauth/access_token"); | |
oAuthConfig.setRequestTokenUrl("http://api.twitter.com/oauth/request_token"); | |
oAuthConfig.setAuthorizationUrl("http://api.twitter.com/oauth/authorize"); | |
// Register an app at https://dev.twitter.com/apps/new to get the following key and secret | |
oAuthConfig.setConsumerKey("key"); | |
oAuthConfig.setConsumerSecret("secret"); | |
} |
<meter>, <detail>, <summary>
が実装されました<input type="...">
が range, date, time, datetime, month, datetime-local をサポートしました