| 更新: | 2013-11-02 |
|---|---|
| バージョン: | 0.0.3 |
| 作者: | @voluntas |
| URL: | http://voluntas.github.io/ |
概要
| ;;; php-doc.el --- doc block generator/extractor for php | |
| ;; Copyright (C) 2010, 2013 Stefan Siegl <stesie@brokenpipe.de> | |
| ;; Maintainer: Stefan Siegl <stesie@brokenpipe.de> | |
| ;; Author: Stefan Siegl <stesie@brokenpipe.de> | |
| ;; Keywords: php docblock | |
| ;; Created: 2010 | |
| ;; Modified: 2013-09-14 | |
| ;; X-URL: https://gist.github.com/stesie |
| package xx.xxx.xx.view; | |
| import android.content.Context; | |
| import android.util.AttributeSet; | |
| import android.view.ViewGroup; | |
| import android.widget.GridView; | |
| /** | |
| * ScrollViewの中のGridViewでも高さを可変にする<br> | |
| * http://stackoverflow.com/questions/8481844/gridview-height-gets-cut |
| 更新: | 2013-11-02 |
|---|---|
| バージョン: | 0.0.3 |
| 作者: | @voluntas |
| URL: | http://voluntas.github.io/ |
概要
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
Android用のView Injectionライブラリである Butter Knife について解説します (といいますか、サイトに書いてあることをほとんどそのまま日本語にしただけです) 。
Butter Knifeは ActionBarSherlock などでお馴染みの Square のJake WhartonさんによるAndroid用のView Injectionライブラリです。
このライブラリの目的が、
Chrome 上で reveal.js で作成したスライドを pdf 化する手順メモ
出力された pdf を確認し、リンクが表示されていないなど表示がおかしい場合は以下の事を試す(ここからが本題)
reveal.js/out.html の document.write している行をコメントアウトし、css/print/pdf.css を直接追加。
この記事はScala Advent Calendar 2013の7日目の記事です。
昨日は @shogogg さんのScala + sbt-android + IntelliJ で快適Androidアプリ開発でした。
明日は @takezoux2 さんのScalaのParserCombinator実践入門+です。
継続モナドを調べていたら、@terazzo さんのJavaで継続モナドという記事が非常に判りやすかったんですが、サンプルコードがJavaのボイラープレートの嵐でちょっと読むのが辛い感じだったのでScalaで翻訳してみました、というのがこの記事です。
| #!/bin/bash | |
| sudo yum install -y python-pip | |
| sudo pip install httpie | |
| # |
By Saad Mousliki
御存知の通り、JavaScriptは数あるプログラミング言語のうちのひとつであり、モバイルのハイブリッドアプリ(PhoneGapやAppceleratorといった)や、サーバーサイド(NodeJSやWakanda)等の様々な所で実装されているWebの言語です。 また、Webブラウザにalertを出すところから、ロボットを動かす(nodebotやnodruinoを使って)ところまで様々なシーンで使われる言語となりました。 JavaScriptをマスターし、パフォーマンスの良いコードを生み出す開発者は市場で最も求められています。
| // initialize the Shanghai component which keeps track of | |
| // shipping data in and out of the Port of Shanghai. | |
| var shanghai = Elm.worker(Elm.Shanghai, { | |
| coordinates:[0,0], | |
| incomingShip: { name:"", capacity:0 }, | |
| outgoingShip: "" | |
| }); | |
| function logger(x) { console.log(x) } | |