HackerTrans
TopNewTrendsCommentsPastAskShowJobs

craig

no profile record

Submissions

Show HN:Playing Checkers with Local LLMs

github.com
4 points·by craig·2 वर्ष पहले·0 comments

Google podcasts is shutting down

support.google.com
99 points·by craig·3 वर्ष पहले·139 comments

Hide console logging for passing tests and show it for failures with node:test

craigmulligan.com
2 points·by craig·3 वर्ष पहले·0 comments

Show HN: An Augmented Reality Brainfuck Interpreter

craigmulligan.com
1 points·by craig·3 वर्ष पहले·0 comments

comments

craig
·2 वर्ष पहले·discuss
I'm assuming they mean founders@<their-domain.com>.
craig
·2 वर्ष पहले·discuss
I love that someone is actively working on components in the python space. Coming back to python after years in the js ecosystem I've found templates really cumbersome to work with, especially not having type system support. I know there have been some attempts at JSX in python over the years but those projects all seem dead.

My advice to the OP, is to break out the component piece of the framework into a standalone lib that other frameworks can use. I think it'll be much easier to gain adoption that way.
craig
·2 वर्ष पहले·discuss
Sure! https://github.com/craigmulligan/standup
craig
·2 वर्ष पहले·discuss
In the agile/scrum world people often do a daily "standup" meeting where you go over what you did yesterday and plan on doing today.

Many of the teams I've worked with recently have moved to doing this async with a "standup" message in slack etc.
craig
·2 वर्ष पहले·discuss
I recently built a cli called "standup" which given a git sha, will pass the diffs + commit messages to an LLM and produce a standup message.

I still edit it a little but it saves time and means I never forget about stuff unless ofc it's not tracked by git.
craig
·2 वर्ष पहले·discuss
I've found it's autocomplete really bad. It often hallucinates import paths and other illegal operations. It's not clear to me why it can't leverage the LSP better.
craig
·3 वर्ष पहले·discuss
> Warning – I’m going to rant for many, many paragraphs. My advice is to skim

I had a good chuckle at this.
craig
·3 वर्ष पहले·discuss
I just moved to the USA from Europe and have found sms/mms to be annoying. I'm consistently missing texts especially mms. Maybe my settings are slightly off or the payload is exceeding MMS size limits but it's way less reliable than Whatsapp. Everyone seems to use iPhones so they don't hit this issue until they text an android user like me.
craig
·3 वर्ष पहले·discuss
I've been building up a vintage Fuji and have been using Sheldon's site to find data on old standards. It's been incredibly useful. On a similar note I've also used https://www.disraeligears.co.uk/site/home.html to look up derailleur specifics there is a lot of info there.
craig
·3 वर्ष पहले·discuss
Might be a silly question but how does one know this is the legit rule set and not gpt generating a believably fake one?
craig
·3 वर्ष पहले·discuss
I had a quick look at the code to understand what (sort of) meant. It's appending to a file and then reading it back and looking for the key line by line so it's O(n). I'm not sure about redis internals but I imagine its using some search tree for saving to disk which will likely be O(log n). So in a benchmark with more data redis should win by exponential margins. Ofc if you are only storing 100s of keys then this is a good approach.