updatebucketobjectmetadata-put-loginbucketsbucket_nameobjectsobject_namemetadata
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
| #!/usr/bin/env bash | |
| # | |
| # svcs wrapper for services with processes | |
| # | |
| # Author: Dave Eddy <dave@daveeddy.com> | |
| # Date: January 12, 2020 | |
| # License: MIT | |
| red=$(tput setaf 1 2>/dev/null) | |
| green=$(tput setaf 2 2>/dev/null) |
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
| $ uname -a | |
| Linux temple 5.4.8_1 #1 SMP PREEMPT Sun Jan 5 18:00:07 UTC 2020 x86_64 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
| [ Nov 15 22:10:30 Executing start method ("node --abort-on-uncaught-exception main.js -f etc/config.json -i 9084 -p 8084 &"). ] | |
| [ Nov 15 22:10:59 Method "start" exited with status 0. ] | |
| {"name":"muskie","hostname":"1caf2114-99a7-4731-acd9-4541dd007ef7","pid":5778,"level":30,"msg":"monitoring server started on port 8884","time":"2019-11-15T22:11:03.309Z","v":0} | |
| {"name":"muskie","hostname":"1caf2114-99a7-4731-acd9-4541dd007ef7","pid":5778,"component":"CueBallDNSResolver","domain":"nameservice.virtual.example.com","level":40,"err":{"message":"failed to find any DNS records for (_dns._udp.)nameservice.virtual.example.com: IPv4 (A) lookup for \"nameservice.virtual.example.com\" failed: first of 4 errors: DNS request for \"nameservice.virtual.example.com\" timed out [10.77.77.21]","name":"VError","stack":"VError: failed to find any DNS records for (_dns._udp.)nameservice.virtual.example.com: IPv4 (A) lookup for \"nameservice.virtual.example.com\" failed: first of 4 errors: DNS request for \"nameservice.virtual.examp |
I'm able to get a Void Linux image (32bit, raspberry pi 2 image) to boot on the
raspberry pi 4. Currently, I can get it to boot and even handle upgrading via
xbps-install -Su (networked over ethernet), however I can't seem to get it to
see the internal wlan (wifi) device.
huge shout out to kodifies on this reddit post for helping me to get this going.
I hereby claim:
- I am bahamas10 on github.
- I am bahamas10 (https://keybase.io/bahamas10) on keybase.
- I have a public key ASDnJrNJMb_26QeOEbs3L5T6UzvfiydS7B8rDmpywgrpSAo
To claim this, I am signing this object:
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
| #!/usr/bin/env bash | |
| function manta { | |
| local alg=ecdsa-sha256 | |
| local keyId=/$MANTA_USER/keys/$MANTA_KEY_ID | |
| local now=$(date -u "+%a, %d %h %Y %H:%M:%S GMT") | |
| local sig=$(echo "date: $now" | \ | |
| tr -d '\n' | \ | |
| ~/dev/buckets/node-sshpk-agent/sign) |
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
| $ cargo test | |
| Finished dev [unoptimized + debuginfo] target(s) in 0.18s | |
| Running target/debug/deps/boray-c56305a7353459ad | |
| running 18 tests | |
| test bucket::test::prop_bucket_response_to_json ... ok | |
| test bucket::create::test::prop_create_bucket_payload_roundtrip ... ok | |
| test bucket::test::prop_get_bucket_payload_roundtrip ... ok | |
| test bucket::list::test::prop_list_bucket_payload_roundtrip ... ok | |
| test bucket::create::test::prop_createbucket_payload_from_json ... ok |
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
| var http = require('http'); | |
| var host = '0.0.0.0'; | |
| var port = 8080; | |
| var server = http.createServer(onrequest); | |
| server.listen(port, host, listening); | |
| function listening() { |
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
| #!/usr/bin/env node | |
| /* | |
| * Check an mqtt server by doing a pub/sub | |
| * | |
| * Author: Dave Eddy <dave@daveeddy.com> | |
| * Date: July 13, 2018 | |
| * License: MIT | |
| */ | |
| var getopt = require('posix-getopt'); |