HackerTrans
TopNewTrendsCommentsPastAskShowJobs

noveltyaccount

1,168 karmajoined 15 jaar geleden

comments

noveltyaccount
·5 dagen geleden·discuss
That demo code looks great -- please add a license :)
noveltyaccount
·12 dagen geleden·discuss
So osx is just a bootloader for Fedora?
noveltyaccount
·12 dagen geleden·discuss
I really wish Apple would fund a small team to open source some documentation and drivers to help Asahi along. I know they won't, but I can dream. It would be a drop in the bucket for Apple but would cement their hardware as de facto for silicon valley engineers (even more so than today).
noveltyaccount
·15 dagen geleden·discuss
I agree a block list won't work. And unix file permissions may not be enough; I once saw Codex 5.4 use docker to execute a command as root since it couldn't run sudo. Running in a container may be the only solution:

> sudo needs an interactive password here, so I'll use Docker itself to prepare the bind-mount directory as root and hand ownership back to UID/GID 1000. That keeps the compose file's non-root runtime intact.

> Ran `docker run --rm -v /shares:/shares alpine:3.20 sh -c 'mkdir -p /shares/local-llm/models && chown 1000:1000 /shar...`
noveltyaccount
·17 dagen geleden·discuss
I prompted Codex 5.5 to one shot something where I wanted the design to have a pluggable decision module. I gave it a few examples of the kinds of inputs and actions I expected. I did not constrain it beyond that high level of what I wanted. The design it came up with was very good. Easily on par with what any senior engineer at big tech would. And cleanly decoupled in a way that would make future refactoring simple. I was damn impressed.
noveltyaccount
·27 dagen geleden·discuss
I have read countless self help books where I complained about fluffy filler material and the book should have been fifty pages instead of two hundred. Not a surprise to me that a topic distilled through an LLM is a better experience.
noveltyaccount
·27 dagen geleden·discuss
From the recent Nvidia & Microsoft announcement about new chips for consumers:

> “Our goal is to deliver unmetered intelligence to every home and every desk with Windows,” said Satya Nadella, chairman and CEO of Microsoft. “RTX Spark marks a real breakthrough towards that vision.”

Makes me optimistic that those two companies are going to keep investing in quality local models.
noveltyaccount
·27 dagen geleden·discuss
I do this with Codex 5.5 for planning (specs, technical design, and task list); and Qwen 3.5-35B for task by task build out. It requires more hand holding and makes more mistakes than using Codex for everything, but it helps me spread my $20 chatGPT subscription pretty far.
noveltyaccount
·vorige maand·discuss
[dead]
noveltyaccount
·vorige maand·discuss
> “Our goal is to deliver unmetered intelligence to every home and every desk with Windows,” said Satya Nadella, chairman and CEO of Microsoft. “RTX Spark marks a real breakthrough towards that vision.”

I expect computers with this chip will be about $4000. If Microsoft can deliver on local AI models that can orchestrate Windows and have solid real world intelligence, that will be an inexpensive business purchase compared to pay as you go tokens. I'm excited to see how this plays out.
noveltyaccount
·2 maanden geleden·discuss
Same. I wish there was a good story for .NET UI on desktop, mobile, and web. I find Maui Blazor Hybrid to be pretty close. The desktop and mobile variants compile to a webview bound to native code (no WASM, no JS), and the Web variant compiled to WASM. Much leaner than Electron. Pretty clunky though last time I tried though that was three years ago.
noveltyaccount
·2 maanden geleden·discuss
Right now the demand for the code I produce is me :) Ideas I've always wanted to pursue but never had the time. Now I have the time.
noveltyaccount
·2 maanden geleden·discuss
I'm someone with 20 years in software and the last 10 in management. I have good instincts, good design pattern knowledge, and understand system design well. But my actual coding skills are rusty, I can do it but it takes a lot of time to RTFM because specific libraries and syntax aren't on the top of my mind.

With AI I can build. I'm having so much fun turning ideas into code. I can do a week's worth of work before lunch. I can ask AI to add comments so detailed that my code becomes a refresher tutorial.

It's so exciting to be able to bring my ideas to life, make use of my experience, and not be hobbled by my somewhat atrophied hands-on coding skills. I for one welcome this revolution.
noveltyaccount
·2 maanden geleden·discuss
This prompt defines the translation as a file for file, line for line port. Seems like historical knowledge will be fine.
noveltyaccount
·3 maanden geleden·discuss
I go for walks or runs--without headphones. If I listen to music or a podcast, my mind doesn't wander. I need that quiet for processing.
noveltyaccount
·3 maanden geleden·discuss
This is really interesting. I'm building something on Postgresql with LISTEN/NOTIFY and Postgraphile. I'd love to (in theory) be able to have a swappable backend and not be so tightly coupled to the database server.
noveltyaccount
·3 maanden geleden·discuss
As soon as you need to do a JOIN, you're either rewriting a database or replatforming on Sqlite.
noveltyaccount
·3 maanden geleden·discuss
Yes, and they have features like default soft delete with hard delete after x days that makes it a very compelling backup choice (guard against malware and mistakes). I'm a satisfied customer.
noveltyaccount
·3 maanden geleden·discuss
I started a project on Expo recently and my god, a thousand dependencies later, it was running.
noveltyaccount
·4 maanden geleden·discuss
I'm using it on a project now and have been very impressed. It really lives up to its goal of getting out of the way and automating the tedium. I think about my Postgresql schema, row level security, and let the magic give me a GQL API with websockets too.