2017/11/14 pmconfjp
・Sessionを聴講していて気づいた中で、
自分が大事だと考えたこと
ユーザ視点が足りていない
広い視野で見ること
PCで記載しにくいことは手書きでもメモする
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Local - Listen for rdebug-ide", | |
| "type": "Ruby", | |
| "request": "attach", | |
| "cwd": "${workspaceRoot}/rails", | |
| "remoteHost": "0.0.0.0", | |
| "remotePort": "1234", |
2017/11/14 pmconfjp
・Sessionを聴講していて気づいた中で、
自分が大事だと考えたこと
ユーザ視点が足りていない
広い視野で見ること
PCで記載しにくいことは手書きでもメモする
https://www.ospn.jp/osc2017-chiba/modules/eventrsv/?id=1&noform=1
OSSライセンス姉崎相談所
トーバルズがLunuxとGPLについて思うこと
https://japan.zdnet.com/article/35088299/
| Interop 2017 | |
| ・Interop | |
| 5Gについての展示物なかった | |
| ・ShowNet | |
| DAMBALLA Network Insight | |
| 機械学習によるデータベースと独自の相関分析により、マルウェアに感染した端末を特定できる |
| using UnityEngine; | |
| using System.Runtime.InteropServices; | |
| public class HogeClass { | |
| [DllImport("__Internal")] // Unityで提供されているネイティブプラグイン | |
| private static extern void hogeMethod_ (); // ネイティブコード上のメソッド | |
| public static void hogeMethod () { | |
| if (Application.platform != RuntimePlatform.OSXEditor) { | |
| hogeMethod_ (); // ネイティブコード上のメソッドを呼び出す |
| document.getElementsByClassName('fa fa-search')[0].click(); |
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!-- Created with Inkscape (http://www.inkscape.org/) --> |
| <animateTransform | |
| attributeName="transform" | |
| begin="0s" | |
| dur="1s" | |
| type="translate" | |
| from="0 0" | |
| to="0 -50" | |
| repeatCount="indefinite" | |
| /> |
| navigator.serviceWorker.getRegistrations().then(function(registrations) { | |
| // 登録されているworkerを全て削除する | |
| for(let registration of registrations) { | |
| registration.unregister(); | |
| } | |
| }); | |
| caches.keys().then(function(keys) { | |
| var promises = []; | |
| // キャッシュストレージを全て削除する | |
| keys.forEach(function(cacheName) { |