HackerTrans
TopNewTrendsCommentsPastAskShowJobs

publicmail

no profile record

comments

publicmail
·قبل 4 أشهر·discuss
A thunderbolt cable
publicmail
·قبل 5 أشهر·discuss
This is also why a lot of car bumpers have the make/model/logo impressed into the mold itself
publicmail
·قبل 9 أشهر·discuss
I would expect power consumption to be fairly consistent for something like a surveillance camera that emits a stream 24/7.
publicmail
·قبل 10 أشهر·discuss
RDMA offers that. The NIC can directly access user space buffers. It does require that the buffers are “registered” first but applications usually aim to do that once up front.
publicmail
·قبل 11 شهرًا·discuss
Can’t speak for others, but AVRs usually have excellent documentation IMO. I’ve even seen code snippets for peripherals.
publicmail
·السنة الماضية·discuss
Maybe a dumb question but how do non x86 boards normally boot Linux images in a generic way? When I was in the embedded space, our boards all relied on very specific device tree blobs. Is the same strategy used for these or does it use ACPI or something?
publicmail
·السنة الماضية·discuss
I like to rinse the plates off to remove larger food debris prior to putting them into the dishwasher. It’s not always necessary though.
publicmail
·السنة الماضية·discuss
Actually no - I forgot about my Bosch dishwasher that uses capacitive touch buttons. Great idea for something that is often touched with wet fingers…
publicmail
·السنة الماضية·discuss
My favorite is my Bosh wall oven that uses 85C rated capacitors with practically no voltage derating for the control board that sits directly at the top of the oven. After 4 years, they gave out causing the display to dim to the point of invisibility.

We’re talking about 50 cents of part savings on a $3000+ appliance here.

Replaced them myself easily, but most people will end up having to call for service and end up replacing the entire board for hundreds of dollars minimum.
publicmail
·قبل سنتين·discuss
Early (2003 for sure) 350z had it as well.
publicmail
·قبل سنتين·discuss
Yep. That’s actually the first clue that I’m dealing with a race condition/concurrency issue.
publicmail
·قبل سنتين·discuss
The ECU in my 350z also used a SuperH CPU - I think SH2?
publicmail
·قبل سنتين·discuss
It normally works in conjunction with GCC’s “-MMD -MP” arguments which provide .d files which then get included back into the Makefile with something like “-include $(OBJS:%.o=%.d)”.

It doesn’t directly interpret any source file though, if that’s what you mean.
publicmail
·قبل سنتين·discuss
The problem is that it kind of relies on a lossless layer 2 (flow control) which has its own set of problems in large scale networks. This is what things like this try to solve: https://cloud.google.com/blog/topics/systems/introducing-fal...
publicmail
·قبل سنتين·discuss
A double conversion UPS might do the trick.
publicmail
·قبل سنتين·discuss
We’re so lucky to have realoem. I was kind of shocked to find no equivalent for my late model GM vehicle.
publicmail
·قبل سنتين·discuss
Another annoyance for me is when trying to move the cursor to the end of a long text box like the URL bar in Safari. You basically have to keep using the “hold space bar” method and swiping one inch at a time. I’m sure there’s a better way to do this but I haven’t found it yet.
publicmail
·قبل سنتين·discuss
PCIe busses are like a tree with “hubs” (really switches).

Imagine you have a PC with a PCIe x16 interface which is attached to a PCIe switch that has four x16 downstream ports, each attached to a GPU. Those GPUs are capable of moving data in and out of their PCIe interfaces at full speed.

If you wanted to transfer data from GPU0 and 1 to GPU2 and 3, you have basically 2 options:

- Have GPU0 and 1 move their data to CPU DRAM, then have GPU2 and 3 fetch it

- Have GPU0 and 1 write their data directly to GPU2 and 3 through the switch they’re connected to without ever going up to the CPU at all

In this case, option 2 is better both because it avoids the extra copy to CPU DRAM and also because it avoids the bottleneck of two GPUs trying to push x16 worth of data up through the CPUs single x16 port. This is known as peer to peer.

There are some other scenarios where the data still must go up to the CPU port and back due to ACS, and this is still technically P2P, but doesn’t avoid the bottleneck like routing through the switch would.
publicmail
·قبل سنتين·discuss
I consider it bus mastering when the endpoints initiate the transactions
publicmail
·قبل سنتين·discuss
Do you have any more info on this KVM back end for Virtualbox? I love Virtualbox (I know, I know) but the one annoying thing is the dependency on out of tree kernel modules (at least they’re open source though).