Forgot your password?
typodupeerror

Comment Re: Why? (Score 1) 45

Indeed. I built a Raspberry Pi Pico based controller for some flashing LEDs on my drone. It has red and blue LEDs and I wanted them to flash with the cycle of three short flashes then a pause; alternately the red LEDs then the blue LEDS. Took barely a minute to code that in python and dump it onto the board. In such cases it doesn't matter that the language is interpreted because the task is not demanding of the hardware.

The "Police Drone" still flies to this day! :-)

Comment It's only a matter of time... (Score 0) 56

How long before the labels start going after new artists that sound like existing ones?

You know, where someone is "inspired" by a singer, a band or a songwriter that they've idolized for years and thus their own creations are heavily influenced by those artists?

If there's a chance for a new Lambo or Porsche in the corporate car park at EMI or WMG you *know* they'll be working on such law suits right now!

I've also wondered why there's no restriction on voice-actors who impersonate famous people -- but if you do it with AI then you are right in the firing line.

Comment Re:Cities? (Score 1) 53

Not going to happen!!!

Amazon is hoping to fly 80lb behemoths over populated areas to drop things from about 12 feet -- while all-too-often crashing into things. Of course to be fair, how could a drone possibly avoid an apartment building or a crane (twice). Last time it was a ladder strapped to the roof of a van.

These things are not only dangerous but hugely uneconomic. Nothing beats a gig-worker on an ebike!

Comment Re:So i can just post 30TB and get it later? (Score 5, Informative) 66

No. Trying to push 30TB into Freenet will be interpreted as an attack on the network by other peers and they'll disconnect from your peer.

Freenet is better viewed as a communication medium than a storage medium. Data is prioritized according to demand, somewhat like an LRU cache. You can't upload 30TB and expect the network to preserve it for you.

On liability, running a Freenet peer is more like running network infrastructure that automatically routes and caches other people's traffic than intentionally publishing it. US law explicitly recognizes this distinction in the DMCA's provisions for transitory network communications and system caching. We discuss this in more detail in the FAQ.

Comment Re:Just a heads up, decentralized platforms... (Score 4, Informative) 66

You obviously haven't tried Freenet. You can join our room on River and you'll see no spam, no fraud, no hate speech, none of that.

Decentralized doesn't mean unmoderated. Systems built on Freenet can be moderated however their creators and communities want. River is moderated.

The difference is that nobody running one service gets to decide what everyone else is allowed to run.

Submission + - Freenet: Apps Without Platforms

Sanity writes: Earlier this year Slashdot covered the launch of the completely redesigned Freenet. I recently gave a talk about what we've been building since then. Unlike traditional web applications, apps on Freenet have no central server or database, with application state instead distributed across the network. These now include decentralized group chat, publishing, search, and fully decentralized Git hosting. The talk also gets into some of Freenet's internals, including how we use machine learning for network routing.

Comment Re:Massively stupid (Score 2) 133

Firmware in most consumer routers is based on Linux, with the router vendor adding some UI and chip-vendor drivers to the open source baseline. Not written from scratch. And thus just as good or bad as routers whose hardware was assembled elsewhere.
China can't manufacture the high end chips yet, but they do have their own supply chain for midrange SOCs and memory. Gigadevices cloned some European SOCs. They work. Chinese contract manufacturers build to the quality level the customer pays for. You want cheap junk, they're happy. You want good, they can. And their native design capabilities are catching up. The US, in contrast, is now mainly an exporter of raw materials -- wood, scrap metal, animal feed. Plus weapons to allies and airplanes, though Boeing's reputation ain't what it used to be.

Comment Re: We are also paying the Germans 1.2 billion (Score 2, Interesting) 139

Given how much of modern manufacturing is fully automated, why couldn't US companies compete on a level playing field with Chinese ones?

Tariffs simply allow domestic manufacturers to reap higher profits and/or continue to use inefficient processes to create an equivalent product.

Perhaps the motto of the USA will eventually become: "Tariffed into mediocrity"

Comment Destined for failure (Score 1) 14

These drone delivery services that have to operate in line-of sight and comply with a gazillion FAA regulations are doomed to failure. You could deliver the order faster using a trebuchet over such distances and with fewer liabilities or costs.

Manna Aero has moved to the USA for its trials because it effectively had so many problems in it's home of Ireland and Just the other day another 85lb Amazon drone crashed and burned.

Given the costs, both from a hardware, labor and systems perspective, they'll never compete with a gig-worker on an ebike.

Comment Re:An elegant chip (Score 1) 42

I wrote a lot of assembly (back in the day) for both the Z80 and the 6502. The Z80 was like a Mac truck. It had some really powerful instructions (LDIR etc) and a great register-set but the 6502 could be a lot faster on one condition -- that you had space available in page zero to exploit the indirect addressing mode that relied heavily on the first 256 bytes of RAM. The Z80 had the advantage that it had on-chip support for refreshing dynamic RAM so systems with more than 4K or so of memory were much easier and cheaper to build using a Z80 than a 6502.

If you were building and programming a system from scratch then the 6502 was the obvious choice but if you were programming a "store bought" 6502 system such as the Apple, Atari or Commodore, many of those valuable first 256bytes (page zero) were already in use by the ROM-based system software so things became a bit trickier.

Ah... happy days.

Slashdot Top Deals

Every nonzero finite dimensional inner product space has an orthonormal basis. It makes sense, when you don't think about it.

Working...