HackerTrans
TopNewTrendsCommentsPastAskShowJobs

skinner927

no profile record

comments

skinner927
·2 месяца назад·discuss
Claude does well if you can provide all dimensions. It fails at guessing though. The real magic is when you can provide one dimension or photograph with a ruler in it and the AI will figure the rest out. Right now, Claude anyways, is pretty bad at guessing.
skinner927
·2 месяца назад·discuss
Do you care about uptime and security?
skinner927
·3 месяца назад·discuss
You can use “Hide Distracting Items” feature on iOS Safari to delete the box.
skinner927
·3 месяца назад·discuss
- fix - fix fr - fix frfr - plz - omg why - never gonna give you up - never gonna let you down - add missing curly braces
skinner927
·3 месяца назад·discuss
Edit: egg on my face. The article’s author suggested the same service. Heh. Anyways…

I highly recommend a service like SimpleLogin. It allows for dynamic wildcards:

- [email protected] - [email protected] - @my.domain

All gets fwd to my real email and I can kill any address from my email client by unsubscribing (or login to the SimpleLogin interface)

You can go further and use subdomains or pattern matching to send things to different addresses like your spouse and friends. e.g.

-
@friend.my.domain -> [email protected] - *@spouse.my.domain -> [email protected]

Not affiliated, just really happy with the service
skinner927
·3 месяца назад·discuss
You don’t need a VM. Do what Netbird does. Compile wireguard-go to WASM and you’re g2g

https://docs.netbird.io/about-netbird/browser-client-archite...
skinner927
·5 месяцев назад·discuss
BIND 9, for starters

https://datatracker.ietf.org/doc/html/rfc2136
skinner927
·5 месяцев назад·discuss
tinc is cool. Keep using it.
skinner927
·5 месяцев назад·discuss
Eagerly awaiting a demo video
skinner927
·6 месяцев назад·discuss
Look up Ralph
skinner927
·6 месяцев назад·discuss
The Form is $199, not $300. So, smaller gamble but it sure looks like a gamble.
skinner927
·6 месяцев назад·discuss
Children ages 4-7.

They also believe a fat man dressed in red zips around the earth one night to give everyone presents.

They’re children. They don’t need to know where bacon and hot dogs come from.

I doubt those children care about anything outside their bubble.
skinner927
·6 месяцев назад·discuss
We still playing Pokémon go?
skinner927
·8 месяцев назад·discuss
Thankfully k8s is not overengineered or you’d have pie on your face.
skinner927
·8 месяцев назад·discuss
You’ll never learn it by reading something. You have to experience it. Get your hands dirty.

Write a simple single-threaded http server that takes strings and hashes them with something slow like bcrypt with a high cost value (or, just sleep before returning).

Write some integration tests (doesn’t have to be fancy) that hammer the server with 10, 100, 1000 requests.

Time how performant (or not performant) the bank of requests are.

Now try to write a threaded server where every request spins up a new thread.

What’s the performance like? (Hint: learn about the global interpreter lock (GIL))

Hmm, maybe you’re creating too many threads? Learn about thread pools and why they’re better for constraining resources.

Is performance better? Try a multiprocessing.Pool instead to defeat the GIL.

Want to try async? Do the same thing! But because the whole point of async is to do as much work on one thread with no idle time, and something like bcrypt is designed to hog the CPU, you’ll want to replace bcrypt with an await asyncio.sleep() to simulate something like a slow network request. If you wanted to use bcrypt in an async function, you’ll definitely want to delegate that work to a multiprocessing.Pool. Try that next.

Learning can be that simple. Read the docs for Thread, multiprocessing, and asyncio. Python docs are usually not very long winded and most importantly they’re more correct than some random person vibe blogging.
skinner927
·8 месяцев назад·discuss
I think this is a better example of what, I imagine, the author was trying to illustrate.
skinner927
·8 месяцев назад·discuss
I appreciate the reply. It does feel like most resources online are just the summary of 3 web searches and boom they’re an expert. Thanks for the links and info.
skinner927
·8 месяцев назад·discuss
Is that webapp shared anywhere? I can’t find a link in the article.
skinner927
·8 месяцев назад·discuss
You seem to know what you’re talking about. Could you recommend any devices that fit the requirements you outlined?
skinner927
·9 месяцев назад·discuss
You’re about to run an untrusted python script. The script can do whatever it wants to your system. Dependencies are the least of your worries.