HackerLangs
TopNewTrendsCommentsPastAskShowJobs

netcraft

2,313 karmajoined 13 anni fa


  Ryan Guill
  ryanguill+hn at gmail.com
  @ryanguill
  https://www.linkedin.com/in/ryan-guill-92034a1/

comments

netcraft
·ieri·discuss
this is exactly my question. I would expect that luna is analogous to mini before, but is terra equivalent/better than 5.5 and Sol is a step above? or is terra nerfed and 5.5 is analogous to sol?
netcraft
·2 mesi fa·discuss
Location: Memphis, TN

Remote: Yes (Only)

Willing to Relocate: No

https://ryanguill.com

https://www.linkedin.com/in/ryan-guill-92034a1/

CV: https://ryanguill.com/resume/

I am an experienced, driven, motivated engineer who is looking for high-agency, high-impact problems to solve. Bonus points for roles that are a positive impact on society.

Looking for remote roles in majority remote teams. I'm comfortable in startups and large corporations, I just want to ship fast on things that matter.

Postgres/Snowflake/DuckDB, Typescript, Python, AWS, Docker, LLMs and related tech - but I love learning new languages. I ask a lot of questions, and think in terms of processes and systems. I use and build agents and love a good SQL query.

email: [email protected]
netcraft
·3 mesi fa·discuss
huge if true had an episode about this recently https://www.youtube.com/watch?v=0HlLwG2xN_c
netcraft
·4 mesi fa·discuss
I think its understandable that you took that from the click-bait all over youtube and twitter, but I dont believe the research actually supports that at all, and neither does my experience.

You shouldnt put things in AGENTS.md that it could discover on its own, you shouldnt make it any larger than it has to be, but you should use it to tell it things it couldnt discover on its own, including basically a system prompt of instructions you want it to know about and always follow. You don't really have any other way to do those things besides telling it every time manually.
netcraft
·4 mesi fa·discuss
the day ends in y, water is wet. I really hate that github doesn't have any real competition. Yes, I know about gitlab, but it isnt real competition.
netcraft
·4 mesi fa·discuss
unfortunately im not in the same situation. I have a high incidence in my family, my calcium score wasn't clean (especially for someone my age) and my vo2max isnt the best either. Though my many stress tests have always been fine.

I don't think im in terrible shape right now, but looking ahead 10 to 20 years, without medical intervention I probably would be.
netcraft
·4 mesi fa·discuss
yes, changed to a stronger statin.
netcraft
·4 mesi fa·discuss
yes, changed to a stronger statin.
netcraft
·4 mesi fa·discuss
I have high cholesterol, have had for more than a decade. Was on a statin, they didnt help. Doubled them, they didnt help. Changed my diet radically, lost 25 lbs (I was a little overweight, but not bad), ate full medeteranian diet and did everything I could, my numbers didnt budge. Changed to a stronger one and within two weeks my numbers were perfect.

I believe for some of us its purely genetic.
netcraft
·5 mesi fa·discuss
agree completely. I used to be (and still would love to be) a process person, enjoying hand writing bulletproof artisanal code. Switching to startups many years ago gave me a whole new perspective, and its been interesting the struggle between writing code and shipping. Especially when you dont know how long the code you are writing will actually live. LLMs are fantastic in that space.
netcraft
·5 mesi fa·discuss
> Tenacity. It's so interesting to watch an agent relentlessly work at something. They never get tired, they never get demoralized, they just keep going and trying things where a person would have given up long ago to fight another day.

This is true to an extent for sure and they will go much longer than most engineers without getting "tired", but I've def seen both sonnet and opus give up multiple times. They've updated code to skip tests they couldn't get to pass, given up on bugs they couldn't track down, etc. I literally had it ask "could we work on something else and come back to this"
netcraft
·6 mesi fa·discuss
thats a very generous way of putting it. Anthropic's prompt caching is actively hostile and very difficult to implement properly.
netcraft
·6 mesi fa·discuss
I love duckdb, I use it as much as I can. I just wish that the support for node/bun was as good as python. And I wish that they would bundle it differently for node/bun - the way it is now it depends on a dynamic link to a library which means I cant bundle it into a bun executable.
netcraft
·6 mesi fa·discuss
I was also a bit skeptical, but chatgpt gave a pretty good answer I think: https://chatgpt.com/share/69553e26-ea28-8011-bc17-8658fbea4e...

Buildings with higher people/sqft could already take advantage of indoor co2 scrubbers today.
netcraft
·6 mesi fa·discuss
160F, non toxic, this already sounds like something that could feasibly be used in the home. I would already be interested in installing one. And would absolutely love to see what it would do to school performance.

The hard part is capture and disposal.
netcraft
·7 mesi fa·discuss
I think the reason python won was that it was easy to learn and read and was batteries included. vs perl: People need to solve their problems, not fight with syntax

Theres a lot of network effects as well. The more people were using it, the more people will use it.
netcraft
·7 mesi fa·discuss
better link: https://earthquake.usgs.gov/earthquakes/eventpage/us6000rtdt...
netcraft
·7 mesi fa·discuss
couldn't have said it better myself.

Data should be data, queryable, relational. So often I have had to change enums into lookup tables - or worse, duplicate them into lookup tables - because now we need other information attached to the values. Labels, descriptions, colors, etc.

My biggest recommendation though is that if you have a lookup table like this, make the value you would have made an enum not just unique, but _the primary key_. Now all the places that you would be putting an ID have the value just like they would with an enum, and oftentimes you wont need to join. The FK makes sure its valid. The other information is a join away if you need it.

I do wish though that there were more ways to denote certain tables as configuration data vs domain data, besides naming conventions or schemas.

Edit to add: I will say there is one places where I have begrudgingly used enums and thats where we have used something like prisma to get typescript types from the schema. It is useful to have types generated for these values. Of course you can do your own generation of those values based on data, but there is a fundamental difference there between "schema" and "data".
netcraft
·8 mesi fa·discuss
Very nice!

Did you consider making this a view instead? Just curious if there is a reason why you couldn't.
netcraft
·8 mesi fa·discuss
apparently I missed Simon Willison's article, this at least somewhat explains them: https://simonwillison.net/2025/Oct/16/claude-skills/

So if youre building your own agent, this would be a directory of markdown documents with headers that you tell the agent to scan so that its aware of them, and then if it thinks they could be useful it can choose to read all the instructions into its context? Is it any more than that?

I guess I dont understand how this isnt just RAG with an index you make the agent aware of?