Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Submission + - Has Toyota lost its mind! (youtube.com)

FlyingGuy writes: Toyota, in a move that will anger many Toyota loyalists has decided to make features such as remote start and heated seats a SUBSCRIPTION service?! Look at this YouTube video put out Steve Lehto, esq an attorney in Michigan where he explains it.

Comment Ding Dong the Ivy's gone!!!! (Score 0) 31

OMG I only hope it's true!!!

I have been sticking with my old MBP (late 2013) until Apple finally rid itself of Ivy!!! He was a good designer, but in many ways his insistence that things get smaller and smaller really did not help Apple at all. When they lost all the ports, I was SO bummed! Suddenly you had to buy all these expansion ports, but the one that killed me was ditching that magSafe charging port and I was thinking, yet another reason to never buy another MacBook.

Here's hoping it's true!!

Comment Re:People who write code just don't get it.... (Score 1) 256

Exactly

The issue is that small discreet processors catch and resolve probably 80 to 90% of everything that happens in an automobile, from anti-lock brakes ( which have their own little processor, which might well be a device that takes input from the transmission ) to detecting when your windshield washer fluid needs refilling.

These peripheral devices all communicate over the CAN buss and or the LIN buss for lower priority issues.

The automotive world does not want one overriding processor that controls everything. A car or an airplane is not a computer, it is a device that has many sub-systems that interact at many levels. When they work together, it is sublime.

Give this a read... https://en.wikipedia.org/wiki/... it will make your understanding deeper.

Comment People who write code just don't get it.... (Score 1) 256

That waits for minutes if not hours to do anything just don't understand

If they did the next few sentences would make sense.

Let's say that we build every system in a car, to talk to one (1) chip. Let's say it's Apple's M1 chip, or Intel's Core H series. Either one, it doesn't matter.

How would you connect all of the inputs? I doubt there enough I/O ports on either chip. Not logical, but physical I/O ports.

So even if you could magically get all these different systems to connect directly to either CPU, how in the hell are you going to code that shit? VHDL, Verilog, or SystemVerilog? That is a VERY different programming paradigm.

When automotive engineers talk about something happening at the same time? The actually mean, AT THE SAME TIME, not in the next tick, not in the next interrupt cycle. Can a modern CPU even do that? I kinda doubt that since there is only one clock in pin, and EVERYTHING moves to that single clock. Can it look like everything is happening at once? Yes it can, but only looks that way.

Comment Programming is not hard... (Score 1) 526

For those who have learned, or been taught, how to think.
What is difficult is to master a language. I really don't care which one, but I prefer Pascal, C, or Java. And since pretty much every language in the last 30 years, was derived from the C Language, I will stick with C, sometimes Java, and just for fun a little bit of Delhi thrown in.

My last full time job, was writing a user proof interface to Oracle in Java. It worked quite well, and when I handed it over it had no known bugs, other then the bugs in Java, that I had to work around.

Comment Screw the power companies... (Score 4, Insightful) 192

Well it could be done, but ONLY if each user cooperates.

And I am sure the established power companies will use every dirty trick in the book that can think of or dream up to fight this tooth and nail.

They will start by siting safety concerns, and if that doesn't work they will go to their well paid elected representatives to pass some sort of regulation or law making the whole process either outright illegal or put up so MANY barriers as to make it financially impossible for the regular home owner.

Comment And I wont... (Score 0) 42

"Mycroft has been around for quite a few years, but it's recently gained a bit more notoriety thanks to privacy concerns surrounding data collection at Amazon and Google. Unlike those assistants, Mycroft only collects data if you opt in during setup. And for the users who do opt in, Mycroft promises never to sell your data to advertisers or third parties -- instead, it only uses it to help developers improve the product. Mycroft even uses the privacy-focused DuckDuckGo as its search engine instead of Google when you ask for information."

Oh yeah and I wont cum in your mouth either!

Comment Lazy Stupid Programmers (Score 1, Insightful) 463

I have been writing software for over 30 years, and dammit I have yet to forget to free after I malloc in released code!

There are a plethora of tools to check that for you! Use them!

It seems that people want to write the most insipid, stupid code they can, and they cant seem to be bothered to look at and check to make sure memory is freed after they are done using it!

Or they want to write arrays that are endless because they are to lazy to examine, or even estimate how much memory any operation will use

Everyone loves to think that there will be plenty of memory, you can never run out! My god they are lazy AND stupid!

All the these Pile it higher and Deeper idiots keep trying to write languages that allow this, really need to get jobs flipping burgers, for all the "progress" they bring to the table.

Why oh WHY do you think then entire Linux kernel is ONLY written in C! Do you think Linus is an idiot? Do you think he is Lazy? Do you think he is stupid? Guess what! He is not any of those things! He has looked at the pile of crap that has been written for years, and do you know what? He can't find anything better!

If you are too lazy, stupid and ugly to even check if the memory you have allocated is freed, the arrays you create are checked, if you cant be bothered to look at your code, and stop being so fucking clever, so fucking slick, then just go do something, hell anything else, but stop pretending you can write smart tight efficient code.

C is the smallest, most efficient, most elegant language ever built, so go have a glass of shut the fuck up, you whiny, complaining, little insignificant lazy ass fanbois!

Slashdot Top Deals

This place just isn't big enough for all of us. We've got to find a way off this planet.

Working...