HackerTrans
TopNewTrendsCommentsPastAskShowJobs

dazhbog

1,037 karmajoined 11년 전
Pycno IoT sensors https://pycno.co

IoT modular gateway https://deeporbital.com

dazhbog (at) pycno [dot] co

Submissions

Bill banning people born after 2008 from buying tobacco clears UK parliament

theguardian.com
21 points·by dazhbog·3개월 전·9 comments

Do You Need a CMS?

joost.blog
1 points·by dazhbog·3개월 전·0 comments

SHA2 Fatal Flaw? (Hash Length Extension Attack) [video]

youtube.com
3 points·by dazhbog·10개월 전·0 comments

Robots race in Chinese half marathon

bbc.com
6 points·by dazhbog·작년·0 comments

Google's Titans Give AI Human-Like Memory

forbes.com
2 points·by dazhbog·작년·0 comments

BambuLab new firmware to cut access to third-party API and tools

github.com
61 points·by dazhbog·작년·17 comments

comments

dazhbog
·7일 전·discuss
So a managed database provider doing comparisons of hosting databases.. what could go wrong..
dazhbog
·16일 전·discuss
You should always be getting a second or third opinion from real doctors for matters like surgeries, radiology, etc.

One doctor diagnosis + LLM is gonna throw you off. You need more datapoints.
dazhbog
·지난달·discuss
Agree, but their prices are still bad.. I use Rpi vs. Rockchip/Allwinner, etc. on commercial products. Rpi software is a bit better but after the chip shortage their prices have been artificially inflated..
dazhbog
·지난달·discuss
I got an i5 Thinkpad T480 for 100usd.. Rpi is a joke
dazhbog
·2개월 전·discuss
Im sure its also negative for WebBLE but we are hoping that one day we can have it on Firefox too.. We use WebBLE for talking and programming NRF52 chips and it works great compared to plugging a wire every time.
dazhbog
·2개월 전·discuss
They are ok, put them into production for around 250units. Was very excited about them, but plugging and unplugging is not as graceful, and sometimes you stab yourself with their sharp pins. I'm going back to mounting a usb-c connector on the pcb me thinks.
dazhbog
·2개월 전·discuss
I cannot count how many PCBs I did with various quick connect ideas to have a fast way to debug..

- Chop a PCI connector and have edge fingers on the PCB

- Skedd connectors

- Micro usb with a toggle switch or solder blob to switch between SWD/UART or USB

- Low profile usb-c and have D+/- as normal, and RX/TX over the accessory pins (like audio)

- Pogo pin clips

- GH1.25 connectors

- Tag-connect meh

- If thickness of pcb allows, your PCB can plug directly into a USB-A port (Thicc pcb) or if its too thin, it can plug into a male usb-c connector from a charger cable(might bend some pins though)

etc. etc.

So just like the author, anything but Dupont connectors ;)
dazhbog
·3개월 전·discuss
Yay, let's burn the planet computing more slopium..
dazhbog
·3개월 전·discuss
Looks interesting but cant take it seriously when there are so many red flags of LLM style writing. The author continues to use AI to even reply to comments in this thread. (its not X its Y, Em Dashes, etc.)
dazhbog
·5개월 전·discuss
I dont get the hype.. And I dont think we will reach peak AI coding performance any time soon.

Yes, watching an LLM spit out lots of code is for sure mesmerizing. Small tasks usually work ok, code kinda compiles, so for some scenarios it can work out.. BUT anyone serious about software development can see how piece of CRAP the code is.

LLMs are great tools overall, great to bounce ideas, great to get shit done. If you have a side project and no time, awesome.. If your boss/company has a shitty culture and you just want to get the task done, great. Got a mundane coding task, hate coding, or your code wont run in a critical environment? please, LLM that shit over 9000..

Remember though, an LLM is just a predictor, a noisy, glorified text predictor. Only when AI reaches a point of not optimizing for short term gains and has built-in long term memory architecture (similar to humans) AND can produce some linux kernel level code and size, then we can talk..
dazhbog
·9개월 전·discuss
"I picked up breakout boards from Amazon for $2.97 if you buy four, and I very much think these are made with the $0.60 parts from LCSC or similar."

There you are. Assumptions. Nothing to do with LCSC.
dazhbog
·9개월 전·discuss
Digikey's markup is the issue.. most people in Asia buy from lcsc or agents, that can get parts 2-10 times cheaper.. In this case both parts are genuine just different batch/year/production location probably..
dazhbog
·9개월 전·discuss
Is this THE Adam Dunkels? Nice to see him on the front page! He made protothreads, uIP/lwIP, contiki.. wizard material basically
dazhbog
·11개월 전·discuss
Here's a video of the creator explaining more

https://www.youtube.com/watch?v=OUiTBFDxwaM
dazhbog
·11개월 전·discuss
Why not use chacha20 or xtea for embedded devices? They are lighter than AES..
dazhbog
·작년·discuss
So just to get this straight, Qualcomm has a piece of custom silicon, as a peripheral controlled by registers, that when enabled reroutes the ARMs USB pins through it (adding a USB hub in the middle), and on that hub it adds a SWD programmer and a serial port that connect back to the ARM core's IOs? Amazing!
dazhbog
·작년·discuss
Management or marketing needs "Windows" to be the first word when people write articles about it..
dazhbog
·작년·discuss
When it comes to serialization or sending data over the wire (non http), I prefer relaxed json (no quotes on keys e.g. {a:1,b:"hi"} ).

It keeps the message readable and it can be re-assembled on the server. That is if MessagePack or CBOR are not an option.