Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Marijuana (Score 1) 878

Helps me concentrate on specific tasks if I know what to do. It puts me "in the zone" in ways that soberiety simply can not do.

However, it is counter productive when having to plan out what I need to do in the first place. The architecture and high level planning/design/etc doesn't work for me in any state other than being sober.

Comment Re:Word (Score 1) 586

I like Groovy for this.

class Foobar {
        String hello;
        String world;
}

will compile into:

public class Foobar {
        private String hello;
        private String world;

        public void setHello(String prop) {
                hello = prop;
        }

        public String getHello() {
                return hello;
        }

        public void setWorld(String prop) {
                hello = prop;
        }

        public String getWorld() {
                return world;
        }
}

Comment Re:Responsibility? (Score 1) 321

your router, your connection, your responsibility.

If you leave your wifi open, you do not suddenly become a common carrier yourself.

If you intentionally leave your wifi open, and someone uses that connection to commit a real crime with real consequences, then why should you, the owner of the router, not take some responsibility for it?

Now, that said, we have to look into the grey areas. Should a company be held responsible for an employee that uses their internet connection for bad things? What about a cafe with free wifi? I don't know.

but if I leave my personal home router open, and someone parks their car outside and starts exchanging child pornography, then yes, you can not 100% prove that it was me who transferred that child pornography, but you can say I enabled it by not taking the necessary steps of securing my wifi.

Slashdot Top Deals

"Ninety percent of baseball is half mental." -- Yogi Berra

Working...