HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hpeter

no profile record

comments

hpeter
·2 yıl önce·discuss
I got this: Your boundary is at hue 173, greener than 57% of the population. For you, turquoise is blue.
hpeter
·2 yıl önce·discuss
So, how much slower is it than running js?
hpeter
·2 yıl önce·discuss
If you want security, use a secure OS. But it's not so easy, often decisions are made not to have the best technical solution, but to fulfill business agreements.
hpeter
·2 yıl önce·discuss
It only gets worse when the company that published their environment variables sues the security researchers for finding it. It happens.
hpeter
·2 yıl önce·discuss
It's an engineering challenge and they do solve a problem, it's just not your problem :) It's a nice read anyways.
hpeter
·2 yıl önce·discuss
You probably had to compile libsodium and build a shared object. That can take a long time. But the scripts that run when npm installing modules can contain malicious payload, yes.

I always try to find something that runs in web-assembly, but it's better to avoid nodejs altogether if you want high security. Go is much better for these kind of things overall.
hpeter
·2 yıl önce·discuss
Intel. Mainly for journalists about pedos or terrorists.

I'm not quite sure OPs approach is the best tho, serverless is just somebody else's server.

Better to use something like Onionshare and run it on a device on-premise then transfer the files to an air gapped device for decryption.
hpeter
·2 yıl önce·discuss
Sperm count might not be dropping but the behavioral sink we are in definitely causes men to have a reduced sex drive.
hpeter
·2 yıl önce·discuss
They could do an anti-institution hard fork, that adds a built in mixer that would be illegal for institutions to use.

Then the network will hard fork and we will have SETH (the sell-out ether) and regular good ole ETH.

It's up to Vitalik now to determine our fate , let's destroy em from the inside.

/sarcasm
hpeter
·2 yıl önce·discuss
It's not a move from the ecosystem, it's an attack against the ecosystem.

Contrary to BTC, ETH is not deflationary if it's not traded on chain. The deflation comes from the burn mechanism.

So concentrating ETH in ETFs would decrease the price over time due to inflation since the ETH is traded without transferring it.
hpeter
·2 yıl önce·discuss
"weak stdlib": You can use the Java ecosystem, most of the things you need are there

"it can be very hard to follow": I agree, if you are not a lisp developer it's really hard, but if you develop clojure everyday, it's as easy as anything else.

The answer is usually clean code when it comes to clojure. Keep your functions small.

"more memory intensive, and generally slower": yep, the JVM is more memory intensive than Go. No surprise there and Clojure adds up on top of that. Startup times are pretty slow too. But compared to python it's still fast. Apples to oranges.

I would say Clojure and Go are both great languages that tackle different problems so it's not a fair comparison.
hpeter
·2 yıl önce·discuss
It's not XSS if it's not cross-site.
hpeter
·2 yıl önce·discuss
same. I just noticed it too, about 30 minutes ago
hpeter
·2 yıl önce·discuss
Yeah, also the complete ruin of the internet. I don't want to read generated content. Feed that back to AI and you got a ruined internet and AI can't even learn anymore.
hpeter
·2 yıl önce·discuss
Yes because people are stupid and vulnerable and will believe things a computer tells them. They can make life decisions on chatGPT advice, instead of asking friends or family. Heck maybe they don't have family, vulnerable people like that can be exploited with convincing chatbots easily.
hpeter
·2 yıl önce·discuss
It depends on the size of the business.

For startups, subscriptions can stack up fast and it's the same as B2C, they can't afford it. Subscriptions are liabilities.

But for medium sized businesses or larger, it depends on how much value the tool provides but should be fine, especially if they can fire somebody now that a fancy AI does his job. Enterprise pricing is a thing for a reason.
hpeter
·2 yıl önce·discuss
A lot of people have tons of subscriptions already, I would go with usage based pricing. It's a deal breaker for me, if I need to add a monthly subscription for something I don't use a lot.

But the most important thing is to get the product right.
hpeter
·2 yıl önce·discuss
It happens sometimes. Just the other day a local TinyLlama instance started asking me questions. The chat memory was full of mostly nonsense and it asked me a completely random and simple question out of the blue. Did chatbots evolve a lot since he was created.

I think you can get models to "think" if you give them a goal in the system prompt, a memory of previous thoughts, and keep invoking them with cron
hpeter
·2 yıl önce·discuss
I can't wait to try it out, it sounds too good to be real.

It will be fully available in Eu with the GDPR compliance?
hpeter
·2 yıl önce·discuss
I often build project specific tooling, to generate code or just transform some data, but maybe someday I create a FOSS version I can share.

Stuff like parse some XML or JSON and output Go structs and functions and Typescript types and functions, HTML,React Components, SQL Tables, Stored functions, Pl/PGSQL.

Mostly to avoid writing boilerplate when I use the same data structures in the database, middleware, client. For simple CRUD apps, it works well. I use local KV to track changes so I don't have to rerun things I don't need.

But Deno is great for CLI reporting tools or Scheduled tasks, fetch and aggregate data.

I think of Deno as a little swiss army knife. It's a tool that got everything built in.

I use the Repl a lot, just for a specific task, get it done then move on.