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

 



Forgot your password?
typodupeerror
×

Comment Re:More than PR (Score 2, Interesting) 385

While I'm sure this message will be lost on the slashdot forums, I submit that liberals and libertarians actually agree on a whole range of issues. Paul was able to work with a Democrat from Oregon on this, after all.

And while that may be true, the reason so many Democrats are rabid Libertarian-haters is that no matter how many other issues they may agree about, Libertarians simply do not support the big-government model Democrats insist upon. It's a fundamental philosophical difference.

Democrats, by and large, are unwilling to look past this difference, and see the things they DO agree on. Which is too bad, because it leads to the typical Leftist Libertarian-bashing that we see so much: conflating them with anarchists, etc.

Comment Re:Criminal liability ... (Score 1) 82

As long as corporations can say "oops" and just pretend that two years of credit tracking like this, nothing at all will change.

Until then, corporations will be as incompetent and lazy as the law allows ... which is pretty much as incompetent and lazy as they want to be.

When a few events like this happened last year to Home Depot and a few others, I saw a couple of those letters with offers of free credit monitoring, etc.

IANAL, but I am pretty sure these are just attempts to stave off lawsuits. There is nothing binding about the "offers", and they don't preclude you from suing them for liability if you are an actual victim of identity theft.

I think what this will actually take, are some people willing to step up and kick off some big suits. It is those kinds of damages that will make them finally pay attention.

Having said that, "punitive" damages by government are supposed to be big enough to get corporations to end the sloppiness and take their their liability seriously. So yes, I think you can lay a lot of blame on government's cavalier attitude toward this sort of thing.

Comment Re:Threatens security (Score 1) 102

If Russia ties up a lot of the world supply and shuts down mines they own then the price will rise and mines like that one will come online, it's not like they're going to take over so much of the world supply that we'll be shutting down reactors due to lack of fuel.

I hardly think that's really the point. Being a "strategic material" -- and it very definitely is -- there is a real issue with selling shares of US uranium production on the open market to the Russians.

While we aren't exactly in a "cold war" anymore, our relations in many ways are less than friendly, and the Russian deal with others who are even less friendly to the U.S. So doing that is just plain stupid.

It's like selling ammunition to a third party who you just know is going to then turn around and sell it to your enemies.

Comment Begging The Question (Score 1) 384

What OP doesn't say (and probably doesn't know) is how that IP address is assigned. As likely as not, it's assigned by the software he is using on his laptop, via DHCP by his host software; that would explain why they ALL have the same IP address. (Certainly that could be in the pump firmware, too, but we have zero evidence of that, so it could just as likely be the other.)

If the pumps actually get their address via DHCP, the software could be hacked to assign a different IP to each pump, and then using a simple ethernet hub or switch, run the firmware update in multiple threads, one thread per pump.

I don't know that's the case, but I have been given no reason to believe it is not.

OP should find out how the IP address is being assigned. He could probably do that simply by trying to telnet into the pump, or using one of the many bits of network analysis tools available.

Comment Re:It's not a networking issue. (Score 1) 384

Engineers have a code of ethics

I'm not aware of any code of ethics. Though the company I work for has a general saying that when you do an action, ask yourself if it's something that you'll want to be remembered for, which all employees do, even the management, accountants, etc.

In other words: Would you do it if your mom was watching / would know?

Comment Re:GNU/Emacs on any platform (Score 1) 443

Both vim and emacs are similar, ...

Well... for some definition of the word "similar". Emacs is far - far - more extensible and, quite frankly, more powerful *and* the base LISP interpreter can actually be used for non-editing work. However, for many subsets of work that extra power and extensibility is not needed and vim is fine - especially for short, simple edits. As vi/vim usually comes with the base OS by default (especially Unix - i.e. non-Linux - systems), knowing both editors (as I do) is preferable. For most programming work or complicated file edits, I generally use emacs though - since the late 1980s - my current .emacs config file is from 1990 - and, yes, I'm old.

Comment Re:Can I turn features off? (Score 1) 443

I can type really, *really* fast,

Great, you're *that* idiot with the deeply tab-indented code that everyone else has to reformat to make readable - thanks.

For emacs in particular, all the various "electric $LANG" modes have different ideas of which characters are electric, what their behaviour is, and what coding style I should be using.

And any setting of said modes can be customized to your liking interactively or in the .emacs config file. (I've carried mine with me since 1990) Stop tabbing and do a little research.

(defvar smart-newline-modes
'(c-mode lisp-mode emacs-lisp-mode lisp-interaction-mode cperl-mode perl-mode java-mode)
"*Major modes for (smart-newline) action.")

(defun smart-newline ()
"(reindent-then-newline-and-indent) if in a mode listed in smart-newline-modes. Otherwise just (newline)."
(interactive)
(if (memq major-mode smart-newline-modes)
(reindent-then-newline-and-indent)
(newline)))

;; Use (smart-newline) instead of (newline) -- "C-M"
(global-set-key "\C-M" 'smart-newline)

(setq c-mode-hook
'(lambda ()
;; Set `C' coding styles.
(setq c-argdecl-indent 4
c-auto-newline nil
c-indent-level 4
c-tab-always-indent t
comment-column 40
)))

Comment Re:Two Word "Critical Thinking" (Score 1) 302

My wife Sue developed two classes for the Virginia Beach City Public Schools Gifted Education Program (in the late 1980s) focusing on critical thinking skills and they are still taught (synopses from the 2015 Curriculum Guide below). I imagine other school systems offer (or can offer) something like these - you can also Google "Think Tank for Super Thinkers" ...

Think Tank for Super Thinkers (GP 1172):

One-half credit, first or second semester, Grades 9-10 This program utilizes an interdisciplinary approach that introduces a core of consultants from the professional and academic communities of the arts, social sciences, applied sciences, business, and media to the participants. Students will learn to research, assimilate, and respond through group work. The instructional focus will require students to think critically about social, political, economic, and environmental issues of our day. Field trips and attendance at cultural activities may be required. This class is offered at each high school, is taught by the gifted resource teacher, and is offered in an online, blended format.

SPARKS (GP 9500):

One-half credit, first or second semester, Grades 11-12 The SPARKS course will allow selected students to participate in a course designed to encourage the discovery and discussion of new and invigorating ideas, the development of critical thinking skills, and synthesis of complex issues. The course is offered in an online, blended format, allowing students to research and discuss selected topics. Instructional approaches are varied and may include speakers, debates, workshops, field trips, and community service projects. Online and face-to-face discussions will be conducted in a multi-disciplinary atmosphere encouraging students to make connections and explore relationships among different disciplines.

Sue was named the Outstanding Gifted Teacher of the Year for Virginia Region II in 2005, a few months before she died in January 2006. (See the "Teacher" link on the Remember Sue... page.)

Slashdot Top Deals

Our OS who art in CPU, UNIX be thy name. Thy programs run, thy syscalls done, In kernel as it is in user!

Working...