HackerTrans
TopNewTrendsCommentsPastAskShowJobs

superjose

72 karmajoined 10 anni fa

Submissions

Ask HN: How Wiz grew so fast?

2 points·by superjose·8 mesi fa·0 comments

[untitled]

1 points·by superjose·10 mesi fa·0 comments

comments

superjose
·3 giorni fa·discuss
Agreed I think this is pretty solid especially since you get all the Cloudflare benefits like CDN from the get-go.
superjose
·21 giorni fa·discuss
Pretty cool tbh!!! Would have loved seeing the decoder code!!!

It's also pretty interesting to think how an attacker could exploit images on his behalf. Never thought that would be a way!!!

Thanks!
superjose
·2 mesi fa·discuss
The best was when the duplicated question was ranked higher on Google haha
superjose
·2 mesi fa·discuss
Thanks for the heads up! I'm using it self-hosted on a Hetzner VPS.

Apparently they also block certain ports. As soon as I route the traffic through Tailscale through the same VPS I can connect without issues (My phone was affected as well)
superjose
·2 mesi fa·discuss
1000% I got legit Cloudflare Workers Anycast IPs that I was using for websockets blocked.

I also got blocked from using RustDesk.

It's been crazy. As this happens intermittently. I had to set up a tailscale exit node in one of my servers to circumvent this crap. I lost several days and called Vodafone (ISP) to understand what was going on.

That's when I read Reddit and saw that crap.
superjose
·5 mesi fa·discuss
I discovered it 1 week ago.

I don't know why I never tried this in the past! SSHing my machine and vice-versa!

Just figured out that I could use my computer's terminal to send to my android's clipboard via SSH.

Pair it with Tailscale and we have a beast!
superjose
·6 mesi fa·discuss
Yeah. I also like Windows, but MS has done a wonderful job to destroy the OS with newer releases.

I haven't had to tweak an OS like Win 11 ever.
superjose
·6 mesi fa·discuss
Same thoughts exactly.
superjose
·7 mesi fa·discuss
Datastar has been garnering my attention https://data-star.dev/
superjose
·8 mesi fa·discuss
I can see this.

I learned from a friend to use Zod to check for process.env. I refined it a bit and got:

```

const EnvSchema = z.object({

  NODE_ENV: z.enum(['development', 'production', 'staging']),

  DATABASE_URL: z.string(),

  POSTHOG_KEY: z.string(),
});

export type AlertDownEnv = z.infer<typeof EnvSchema>;

export function getEnvironments(env: Record<string, string>): AlertDownEnv { return EnvSchema.parse(env); }

```

Then you can:

```

const env = getEnvironments(process.env);

```

`env` will be fully typed!

Definitely, I need to do some improvements in my frontend logic!
superjose
·8 mesi fa·discuss
Just went and bought it!

I'm in a process where application-level programming isn't cutting it anymore (I still have a lot to learn, but it's in the diminishing returns).

I've been looking to understand the entire stack at a deeper level (from how requests are made to how they're parsed), and this seems like the next natural step!

Thanks a bunch!
superjose
·9 mesi fa·discuss
Love Vivaldi! It has improved significantly over the years! I use it in tandem with Firefox.

I love to have thumbnail tabs!
superjose
·9 mesi fa·discuss
I think they need to respond to all the funds they've raised and need to generate money somehow beyond subscriptions.
superjose
·9 mesi fa·discuss
https://alt-tab-macos.netlify.app/