HackerTrans
TopNewTrendsCommentsPastAskShowJobs

nmalaguti

no profile record

comments

nmalaguti
·vor 3 Jahren·discuss
> Kill Firefox before they could kill HTML Imports

I’m not sure I understand the hostility here. Isn’t the point of the web to be open standards that reach consensus?
nmalaguti
·vor 3 Jahren·discuss
Box can do it with

https://github.com/cdgriffith/Box/wiki/Types-of-Boxes#defaul...
nmalaguti
·vor 3 Jahren·discuss
This seems similar to the functionality exposed by Box.

https://github.com/cdgriffith/Box/wiki/Types-of-Boxes#defaul...
nmalaguti
·vor 3 Jahren·discuss
The author gives some fd comparisons in their benchmarks.
nmalaguti
·vor 3 Jahren·discuss
I tried bowling like this when I was a teen, trying to get massive spin on the ball. I never got to a point where I could be consistent with spin and went back to using my thumb. Seeing a pro do it (and be successful) might have encouraged me to keep trying it.
nmalaguti
·vor 3 Jahren·discuss
Why not let the market sort it out? Maybe these startups need to take a down round, or be acquired for a fraction of their value?

Maybe the VCs should step in and make bridge loans available if they want to keep their investments? If you believe in your portfolio, why not help them weather the storm? Or are you afraid to be exposed to additional risk? Should the taxpayers take on that risk instead?
nmalaguti
·vor 4 Jahren·discuss
I believe the worst thing you can be is a hypocrite. We can disagree about value systems, but if you don’t practice what you preach then I have no reason to respect you.

I don’t care if Twitter decides to allow this kind of information or not, but don’t claim safety and then disregard the safety of others. Don’t claim free speech and then silence speech you don’t like.

Elon is clearly doing what’s best for Elon, and that’s fine too. But I won’t tolerate him pretending he’s doing anything other than putting himself first. And I’ll make my own choices based on that. If I think my interests align with his, I should stick with him. But practically none of our interests align. We don’t share any common problems.

Elon doesn’t think he needs me or anyone else (and he has so much wealth he really doesn’t). I wouldn’t count myself lucky to be in the same lifeboat as him on the off chance he decides I’m dead weight and tosses me overboard.
nmalaguti
·vor 4 Jahren·discuss
The lack of empathy in the comments here is worrisome. The manager was clearly failing to manage effectively. Blaming the engineer for not managing up with a manager who didn’t want to listen doesn’t make sense.

This scenario is my biggest fear as a people leader - that ICs are being mismanaged and I won’t be able to see it or intervene before it is too late.
nmalaguti
·vor 4 Jahren·discuss
My theory is that there’s already a lot of existing content using $ and $$ that GitHub wants to start rendering without requiring any changes.

I agree the code block approach would be less ambiguous, but there is an advantage in going where people already are.
nmalaguti
·vor 4 Jahren·discuss
No. This is a very simple and reasonably efficient image format. It is notable for its simplicity and straightforward implementation, as well as its speed compared with png.
nmalaguti
·vor 4 Jahren·discuss
While this is nice in a lot of ways, it also can make it harder for your callers to use more dynamic patterns. You can no longer call it with

    process_data(**kwargs)
and have the data field pulled out of kwargs. Of course you can still do

    data = kwargs.pop(“data”)
    process_data(data, **kwargs)
but if you are the only library doing it, it can cause things to break when it breaks programmers expectations.