HN user

pmccarren

288 karma

builder of things; thinker of thoughts

Posts22
Comments45
View on HN
app.echoapi.com 1y ago

Ultra-lightweight in browser Postman replacement

pmccarren
1pts0
status.aws.amazon.com 6y ago

AWS Experiencing Intermittent DNS Resolution Errors

pmccarren
147pts56
businessinsider.com 7y ago

$7B Slack has filed to go public

pmccarren
4pts0
www.engadget.com 7y ago

France bans smartphones in schools

pmccarren
3pts1
www.commerce.senate.gov 8y ago

Facebook Inc. Responds to Senate Inquiry [pdf]

pmccarren
3pts0
www.engadget.com 9y ago

Trump's website wanted to collect your location data

pmccarren
2pts0
news.ycombinator.com 9y ago

Does BackboneJS still have a place, or has React dominated?

pmccarren
1pts1
news.ycombinator.com 9y ago

Seems like the electoral college gives real estate property a vote

pmccarren
1pts0
medium.com 9y ago

Any developers still using the Escape key?

pmccarren
1pts0
twitter.com 9y ago

New World Hackers, responsible for the recent Dyn attack, has retired

pmccarren
2pts0
twitter.com 9y ago

The East Coast Attackers, 'New World Hackers', Have Resigned

pmccarren
2pts0
news.ycombinator.com 10y ago

Help name a Fiber ISP

pmccarren
4pts23
www.cnn.com 10y ago

Standoff over guns. John Lewis is an absolute hero

pmccarren
2pts1
www.engadget.com 10y ago

NASA spacecraft records magnetic explosions above Earth

pmccarren
2pts0
github.com 11y ago

Taill – tail the last file in a directory

pmccarren
1pts0
github.com 11y ago

Yahoo ServicePing

pmccarren
1pts0
www.ubuntu.com 11y ago

Ubuntu security vulnerabilities

pmccarren
4pts0
tls.so 11y ago

Google.com is still SHA-1 but they green-light their domains

pmccarren
35pts12
bitbucket.org 12y ago

BitBucket Maintenance

pmccarren
4pts1
status.github.com 12y ago

No GitHub Repo Access

pmccarren
12pts3
www.businessinsider.com 12y ago

Twitter is about to look exactly like Facbook

pmccarren
5pts1
www.nutshell.com 12y ago

LinkedOut?

pmccarren
8pts1

I too have been using sops for years, and agree -- dotenvx encryption seems very similar to sops.

I'd prefer an integration between dotevnx and sops where dotevnx handles the UX of public env and injection, while leveraging sops for secret management and retrieval. Additionally, being able to have multiple keys for different actors is important.

Having a single `.env.keys` file feels risky and error prone. dotenvx encourages adding your various env files, such as `.env.production`, to vcs, and you're one simple mistake away from committing your keyfile and having a bad day.

If sops is not to be integrated, dotenvx could take some inspiration where the main key is encrypted in the secrets file itself, and you can define multiple age key recipients, each of which can then decrypt the main key.

Yep, rather straight-forward. Little bit of iptables forwarding and you're all set:

  echo 1 > /proc/sys/net/ipv4/ip_forward
  iptables -A FORWARD -i eth0 -o wlan0 -j ACCEPT
  iptables -A FORWARD -i wlan0 -o eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
  iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
I'd recommend wireguard[0] in preference to openvpn.

refs: [0]https://www.wireguard.com/

Pure, unadulterated speculation:

It felt like the mRNA took hold in both my arm, _and_ my heart. Which given the proximity and paths between, is not entirely surprising.

It felt like the vaccine entered my bloodstream and was taken up, in part, by the heart. Which then started making spike protein and soliciting an immune response.

I'd really love to learn more about this, but haven't been able to find any good resources. If anyone can point me in the right direction, I'm all ears!

Anecdote: I too experienced this reaction, albeit after the first dose.

Noticeable but not significant heart pain beginning approximately 4 hours after getting the first vaccine.

Speaking with medical professionals, they said symptoms should improve with time, and they have nearly completely across the 1.5 months since.

Unsure if worth noting, but I had very strong immune responses to both the first and second doses.

I'm a huge fan of croc[0]. Very similar to Magic Wormhole, but a bit more flexible and written in go.

Straight from the README:

croc is a tool that allows any two computers to simply and securely transfer files and folders. AFAIK, croc is the only CLI file-transfer tool that does all of the following:

- allows any two computers to transfer data (using a relay)

- provides end-to-end encryption (using PAKE)

- enables easy cross-platform transfers (Windows, Linux, Mac)

- allows multiple file transfers

- allows resuming transfers that are interrupted

- local server or port-forwarding not needed

- ipv6-first with ipv4 fallback

- can use proxy, like tor

refs:

[0]https://github.com/schollz/croc

From my experience, most _independently_ owned cell phone retail stores (Verizon, Sprint, AT&T, etc) have several Cellebrite devices no site which are used daily to aid in device migration from old to new.

As I understand it, Cellebrite devices are not exactly hard to acquire.

Slack was down 6 years ago

I can drag it just fine with the 503 error displayed.. You do have to be a few pixels from the top window border, but it works great nonetheless.

How would one motivate these companies to _actually do something_ with the results of the audit? Perhaps, buried deep in the burrows of their bureaucratic empire, are several audit reports outlining this vulnerability..

I'm certainly not a fan of the new URI scheme, but it is worth pointing out that Safari has already made the same change. Furthermore I'm not convinced said change is a net-negative for the average consumer.

Safari added the setting "Show full website address", which does just that. I wouldn't have a problem if Chrome followed suit and defaulted to the new scheme, but gave us the option to show the full URI.

Let's optimize!

    #!/bin/bash
    db_set () {
         echo "$1,$2" >> database
    }
    db_get () {
         # read database line by line in reverse, stopping at first match
         tac database | grep -m 1 "^$1," | sed -e "s/^$1,//"
    }