Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:UX (Score 1) 323

I like to go down the middle road myself.

Every link, button and form in my webapp can be used with JS turned off. Every single one. This means I can write automatic bot scripts with a simple HTML parser that tests my webpages for any UI regressions and report those. That's a great help when refactoring code and guaranteeing .

However, should you have a JS-enabled browser, I simply check if the call was made with AJAX - if it was, I simply bypass rendering the entire UI and instead focus on the part that was requested. All ajax calls are made by a slightly edited regular anchor tag, like this:

<a class="ajaxlink" href="index.php?action=foo#bar">load foo</a>
<div id="bar">Foo loads here</div>

Never seen this anywhere else, wonder why?

Comment Re:except the investors, who paid everybody up fro (Score 2) 181

"most movies don't make back their initial investment in first release."

Correction. Most Hollywood movies that have spent hundreds of millions of dollars don't make back their investment. Solution: Cut down production costs.

Actors demanding 40M bucks for their role? Yeah, that will fade, sooner or later.

Look, it's market economics 101. If your product/service/whatever don't make enough money it is time to trim the fat. Why should hollywood business be any different?

Comment Re:SIP Replacement? (Score 1) 282

Skype isn't what killed the VOIP industry. NAT and the "tiered internet" did. Once you experience the internet with no public IP addresses, well... Welcome to hell my friend. All in the name of saving a penny today and losing a dollar tomorrow.

Net Neutrality isn't just the idea of unfiltered traffic. It's the idea that everyone on the internet are peers. Sure Google have more bandwidth than me, but I can still talk to Google as a peer, not as a lower-class citizen. Even my ISP is my peer, not my master. That's the great thing about the internet. :)

Comment Re:Certification? (Score 1) 36

If it's a device someone else built that you yourself is trying to replicate in your own environment, then it would be perfectly fine to do so. Those certifications are first and foremost intended as a safeguard measure so that device manufacturers does not sell equipment that are hazardous in any way. Electricity is, after all, not very healthy in large quantities, and neither is radiation.

However, in your home, noone can tell you what you can and can't build. A home-built device could be every bit as safe as an official one, but since it is home built, there are no guarantees a faulty soldering may, say, bypass a certain part making the product overheat and release poisonous gas. Therefore such a device may not be sold, but it may very well be built, at your own expense and risk.

Comment Re:Certification? (Score 2) 36

That's easy. Hardware once created is permanent. Take the good old NES console - it's still the same old console now, as it was 1985. There's almost 30 years between that!

Therefore it won't be hard at all to get a consumer device CSA-certified. After all, some company is producing that device, meaning they are in control of how, when and why it is built. That doesn't change even if the hardware is open.

Open Hardware means the schematics are open for everyone to make use of. It does not mean that you can magically 3D-print your own super-awesome graphics card (atleast not yet) - it would require a lot of time and effort to create that card, even with the help of an RPM (Rapid Prototyping Machine) and open schematics. It is, however, easier to add your own stuff to the hardware and modify it to better suit your own needs, if you have the skill and inclination to do so. Doing that will void your warranty though, so watch out!

Comment Re:Capitalism does not reward morality (Score 1) 197

You seem to not have your facts straight. First off you are describing anarchy, and while anarchy is a nice thought anarchy can never exist naturally, it's fleeting state exists in the same way as alkali metals exists in nature. As part of a greater whole.

Secondly, your definition of anarchy is completely wrong. Allow me to fix it for you. "To them, freedom means being able to do whatever they want whenever they want in any way they want as long as it doesn't limit the freedoms of others."

Comment Re:Systemd Is Inevitable (Score 1) 581

From what I gather, it's not *that* bad - most apps depending on systemd do so for the cgroups support. If one could extract the cgroups functionality into a separate library and get projects to use that instead, the need for systemd would be a lot less.

Systemd is eating up everything low-level though. Before systemd, a Linux system would look like this:

Kernel -> (collection of init/syslog/pam/udev/whatever) -> Bash -> GUI

Now it's

Kernel -> systemd -> Bash -> GUI

And to be quite honest, I'm not sure if systemd will leave Bash well enough alone, either. I for one prefer uselessd over systemd. Others may disagree.

Comment Been telling people this for years... (Score 1) 269

And I think the absolutely best chance of success would be if one made a social "network" that allowed one to share (and possibly monetize your own) content - think Youtube, but distributed and not limited to movies but to everything - pictures, audio, video, blog posts etc. :)

Best way to accomplish that using current technology would be to use BuddyCloud and replace its mediaserver with GNU Media Goblin. In the future however, it might be possible to do this without administering a physical server - it'll all be decentralised and in the cloud. That would be most convenient, but of course there are quite a few issues to resolve before then, not the least with regards to privacy...

Comment Re:not complicated...monopology (Score 1) 346

The government shouldn't be providing services that can be done by the private sector.

The government should provide a service whenever profit-driven models aren't good enough. Infrastructure is one such area where private companies often fail to meet the needs of its users.

  So no, not all government services are inherently "evil". But that is besides the point. If you RTFA then you'd see that the swedish model basicly require an open-access policy - once fibers are built they are there for everyone to use. Meaning, ISPs do not compete over infrastructure, they share it and compete over services.

Comment Re:My opinion on the matter. (Score 1) 826

"All daemons made when sysvinit was king will work with systemd. It is backward compatible, even with sysvinit scripts (there are some few documented corner cases)"

Yes. But that's completely beside the point.

The problem described is not that old stuff won't work/is portable; the problem is that new stuff, stuff that use fancy systemd-specific parts, are not portable. This means there will be great services, down the road, that people will want to run on other UNIX-like OSes than Linux, like say, FreeBSD or OSX.

Before systemd, this was easy to accomplish. After systemd, you need to write a software abstraction layer that hides the systemd-specific parts. It's a giant problem just waiting to come up and bite someone in the ass.

Comment Re:NT is best (Score 1) 190

You are missing the point.

Linux has automatic updates, and a friendly icon pops up saying "We installed stuff on your computer, you should reboot at your convenience."

Windows, on the other hand, installs those updates and then tells me "you have five minutes to quit whatever it is that you are doing before we reboot your computer."

Whoever decided that was a good idea should be shot.

Slashdot Top Deals

He who steps on others to reach the top has good balance.

Working...