Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
News

Submission + - Wikileaks founder under threat by US authorities (thenexthope.org)

An anonymous reader writes: The NYC hacker conference (Hackers On Planet Earth, aka HOPE) put out an alert for their primary keynote speaker, Wikileaks's Julian Assange. They fear Mr. Assange may be in danger should he come to the U.S. In the link provided, they sumerise the story call for the public to band together in the hopes that the U.S. will "Let Julian Speak!" On another interesting note, the person who reported the man who leaked the documents to Wikileaks is belieaved to be coming to the "HOPE" conference too.

Submission + - Humans too simple to understand universe (edmontonsun.com) 1

An anonymous reader writes: A top British scientist says we may never know all the secrets of the universe because, quite simply, we're just not smart enough.

"Just as Einstein's ideas would baffle a chimpanzee," said President of the Royal Society Lord Martin Rees, gaining a full understanding of how the universe works might not be possible "simply because they're beyond human brains."

Security

Submission + - Airplane Alternative for Accessing Secure Network? 3

malloc writes: I'm trying to solve a problem between some code I maintain and a remote customer's application. For a several weeks we have been locked in an ugly loop: start: me->email(try this); sleep(day or more because they're on the other side of the world); them->email(interpretation of results); goto start; The obvious thing is to get a remote ssh connection, but because of "network security rules" they won't allow it. The last time I had this situation I ended up flying to the customer site to do something a remote connection could have solved in a few hours. Though the economics of flying are stupid, my inner geek chaffs even more at the principle of flying meat around the world to do what network technology was exactly designed for: sending my keystrokes to a console. Putting the "they should fix their security policy" retort aside, are there any practical solutions? Using IM instead of email would be better, but still stupid: manually copying my commands to their terminal and pasting the results back. I really want a terminal program that has an "OK" button they can hit to allow my command to run and send the result back, but my google-foo doesn't turn up any such thing. Are there any "monitored" terminal applications like this? What have you done in this situation?
The Internet

China Drops In Domain Registrations From #2 To #4 38

darthcamaro writes "A year ago, it looked like the .cn country code Top Level Domain (ccTLD) for China was growing so fast that it would displace .com. In 2010 that's no longer the case, as .cn has dropped from being the number two global domain by registrations to number four. And yes, .com is still number one. According to VeriSign, the top 10 list of TLDs in the first quarter was: .com, .de, .net, .cn, .uk, .org, .info, .nl, .eu and .ru. So why did .cn decline? Spammers. 'Many of these are low-priced promotional names that have now come up for renewal at a higher price,' said Pat Kane, vice president of naming services at VeriSign. 'The .cn registration decline was also based on the CNNIC (China Internet Network Information Center) registry's implementation of the real names directive from the Chinese government primarily around verifiable "whois" data.'"

Comment CMD considered harmful (Score 1) 426

Even better, if your application is written within the limitations of CMD batch files, it'll be trivial for any admin who cares and has a copy of notepad to pick it apart, if needed.

I've spent years of my working life writing and maintaining batch files, from synchronizing multi-threaded jobs to the polymorphic (you realize cmd.exe stores the next command as a byte offset into whatever is on disk when it goes to read at that offset?). It's true cmd.exe is ubiquitous and easy to modify at first, but "within the limitations of CMD" will come back to bite you.

Version one:

if "%var%" == "false" goto endif_var
    echo Something
    call :something :endif_var

Version two ("hey, cmd has multi-line if statements!"):

if "%var%" == "false" (
    echo Something
    call :something
)

Version three ("this looks simple to understand, let me modify it"):

if "%var%" == "false" (
    echo Something
    rem something else because something is borked
    call :somethingelse
)

Wham! Innocent admin can't figure out what the heck happened to the batch file, it doesn't work any more.
One day he may realize that his statement was turned into:

if "%var%" == "false" ( echo Something & rem something else because something is borked & do somethingelse )

The innocent comment killed everything after it.

CMD sucks

You said it.

-Malloc

Comment Re:Can it run adblock, flashblock and noscript? (Score 1) 385

The main reason for needing flashblock in FF is that the flash plugin tends to lock up the whole browser

That's a good reason, but for me the *main* reason is flash advertisements are so annoying. They often make "punch the monkey" look tame.

That, and IMO anything that pushes web designers to stop treating flash as a web standard is a good thing.

Comment Re:Well written, and informative, but... (Score 0) 248

He has his knickers in a twist over an obvious joke intended to lighten-up the mood of the original article

Absolutely. Just like how you should laugh at the when the guy robbing you at knife-point says "do what I say, get the point".

Seriously, Monty was replying to an absolute hatchet job on something he'd put major work into. We should find it funny?

P.S. his quoting style was easy to read, yet you use it as an excuse for your bad formatting?

Comment Re:More than 10,000 (Score 1) 256

+1

When I first got a digital camera I was all "woo hoo, take pictures of everything", but over the years I found just like you observe: I'd be spending all my time thinking about a great shot, and not actually enjoying the experience.

These days I rarely bring a camera with me but I can still reminisce because: Other people take the pictures for me!

In the age of digital I can simply see the pics of everyone else still stuck in the "let me get a picture of that" mode.

Slashdot Top Deals

Never ask two questions in a business letter. The reply will discuss the one you are least interested, and say nothing about the other.

Working...