Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re: Repeat viewings (Score 1) 8

The whole series bears repeated viewings. There is so much going on that you can and do miss stuff, not just when tired, but also when wide awake. Coming back and rewatching the series is definitely recommended. However, bear in mind (and a mini-meta-spoiler follows) although the writers had a general concept for what they were trying to do, they were really winging it through much of the series, so you will find some inconsistencies if you look too closely. But it is still one of the best series ever shown on tv.

Comment Reviews? (Score 1) 8

BTW, has anyone hooked you up with the folks over at Manning.com? They were looking for some reviewers a short while ago - I can make the relevant introductions if you like.

Comment Two quickies... (Score 1) 7

Jed, not Joss. 8^P

And the third season will eventually be available on YouTube just like the second - the Microsoft deal started with the second season and only provides temporary exclusivity to Microsoft platforms. (FWIW, Xbox360 owners get access to season 3 first, then the other Microsoft properties about a week later.)

Comment WP... (Score 1) 1

When you post an entry with WordPress, it stores the entry date/time in the DB. To have a post appear at a specified time in the future you set the date/time to the posting date and when displaying entries, only pull out entries where the entry date/time is = now(). So nothing actually happens at the ime of the entry to magically post it - it is just a time-based filter when displaying entries...

However, WordPress also has a way of running tasks at specific times using a cron scheduler. One simplistic way of doing this (without relying on the OS's cron scheduler) is to have a list of jobs/times (in the db) and every time a visitor loads a page, check if any tasks need to be executed. If you have a regular stream of visitors, then it will seem almost as if the jobs are being executed at the right time in the background, but if your visitor numbers are low (or distribution over the day is irregular) then this does not work so good. WP can (or used to at least - I haven't checked this for a while) also use the OS cron to schedule jobs.

Comment The biggest issue with SQL... (Score 1) 2

The biggest issue with SQL is training yourself to think in terms of set-based operations. So many of the complaints I have heard about how hard it is to do something in SQL revolve around this one, basic premise of the language. It took me several years to become comfortable enough with set-based processing, but now I am fully at ease with it and can do some things I thought were impossible when I was starting out with the language.

It's kinda like approaching a functional programming language with a procedural POV...

Programming

Submission + - Adobe Open Sources Flex SDK under MPL!

peterarm writes: "Adobe is open sourcing the Flex SDK under the MPL! The FAQ has all the information. Also, Robert Scoble interviews Ely Greenfield (a Flex SDK architect) and David Wadhwani (Flex Product Line VP) about the announcement at PodTech."
Portables

Submission + - Dell releases Flash-based laptops

joetheprogrammer writes: "Dell has announced that they are going to offer a special configuration option with its Latitude D420 laptop that will allow users to swap clunky old HDs in favor of a 32GB SanDisk Flash hard drive. The only hitch comes with the price tag, which is set at a rather expensive price of $549. This will definitely ensure the laptop is set for a very high-profile consumer."
Linux Business

Submission + - Exclusive Interview with Tux500 Team

LNXPhreak writes: "OSWeekly.com has published an extensive interview with the Tux500 team, the people responsible for sponsoring a race car with Linux at the Indy 500 race event. The team provides a lot of interesting answers behind their motivation for sponsoring the Tux500 event. From the interview, " First of all, a Super Bowl ad would cost 7x what our primary sponsorship goal is for this program. There are some advantages and disadvantages to that approach, and I'm not suggesting that at some point the community wouldn't benefit from doing something like that as well. However, we had to set a realistic funding goal for Tux500, something that wouldn't be impossible to attain. Some people already feel that this goal ($350K) may be too ambitious and others feel that we should have placed the program with a stronger team or driver. But to do so would have easily doubled the cost of the program and the concept likely would have been DOA with the community."

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...