This is surprisingly easy...basically following Arch Wiki:
https://wiki.archlinux.org/index.php/Howdy
After some investigation, here is step by step and preferences
This is surprisingly easy...basically following Arch Wiki:
https://wiki.archlinux.org/index.php/Howdy
After some investigation, here is step by step and preferences
| // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy | |
| const magicObj = new Proxy({}, { | |
| get: (obj, name) => { | |
| if (obj[name] === undefined) obj[name] = 1; | |
| else obj[name]++; | |
| return obj[name]; | |
| }, | |
| set: (obj, name, value) => { | |
| if (obj[name] === undefined) return Reflect.set(obj, name, value); // will explain below | |
| else return Reflect.set(obj, name, obj[name] + value); |
| const isBrowser = (function() { | |
| try { return !!window; } catch (_) { return false; } | |
| })(); | |
| if (isBrowser) { | |
| window.global = window; | |
| } | |
| const Event = isBrowser ? class extends window.Event { | |
| constructor(type, payload) { |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <style> | |
| body { | |
| margin: 0; | |
| height: 100vh; | |
| width: 100vw; |
nmcli device should have a new device with type: bt, copy the device name, i.e. AA:BB:CC:DD:EE:FFnmcli device connect AA:BB:CC:DD:EE:FFin KDE Plasma, connection should show up on system tray
2018/6/21
在 React, Vue 還不存在的時代,純粹透過 jQuery 或是 DOM API 撰寫 User interface ,不過問題就是 html, js 容易進入混亂的狀態,沒有元件的概念,不好模組化,所以許多人一直發(ㄔㄨㄥˊ)明(ㄗㄠˋ)工(ㄔㄜ)具(ㄌㄨㄣˊ)幫助開發
也有另一派人馬希望可以透過改善瀏覽器本身 API 來做到元件化開發,因此 WebComponent 的概念就出現了,WebComponent 包含了許多面向,我覺得最重要的部分是 Custom Elements
| [Desktop Entry] | |
| Version=1.0 | |
| Exec=python ~/.bin/iio-rotate.py | |
| Name=IIO rotate | |
| GenericName=IIO rotate | |
| Comment=IIO rotate | |
| Encoding=UTF-8 | |
| Terminal=true | |
| Type=Application | |
| Categories=Application;System; |
在 2021/4/30 更新給 google 到這邊的朋友們:
這篇很可能已經不能用,原作者也有更新導致下方連結失效,原作者 repo: https://github.com/chihchun/personal-income-tax-docker/
同時在筆者稍微了解此這邊的技術架構後,偏好讓 docker 只執行最小需要虛擬的部份,也就是只有健保卡元件 mLNHIICC,因為政府網站只有提供給 Ubuntu, Fedora 用的 binary,其他部份可以用原本 host 的軟體就用原本 host 的軟體,改成筆者的版本,有興趣的朋友也歡迎參考: