Suppose you're opening an issue and there's a lot noisey logs that may be useful.
Rather than wrecking readability, wrap it in a <details> tag!
<details>
Summary Goes Here| 更新: | 2015-10-03 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 1.0.0 |
| URL: | http://voluntas.github.io/ |
概要
Introducing Incremental DOM — Google Developers — Medium
Reactやvirtual-dom、Glimmer(Ember)などVirtual DOMの実装は色々あるが、これらのVirtual DOM実装には2つの問題がある
これらを解決するためにIncremental DOMと言うものを作っている(WIP)
「OracleとGoogleの判決文を斜め読む」を読んで裁判の経緯は理解できたものの、判決の詳細があまり理解できなかったので判決文を自分で読んだ。法律的な難しさはあまりなく、技術的な論点と関係する条文および過去の判例などが非常にわかりやすく解説されており、判決の根拠もたとえ話を交えて書かれているなど非常に読みやすい印象を受けた。
全体の内容としては比較的単純で「あらゆるプログラムのコードは著作権で保護される。ただしFair Useによる合法的な利用に関しては差し戻し審で審議せよ」という事のようだ。実は「API」という言葉は一切判決文には出てこないため、内容を良く読む必要がある。
| require 'webrick' | |
| h,s,o={},WEBrick::HTTPServer.new(:Port=>3333),[*?a..?z] | |
| s.mount_proc('/'){|q,b|t,r=h[q.unparsed_uri[1..-1]],((0..4).map{o[rand(26)]}.*'') | |
| q.request_method=='GET'?b.set_redirect(WEBrick::HTTPStatus::Found,t):(h[r]=q.body)&&b.body="http://localhost:3333/#{r}"} | |
| s.start |
| 更新: | 2017-05-09 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 3.14 |
| URL: | http://voluntas.github.io/ |
MQTT をググって調べた人向け
| jobs = jenkins.model.Jenkins.instance.items | |
| jobs.each {job -> | |
| job.removeProperty(jenkins.plugins.slack.SlackNotifier.SlackJobProperty) | |
| jp = new jenkins.plugins.slack.SlackNotifier.SlackJobProperty( | |
| null, // String teamDomain, | |
| null, // String token, | |
| "#channel_to_notified", // String room, | |
| false, // boolean startNotification, |
新社会人に必須である:
未修正のアプリが数多く残っている状態なので、パブリックな場所での言及には注意して下さい
未修正のアプリが数多く残っている状況ですが、すでに広く情報が公開されており、2.5.2で修正されたという情報が広まると混乱が生じるため広く周知する次第です。
AFNetworking 2.5.1 にMITM攻撃を許す脆弱性があり、2.5.2で修正された、 と報道されていますが、これは誤りです。
2015-01-29 Unofficial Relay FAQ
Compilation of questions and answers about Relay from React.js Conf.
Disclaimer: I work on Relay at Facebook. Relay is a complex system on which we're iterating aggressively. I'll do my best here to provide accurate, useful answers, but the details are subject to change. I may also be wrong. Feedback and additional questions are welcome.
Relay is a new framework from Facebook that provides data-fetching functionality for React applications. It was announced at React.js Conf (January 2015).