Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment They Don't Have Critical Mass Yet... (Score 2, Insightful) 111

In order to cut traditional publishers out of the loop, they need to have a critical mass of Kindle users.

What do you think is going to happen when Amazon announces that they'd be happy to give any author 25% of all sales if they publish direct through Amazon as opposed to the 5% their publishing house gives them? All the traditional publishers will immediately pull their properties off of Amazon to try to kill their new rival (or at least, try not to keep feeding the hand that is strangling them). So Amazon's Kindle readership has to be big enough that the readership stays with them when a huge amount of back-catalogue suddenly stops being available for purchase, big enough that authors will leave behind editors they have developed working relationships with over decades to have access to.

Amazon isn't there yet.

Comment Re:Eight bucks an hour..... (Score 1) 325

My advice to anyone wanting to get into this field: In your first job or internship, don't worry about money

You have got to be kidding. Have you taken a look at the shape of the education and employment markets today? Employers are demanding college educations for jobs that didn't require degrees back when you graduated; pretty much anything more than washing dishes these days requires at least a Bachelors. And the cost of those degrees has skyrocketed; the average college student here graduates with about $20,000 in loans that come due in 6 months at near-usurious interest rates.

Those darn "millennials" on your lawn need to worry about the money, because the experience of fetching coffee for Bob the 20 veteran incompetent VB coder doesn't pay for shelter, food, and loan payments every month.

Kids these days don't have the luxuries of a dirt cheap education and not worrying about the pay when they graduate.

Comment Re:The comment may also be complex.. (Score 4, Insightful) 660

And while you're spending your time figuring out why something that isn't broken works, he is coding something that you aren't coding at all. Sure, coding until it passes isn't the ideal, but it's a whole lot better than not coding at all (you).

Coding two routines by coincidence is not more productive than coding one routine properly.

Comment Re:*First post.. (Score 1) 590

Look into it and you'll learn that "entrepreneurs" have been making a lot of money off of educating your children.

Those knaves! How dare they?!

I for one demand that they immediately cease making money off this, and instead dedicate themselves to the greater good of giving my child a top-quality education for free, and preferably while having to eat out of garbage cans!

That ought to teach those commie teachers unions that in America we don't go in for this socialist profit stuff.

Comment Re:Psystar is 100% wrong (Score 3, Insightful) 865

Yes, but Apple is making their argument in a court of Law, not a court of Nebulously Undefined Rights and Wrongs.

The current law is the current law, and Apple is legally correct. If you believe that the current law is not optimal, that's a matter to take up with the legislature. Arguing that the lawyers and courts are wrong for following the law is downright silly.

Comment Uhm, no (Score 5, Informative) 184

Did you read the ruling?

ISPs don't get to throttle at a whim. They can throttle, but if they do, they have to demonstrate to the CRTC that the throttling is as narrow as possible to solve the problem and, importantly, economic measures like tiers, or building capacity would not solve the problem. They're also not allowed to throttle any protocol so hard as to effectively block it, or throttle things like VOIP without advanced, explicit permission for the CRTC.

That's a big improvement over the status quo at the moment, which has allowed the ISPs to throttle for years with no oversight for any reason they felt like.

Comment Re:This is cool and all, but... (Score 5, Insightful) 406

Except that so far, I'm seeing table construction and table layouts. I guess that's technically code - as any SQL technically is - but a good case can be made to say that it's just the database structure. Which can, of course, be subjected to a hash check.

Except that the DDL isn't in a bunch of scripts that are building the schema, the schema exists in a bunch of strings that are concatenated together in stored procedures with some arguments to the procs munged in, and passed to Exec statements when the stored procedures are run.

That's not normal table building, that's an unabashedly self-modifying database.

Comment Re:Hyperbole much (Score 1) 406

I agree, the summary and quoted code don't shed any light on the issue, but the big, and possibly illegal, problem is that the databases are heavily self-modifying. Random example:

/* Table : CONTEST                                              */
/* Description: Election specific contest. There could be multiple
            contests per office differentiated by party, Precinct,
            and Gender.  There are also contests uhat are not for an
            office such as System Contest (e.g Straight Party) and
            Proposals. */
begin
    Exec("
    create table CONTEST
        -- identifer of contest
        CONTEST_ID           T_GLOBAL_ID          identity
        -- identifer of political subdivision
    ,    PSD_ID               T_GLOBAL_ID          null
        --     0 = all, 1=exclude, 2=include
        --    1 = Some voters can vote ONLY for this office
        --    2 =Some voters in the psd cannot vote for the office
    ,    ELIGIBILITY         !numeric(1)           null default 0
        -- if office is precinct level, identifier of contest's precinct
    ,    PRECINCT_ID          T_GLOBAL_ID          null
        -- identifier of proposal in contest
    ,    PROPOSAL_ID          T_GLOBAL_ID          null
        -- Combined from office/proposal name and modifier such as
        --  precinct name or gender
    ,    NAME                 T_STANDARD_NAME      null
        -- If contest is NOT a proposal: reference to the office at
        -- the source of this contest

etc. The Program seems to have created and destroyed tables, columns, views, etc, on the fly, an incredibly odd practice for data that is meant to be audited.
Censorship

Flickr Yanks Image of Obama As Joker 869

An anonymous reader writes "An interesting article yesterday about the unmasking of the recent creator of the controversial and iconic Obama/Joker image that has been popping up around Los Angeles with the word Socialism under it. The Los Angeles Times has identified the images' creator as Firas Alkhateeb. Even more interesting though is the fact that after getting over 20,000 hits on the image at Flickr, Flickr removed the image from Alkateeb's photostream, citing 'copyright' concerns. The image in question is clearly both an independent derivative work and unquestionably a parody of the President and Time Magazine which would be covered under fair use. It has appeared on many other sites without issue on the Internet." According to the same reader, "Flickr also recently nuked a user's entire photostream over negative comments on President Obama's official photostream."

Slashdot Top Deals

No man is an island if he's on at least one mailing list.

Working...