Hacker Newsnew | past | comments | ask | show | jobs | submit | stared's commentslogin

If you want to explore the ecosystem of Claude Code plugins, see https://claude-plugins.dev/

With a fair disclaimer, that it is very easy to vibe-code a skill oneself, with both pros (you can create one just for you!) and cons (if you look online, these are of any quality, quite a few with some hard-coded versions or practices).


Depending what you want to do, what's your workflow, and everything. Personally, I use a mixture of Claude Code and Cursors - vide https://quesma.com/blog/claude-skills-not-antigravity/

Do you mean "money is not an issue, what else would you do" or "AI has automated tech, what other job would you pick now" or "had you made different life choices 20 years ago..."?

I think it is precisely why Rust is gold - you can pick the abstraction level you work at. I used it a lot when simulating quantum physics - on one hand, needed to implement low-level numerical operations with custom data structures (to squeeze as much performance as possible), on the other - be able to write and debug it easily.

It is similar to PyTorch (which I also like), where you can add two tensors by hand, or have your whole network as a single nn.Module.


Yes! I was raving about Claude Skills a few days ago (vide https://quesma.com/blog/claude-skills-not-antigravity/), and excited they come to Codex as well!

Thanks for that! You mentioned Antigravity seemed slow, I just started playing with it too (but not really given it a good go yet to really evaluate) but I had the model set to Gemini Flash, maybe you get a speed up if you do that?

My motivation was to use the smartest model available (overall, not only from Google) - I wanted to squeeze more out of Gemini 3 Pro that in Cursor. With new model releases usually there are things with outages. This are ever changing.

That said, for many tasks (summaries and data extraction) I do use Gemini 2.5 Flash, as it cheap and fast. So excited to try Gemini 3 Flash as well.


If you want to combine Claude Code coding with reasoning, it is easy to do it with a plugin - https://github.com/stared/gemini-claude-skills, wrote for myself, but shared in case anyone wants. Somehow bigger context here: https://quesma.com/blog/claude-skills-not-antigravity/.

> Intuition fails because normal people think of a building as a building, when in the majority of cases, a building is not a building but a financial product. Behavior that makes no sense for a building can make perfect sense for a financial product.

And it is precisely why a lot of people hate capitalism.

Adam Smith himself would would disapprove: "As soon as the land of any country has all become private property, the landlords, like all other men, love to reap where they never sowed, and demand a rent even for its natural produce."


Game theory is also a model, with concrete assumptions, which are not universally followed.

It is not a physics theory, that works regardless of our will.


On the contrary, I think that well-designed general-purpose languages beat domain-specific languages. Even in the example given, in NumPy you can use np.array, but to make a fair comparison, use np.matrix.

  import numpy as np
  
  X = np.matrix([1, 2, 3])
  Y = np.matrix([[1, 2, 3],
                 [4, 5, 6],
                 [7, 8, 9]])
  
  Z = Y * X.T
  W = np.hstack([Z, Z])
That way, we can extend our languages. If np.matrix is "too many keystrokes", it can be imported as M, or similar.

X.T is as readable as X' - but on top of that, also extensible. If we want to add other operations, we can do so. Especially since transpose is a very limited operation: it only makes sense for vectors and matrices. In much of numerics (quantum physics, deep learning, etc.), we often work with tensors. For example, within matrix notation, I would expect [Z, Z] to create a tensor, not concatenate matrices.

To make it clear, I agree with the main premise that it is important to make math readable, and thus easy to read and debug. Otherwise, it is one of the worst places for errors (numbers in, numbers out).

When it comes to matrix notation, I prefer PyTorch over NumPy, as it makes it easy to go from math on a whiteboard to executable code (see https://github.com/stared/thinking-in-tensors-writing-in-pyt...).

Also, for rather advanced custom numerics in quantum computing, I used Rust. To my surprise, not only was it fast, but thanks to macros, it was also succinct.


In Julia:

  X = [1 2 3]
  Y = [1 2 3;
       4 5 6;
       7 8 9]

  Z = Y * X'
  W = hcat(Z, Z)

It's been long since I've heard of Julia. It seems it has hard times picking up steam... Any news ? (yeah, I check the releases and the juliabloggers site)

Yeah, it didn’t have the explosive success that rust had. Most probably due to a mixture of factors, like the niche/academic background and not being really a language to look at if you didn’t do numerc computing (at the beginning) and therefore out of the mouth of many developers on the internet. And also some aspects of the language being a bit undercooked. But, there’s a but, it is nonetheless growing, as you probably know having read the releases, the new big thing is the introduction of AOT compilaton. But there’s even more stuff cooking now, strict mode for having harder static guaratees at compile time, language syntax evolution mechanisms (think rust editions), cancellation and more stuff I can’t recall at the moment. Julia is an incredibly ambitious project (one might say too ambitious) and it shows both in the fact that the polish is still not there after all this time, but it is also starting to flex its muscles. The speed is real, and the development cycle is something that really spoiled me at this point.

more or less my experience too. But I'd like it to succeed. Fortran is now the COBOL of science. I'll continue to follow it closely.

I find the original post confused. What it has to with code? Why putting the US as "the West"? Why the Eastern void is bad? (Oftentimes it's the Western void which is oblivion, Eastern which is nirvana.)

In Polish, 'niezły' (literally 'not bad') means 'very good'. Even in English there are many such things, e.g. 'indestructible', 'immortal'.

When it comes to labels on food there is "no preservatives" or similar. It even has its parodies, e.g. "asbestos-free oat cereal" (https://xkcd.com/641/).


> Why putting the US as "the West"?

This line of thought seems to be extremely common among Americans, and honestly it is quite annoying for the rest of us.


True, but on the other hand they always give themselves away so it's very easy to spot and adjust expectations.

I found this article and discussion valuable anyway.

I would also encourage you to stop using "Americans" as synonymous to "US:er", there are many countries, cultures and peoples in the American continents that are not from the USA and quite a few that geographically exist within it too.

By pointing out that they are US:ers we can help each other to remind ourselves and them that they are not in fact the only version of human that exist.


Fair enough. I am Spanish, so I am very much aware of the situation, I have plenty of friends and acquaintances from LATAM xD.

If I am speaking Spanish I would say "estadounidense" or "gringo" depending on my mood, but I have yet to find a satisfying word in English...


Gringo works in en_US too and imo conveys the feeling we seem to share quite well.

I'll try it out for a bit and see how it feels.

US:er is kinda clunky.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: