| 更新: | 2023-12-08 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2023.2 |
| URL: | https://voluntas.github.io/ |
タイポなどは Twitter の @voluntas までお願いします。
| 更新: | 2023-12-08 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2023.2 |
| URL: | https://voluntas.github.io/ |
タイポなどは Twitter の @voluntas までお願いします。
特に何もやってあげてないのに他人(法人だけどさ)から何百万何千万のお金が何年もとめどなく注ぎ込まれてきたら、怖くないですか?
オープンソース・ソフトウェアの開発者だけで給料をもらうというのは、まさにこの現象が発生してくるわけ。それまでもこれからも、ずっとオープンソース・ソフトウェアの開発者はやってきたし、やっていくわけでしょう。そんなの会社があってもなくても、別にやることなんて変わらないじゃない。じゃあなんで、ある時から急にかなりの金額が振り込まれてきてしまうんだ?しかもあからさまに物価上昇を上回る結構なハイペースで昇給していく。やっていることは一切何も変わってないのに!
この状況に適応するまでにはいささかの時間を要しました。根が小心者なので。
| --- Emacs Hammerspoon Script | |
| -- Author: Justin Tanner | |
| -- Email: [email protected] | |
| -- License: MIT | |
| --- What does this thing do? | |
| -- Allows you to have Emacs *like* keybindings in apps other than Emacs. | |
| -- You can use Ctrl-Space to mark and cut text just like Emacs. Also enables Emacs prefix keys such as Ctrl-xs (save). | |
| --- Installation |
明日の下書き
| import React, { useReducer, useEffect, useRef } from 'react'; | |
| import firebase from 'firebase/app'; | |
| import equal from 'deep-equal'; | |
| function filterKeys(raw, allowed) { | |
| if (!raw) { | |
| return raw; | |
| } | |
| let s = new Set(allowed); | |
| return Object.keys(raw) |
| import React from 'react'; | |
| import firebase from 'firebase/app'; | |
| import equal from 'deep-equal'; | |
| function filterKeys(raw, allowed) { | |
| if (!raw) { | |
| return raw; | |
| } | |
| let s = new Set(allowed); | |
| return Object.keys(raw) |
| <div id=root /> | |
| <script type=module> | |
| import React from 'https://dev.jspm.io/react@16' | |
| import ReactDOM from 'https://dev.jspm.io/react-dom@16' | |
| ReactDOM.render( | |
| React.createElement('h1', null, 'hello'), | |
| document.querySelector('#root') | |
| ) | |
| </script> |
| import Foundation | |
| import KeychainAccess //https://github.com/kishikawakatsumi/KeychainAccess | |
| import Firebase | |
| //Requires shared Keychain with the same group name | |
| class ApplicationBuilder { | |
| enum Target { | |
| case app |