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
| This custom Firebase server ('fblocal.com:9000') does not support delegated login. |
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
| [general] | |
| ui = TTY.TTYUI | |
| accounts = POD | |
| pythonfile=~/.mutt/offlineimap.py | |
| fsync = False | |
| [Account POD] | |
| localrepository = POD-Local | |
| remoterepository = POD-Remote | |
| status_backend = sqlite |
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
| ** SANDSTORM SUPERVISOR: Starting up grain. | |
| *** Uncaught exception *** | |
| sandstorm/supervisor.c++:1131: failed: seccomp_load(ctx): Invalid argument | |
| stack: 0x5c12ee 0x5c071e 0x5e8fc9 0x5e8fba 0x4a84cf |
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
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration." | |
| (setq-default | |
| ;; List of additional paths where to look for configuration layers. | |
| ;; Paths must have a trailing slash (i.e. `~/.mycontribs/') | |
| dotspacemacs-configuration-layer-path '() |
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
| ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC2PY8689oL6LLrOW8jIRphDaMpRzY+0nUC65BI5JtpP patrickod@odysseus |
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
| These are the notes from the [https://www.noisebridge.net/wiki/Category:Meeting_Notes The XXXth Meeting of Noisebridge]. Note-taker: Patrick, Alex; Moderators: Steve. | |
| * '''One or two bullet points of high-level meeting summary.''' | |
| = SPECIAL ANNOUNCEMENTS = | |
| [[Promotion]] and [[Fundraising]] working groups are looking for volunteers. | |
| = Introductions = | |
| * Frank: Communications software defined wireless. | |
| * Chuck |
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
| patrickod@nicias:~$ free -m | |
| total used free shared buffers cached | |
| Mem: 490 346 143 39 15 82 | |
| -/+ buffers/cache: 248 241 | |
| Swap: 0 0 0 |
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
| pub fn repeating_character_xor(a: &[u8], b: u8) -> Vec<u8> { | |
| return a.iter().map(|x| *x ^ b).collect(); | |
| } | |
| pub fn repeating_xor(a: &[u8], b: &[u8]) -> Vec<u8> { | |
| let cycle = b.iter(); | |
| return cycle.zip(a.iter()).map ( |(a, b)| *a ^ *b ).collect(); | |
| } |
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
| -----BEGIN PGP SIGNED MESSAGE----- | |
| Hash: SHA256 | |
| 9FA64B93 02F8CC1D A4169B65 64384186 C5883228 [email protected]/Gelo | |
| -----BEGIN PGP SIGNATURE----- | |
| Version: GnuPG v2 | |
| iQEcBAEBCAAGBQJWHrE8AAoJEDmK3FRpXKVGatgIAIpXCluvoad8UmSE3mcRIYbv | |
| YH20KvRbNfzvo9u7OTHejhdnu4MP4K3FnD7XWPTcAELeZiaiHS5D3PVhpVDvW+AR | |
| ncxfnwKarqKNvRB4AQwyQiYj4C0AAwmfir5xRQS2fE+sF6QI6EBMJ5n84oUJ/AXQ |
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
| -> % npm install | |
| | | |
| > [email protected] install /Users/patrickod/src/embercom/node_modules/broccoli-sass/node_modules/node-sass | |
| > node build.js | |
| (node) child_process: options.customFds option is deprecated. Use options.stdio instead. | |
| CXX(target) Release/obj.target/binding/binding.o | |
| In file included from ../binding.cpp:1: | |
| ../node_modules/nan/nan.h:189:68: error: too many arguments to function call, expected at most 2, have 4 | |
| return v8::Signature::New(v8::Isolate::GetCurrent(), receiver, argc, argv); |