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
| import "babel-polyfill"; | |
| var openpgp = require('openpgp'); // use as CommonJS, AMD, ES6 module or via window.openpgp | |
| const query = query => document.querySelector(query); | |
| const queryAll = query => Array.prototype.slice.apply(document.querySelectorAll(query)); | |
| const pub_key = | |
| ['-----BEGIN PGP PUBLIC KEY BLOCK-----', | |
| 'Version: GnuPG v2.0.22 (GNU/Linux)', |
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
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| ) | |
| func flatten(s []interface{}) (r []int) { | |
| // type switch already discussed in the tour of go | |
| for _, item := range s { |
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
| oznt@gentoo-elli ~ $ gio mount -l | |
| Drive(0): TS1TMTE220S | |
| Type: GProxyDrive (GProxyVolumeMonitorUDisks2) | |
| Drive(1): SanDisk Ultra II 480GB | |
| Type: GProxyDrive (GProxyVolumeMonitorUDisks2) | |
| Volume(0): 479 GB Encrypted | |
| Type: GProxyVolume (GProxyVolumeMonitorUDisks2) | |
| Volume(1): 767 MB Volume | |
| Type: GProxyVolume (GProxyVolumeMonitorUDisks2) | |
| oznt@gentoo-elli ~ $ |
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
| -- Read the docs: https://www.lunarvim.org/docs/configuration | |
| -- Example configs: https://github.com/LunarVim/starter.lvim | |
| -- Video Tutorials: https://www.youtube.com/watch?v=sFA9kX-Ud_c&list=PLhoH5vyxr6QqGu0i7tt_XoVK9v-KvZ3m6 | |
| -- Forum: https://www.reddit.com/r/lunarvim/ | |
| -- Discord: https://discord.com/invite/Xb9B4Ny | |
| -- | |
| lvim.plugins = { | |
| { "lunarvim/colorschemes" }, | |
| { "HiPhish/rainbow-delimiters.nvim" } | |
| } |
OlderNewer