Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:Automatically Holding Up (Score 1) 195

2001 bug has it.
2008 Chrysler has it. It stopped working, would go halfway up then detect "interference" and go back down, took it to dealer, dealer replaced something on other side. Then when I pointed that out he fixed it.
2008 Edge has it, drivers side only. Also has it for up or down of hatch, though it sometimes false-positives interference on the down.

But you can still slam your finger in any door.

I wouldn't want to hack any of those. When I got a new battery for the bug at Batteries+, the listing said "Do Not Even Attempt To Install This For Customer." Installer ignored that, no problem.

I once had a Fiat 128 with a different engine swapped in. The schematics didn't agree with what was there or had been there. In Italian.

Comment Re:Key question (Score 1) 108

Actually, so far...I've not found any jobs that required any Oracle DBA certification as a requirement for work. Maybe for starting out, but for me, job resume experience is what sells you.

I've never been certified, I've taken the classes in the past, but never got around to taking the actual exam, and I've never found it to be a job requirement, nor pay amount factor.

I'm pretty much contracting only these days, so maybe the more beginner W2 jobs value this more, but for now, I find that in general, Oracle Certs are about as worthless as MS certified engineer credentials. You just don't need them really.

Oracle Partners jobs require certs. This is of course all marketing, but marketing is lucrative.

Comment Re:Don't take the fall (Score 1) 308

I've seen another variant of this:

They've dumped it on a contractor because they "knew" it was doomed. Contract not renewed. Six months later, original "hero" is gone, and new contract, with more realistic requirements.

Sometimes what they say they know, what they actually know, and what they come to believe are not congruent.

Comment Re:I read the Satanic Temple's page (Score 1) 1251

probably shouldn't have surfed to that URL at work though..... but their site actually comes across as quite rational and reasonable. Not what I was expecting at all.

It really comes to something when a website for a type of church can be considered NSFW. I understand though -- in my 10 years in corporate America I sure kept my atheistic head down. Nothing would have finished a career quicker than letting my screaming, wall-thumping, secretary-humping, second-wife-divorcing bosses know that I was not also a Christian.

Comment Views, Materialized views? (Score 1) 165

The idea of embedding a calculation into the system that is automatically updated by underlying data changes -- is that not just a database view?

We use this sort of technique quite widely in a Ruby on Rails app I work on -- complex calculations such as for profitability and cash flow are defined as views in Postgres, and referenced by the app as read-only models. Thus we can: Profitability.where(product_id: 27).group(:month).sum(:value)

Performs monstrously fast, as is extremely flexible. It breaks the whole "for the love of gods don't put business logic in the database" separation of concerns idea, but we have a system to ship right now and we can't wait for RoR performance and flexibility to catch-up that much.

Slashdot Top Deals

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...