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

 



Forgot your password?
typodupeerror
×

Comment Re:Not only for Tesla or videos (Score 1) 544

The external speakers aren't for the engine or the driver, it's to let the hot chicks know how much you paid for your car.
From the above article :
"Volkswagen previously used a resonator tube similar to the Mustang’s in its GTI but has switched to what it calls a “Soundaktor.” This system is like the M5’s, in that an audio file is stored on the car’s computer and then played during certain throttle applications. Unlike the more selective M5 setup, VW’s broadcasts all the noise from under the hood through a dedicated speaker located near the engine’s throttle body. Soundaktor speakers are currently making noise in the GTI, GLI, and Beetle Turbo."

Comment Not only for Tesla or videos (Score 5, Informative) 544

It's not only for Tesla, and not just on videos either.
Engines are getting more efficient and quieter every year, and cars are better insulated as well. Customers are disappointed when they spend big bucks on a car only to find out it doesn't sound like a big old sport car.
The solution? Manufacturers actually add speakers next to the engine, exhaust and inside the car.
You sometimes get V8 sound out of a V6 car :)

http://www.caranddriver.com/fe...

Comment Re:Change (Score 3, Funny) 162

Exactly.

I love git, because all my development repos are self-contained, easy to backup and work perfectly offline.
"git rebase -i" is just wonderful.

BUT :
You want to pull and overwrite your local changes? It's as easy as :

  git add *
  git commit -a -m "auto dev server commit"
  git fetch origin master
  git merge -s recursive -X theirs origin/master

You want to clone your local repo to a new remote one and use it as origin? Sure :
#On local machine
cd foo_project
git init
git add *
git commit -m "My initial commit message"
#On remote machine (Git remote repository)
sudo su - git
cd /usr/local/git_root/
mkdir foo-project.git
cd foo-project.git/
git --bare init
git config core.sharedrepository 1
git config receive.denyNonFastforwards true
find objects -type d -exec chmod 02770 {} \;
#On local machine, in your git project
git remote add origin ssh://git@example.com:2227/usr/local/git_root/foo_project.git
git push -u origin master

Those are just 2 examples that come often enough to be an annoyance, but not often enough that I can remember them.

Comment Re:KDE, the one we want to love (Score 1) 51

I loved KDE 3.5, and would spend weeks customizing everything to look exactly like I wanted.
It worked perfectly, I had all the right applications and buttons at the right place.

I tried 4.5 and newer versions, but with a kid and my day job, I simply don't have time to look through the 1000 menus, tabs and radio buttons.
So I have to stay with the default config, but it kinda sucks.

On the other hand, Linux Mint + Mate gets the job done out of the box and it looks decent.

Slashdot Top Deals

The Tao is like a glob pattern: used but never used up. It is like the extern void: filled with infinite possibilities.

Working...