Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Depends on how you define JavaScript (Score 1) 218

You can't use jQuery without knowing ECMAScript, but you can use it without knowing W3C-standard DOM API. This technically means you can use it without knowing JavaScript, so long as you define JavaScript as the sum of ECMAScript and DOM API. I'm assuming that the so-called guru implicitly defines it as such.

Comment Re:Yes, if you like stupid eye-candy crap. (Score 1) 218

[Raw JavaScript] is good, it is fast, and there are VERY TINY inconsistencies between browsers, even old IEs, unless it is DOM-crap or stuff relating to inputs and CSS rules. Everything else is FINE.

Except that's exactly why people use jQuery: to ensure that "DOM-crap or stuff relating to inputs" works for all viewers.

Comment Not available for your platform (Score 1) 218

Learning Javascript is a ghetto because so many entry-level people, who are ignorant and arrogant as shit, write bad tutorials, give anti-pro tips, and generally don't have any fucking clue what they're doing.

In common use, "JavaScript" refers to both the DOM API or the ECMAScript language that calls it. To which are you referring? If the latter, inside ECMAScript is a beautiful language struggling to get out. JavaScript: The Good Parts exposes this language.

FWIW (for those less experienced devs/engineers), most JS frameworks are bullshit, replicating functionality found in the browser.

Only if you are willing to fire customers who use outdated browsers on unsupported operating system. Some of this functionality isn't in IE before 9.

I'm not advocating reinventing the wheel, I am advocating not using a wheel when you walk next door.

Some people routinely use a wheel to walk next door. Likewise, on the web, it's wise to make your web application accessible to people with disabilities.

CSS, Javascript, and HTML are a clusterfuck compared to native-development and provide a worse experience.

How is "This application is not available for your platform" a better experience?

Comment Sometimes you have to fire some customers (Score 2) 218

but when your "users" are more properly called "customers" -- or even more important, "potential customers" -- then some web dev's desire to preach the gospel must take a back seat to doing the job the way it needs to be done, rightly or wrongly.

There are customers you want, and customers you ought to fire. Users of Internet Explorer before version 9 are probably using Windows XP, an operating system that cannot run IE 9. This means they're less likely to spend money on replacing a decade-old unsupported system with known security vulnerabilities. This in turn means they're less likely to have disposable income to buy your product. It also means they're less likely to care about the security of the payment information with which they buy your product, which can lead to an increased rate of chargebacks.

Comment Expand details of part of the document (Score 3, Interesting) 218

Instead of throwing many small fragments at the browser and stealing user cycles to cobble it all together, just serve up the content already.

I have served the document. Now the user has activated a control to expand details of a particular part of the document. How should this click be processed?

Or I have served the document. Now the user has opted into real-time updates of part of the document. How should these updates be served?

Submission + - Valve Pulls The Plug On Paid Mods For "Skyrim"

westlake writes: From Kotaku and Ars Technica comes word that Valve has abandoned its attempt to introduce paid mods to Skyrim on Steamworks, following a furious and unrelenting beat-down by the gaming community that did not spare Gabe Newell.

Comment Re:My summary on systemd (Score 0) 442

How can a service handle a situation when it is down? The services have to register in advance how to handle things. Moreover other services might still have issues.

  B depends on C and C needs to reinitiate with B, but D is also talking to C. How does the new B signal C?

As for it being contrived that's one of the key issues in process management how to handle chains and stacks of processes. That doesn't happen much in the sysv world because sysv handles it so badly that everything ended up having to write its own process manager.

Comment Your ignorance knows no limits (Score 0) 359

Your post missed my point, that my G+ circles have more content, and the unspoken point, that G+ gives me more control over content.

On the contrary. If one platform has more content than the other, that's a result of your choices, not the platform. If you fail to exercise the options offered over the content resulting a lower s/n ratio, that's your choice, not the platforms fault.

My answer isn't "typical FB-style", it's the blunt truth. You're a clueless fool who is blaming the tool rather than the operator.

Comment Device's camera (Score 1) 161

If you're Home Depot, no ... while it's important, those few milliseconds of lag and somewhat less native UI isn't a primary business concern.

Low latency integration with the device's camera is a primary business concern when you're trying to let the user visualize how a particular home improvement product will look next to other things in the room.

Slashdot Top Deals

Never test for an error condition you don't know how to handle. -- Steinbach

Working...