| name | interview | ||
|---|---|---|---|
| description | ユーザーの作業内容をヒアリングし、やること・やらないことを明確化する。「何から始めればいい?」「タスクを整理したい」「要件を明確にしたい」「この作業の進め方を相談したい」など、作業開始前にスコープや方針を固めたい場合に使用する。曖昧な指示や大きなタスクを受けた場合にも積極的に使う。明確な1行タスクや単純な質問には使用しない。 | ||
| argument-hint | [作業内容の説明(省略可)] | ||
| allowed-tools | Read, Glob, Grep, WebSearch, AskUserQuestion, Agent | ||
| metadata |
|
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
| from datetime import datetime | |
| from typing import Type, TypeVar, Generic | |
| from sqlalchemy import ( | |
| create_engine, | |
| MetaData, | |
| Integer, | |
| Unicode, | |
| DateTime, | |
| Column, | |
| Table, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oracle v. GoogleのAPI著作権裁判の話(連邦最高裁)
2016年5月26日付で、合衆国連邦地裁(Federal District Court)において、いわゆる「Java API著作権裁判」について、「GoogleのJava API使用はフェアユースである」という陪審員評決が出たと報道されている。
なお、注意すべき点として、2016年5月26日段階で報道されている評決はまだ未確定である。今回の裁判はいわゆる知財裁判のため、州裁判所ではなく、連邦裁判所の管轄になっており、連邦地裁はその1審である。Oracleはおそらく控訴審の巡回裁判所、状況によっては連邦最高裁まで進むつもりであると思われるので、今後の動向には引き続き注意を要する。
- http://ergodox.org/
- ErgoDox本家
- https://www.indiegogo.com/projects/ergodox-ez-an-incredible-mechanical-keyboard#/
- ErgoDox EZ (完成品)
- https://www.massdrop.com/buy/infinity-ergodox
- Infinity ErgoDox Ergonomics Keyboard Kit
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
| 01234.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.example.com 127.0.0.1 | |
| 01234.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.example.com 127.0.0.2 | |
| 01234.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.example.com 127.0.0.3 | |
| 01234.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.example.com 127.0.0.4 | |
| 01234.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.example.com 127.0.0.5 | |
| 01234.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789abcdef.0123456789a |
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
| #!/bin/sh | |
| PKG_CONFIG_PATH= | |
| LDFLAGS= | |
| CPPFLAGS= | |
| add_lib_path() { | |
| PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$1/lib/pkgconfig | |
| LDFLAGS="$LDFLAGS -L$1/lib" | |
| CPPFLAGS="$CPPFLAGS -I$1/include/$2" | |
| } |
- BSD: http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libutil/parsedate.y?rev=1.20&content-type=text/x-cvsweb-markup&only_with_tag=MAIN
- MIT: http://git.eclipse.org/c/jgit/jgit.git/tree/org.eclipse.jgit.test/tst/org/eclipse/jgit/util/GitDateParserTest.java
- MIT: http://git.eclipse.org/c/jgit/jgit.git/tree/org.eclipse.jgit/src/org/eclipse/jgit/util/GitDateParser.java
「OracleとGoogleの判決文を斜め読む」を読んで裁判の経緯は理解できたものの、判決の詳細があまり理解できなかったので判決文を自分で読んだ。法律的な難しさはあまりなく、技術的な論点と関係する条文および過去の判例などが非常にわかりやすく解説されており、判決の根拠もたとえ話を交えて書かれているなど非常に読みやすい印象を受けた。
全体の内容としては比較的単純で「あらゆるプログラムのコードは著作権で保護される。ただしFair Useによる合法的な利用に関しては差し戻し審で審議せよ」という事のようだ。実は「API」という言葉は一切判決文には出てこないため、内容を良く読む必要がある。
NewerOlder