Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×

Comment Re:A Natural Progression Yet So Many Caveats (Score 1) 578

it looks an awful lot like applescript to me;

   repeat with x = 1 to the number of words of tAnswer
      add the number of chars of word x of tAnswer to \
      sAnswerCharacters
      repeat with y = 1 to the number of characters of word x \
         of tAnswer
         put "letter" & x & y into tButtonName
         put "underline" & x & y into tUnderlineName
         put character y of word x of tAnswer into tCharacter
         put tCharacter & "Icon" into tImageName

         set the cLetter of button tButtonName of group \
         "Answer" to tCharacter
         set the icon of button tButtonName to the id
         of image tImageName of card "Image Store"
         set the visible of graphic tUnderlineName of group \
         "Answer" to true
      end repeat
   end repeat

Comment Re:Build-in function library (Score 1) 831

Actually it has some decent libraries already, at launch. See http://golang.org/pkg/

I wrote a multithreaded telnet talker without having to care about threads or mutexes or shared memory access or select() or poll() or whatnot. Some channels and a few goroutines, and it all works really, really nicely.

THe syntax is a little weird, sure, but after a day of coding in it, its fine. You get used to it, and I find it easier to pick up than say, haskell.

Comment Re:Packaging Packaging Packaging... (Score 2, Informative) 244

+1 also, use the package signing system to verify that the packages distributed to machines are really released. use the package dependencies to pull in all the required packages for a given system. If you do it right, all you need is an apt repository, and you type "apt-get install prod-foobar-system" and everything will be pulled in and installed. In the correct order. I converted a site to this method (on Fedora Core many years ago) and we went from taking a day to build machines to 30 minutes. 1) Put the mac address in the kickstart server and assign the appropriate profile. 2) Boo the machine from the network 3) Watch it build. The profile for that machine would have the packages for the environment we were building listed. 4) Reboot. Machine would have the right IP and be completely configured and running. It just works.

Comment Starships are done, done, done. (Score 2, Interesting) 444

Starships on Trek have been done. You can't do yet another one, without falling back onto the old formula. DS9 was good because it was a different formula, but even it got stale after a while. Star Trek Academy would suck, please don't do that. If Trek does come back, I'd like to see a show based on the idea of a (Culture reference here) "Special Circumstances" team, a group of top Starfleet specialists who are basically a special operations team that are show into dangerous situations, and with limited equipment and resources they need to resolve a serious problem that concerns the Federation. Or something else. Just not yet another Enterprise.

Comment The Chewbacca defense (Score -1, Redundant) 685

Cochran : Ladies and gentlemen of this supposed jury, Chef's attorney would certainly want you to believe that his client wrote "Stinky Britches" ten years ago. And they make a good case. Hell, I almost felt pity myself! But, ladies and gentlemen of this supposed jury, I have one final thing I want you to consider. Ladies and gentlemen, this is Chewbacca. Chewbacca is a Wookiee from the planet Kashyyyk. But Chewbacca lives on the planet Endor. Now think about it; that does not make sense!

Gerald Broflovski : Damn it!

Chef : What?

Gerald : He's using the Chewbacca defense!

Cochran : Why would a Wookiee, an eight-foot tall Wookiee, want to live on Endor, with a bunch of two-foot tall Ewoks? That does not make sense! But more important, you have to ask yourself: What does this have to do with this case? Nothing. Ladies and gentlemen, it has nothing to do with this case! It does not make sense! Look at me. I'm a lawyer defending a major record company, and I'm talkin' about Chewbacca! Does that make sense? Ladies and gentlemen, I am not making any sense! None of this makes sense! And so you have to remember, when you're in that jury room deliberatin' and conjugatin' the Emancipation Proclamation, [approaches and softens] does it make sense? No! Ladies and gentlemen of this supposed jury, it does not make sense! If Chewbacca lives on Endor, you must acquit! The defense rests.

Comment Why would anyone agree to it? (Score 2, Informative) 210

Where I am, vendors dance to our tune. Maybe it's because we're huge, but compared to the US we're tiny, but none of our vendors try that crap on us.

Jut the mere hint that we might think about going to a competitor, and they're scrabbling around on all fours, asking for forgiveness.

Don't agree to it in your contract and they have nothing on you? *shrug*

Comment The worst thing about this? (Score 4, Insightful) 388

The worst thing about this? 5,000,000 people who think they know what happened, posting "helpful" suggestions or analysis

"The problem is definitely spanning tree!"

or

"Back in 1998, we were running these HP switches right, and ..."

or

"Did you try resetting the flanglewidget interface?!"

or

"I've seen this exact problem! You need to upgrade to v5.1!"

etc

Its not your network. It doesn't matter how much you think you know, you don't know the topology, or the systems involved. It'll be interesting to know what the ACTUAL reason was, when they figure it out. Assuming it isn't aliens.

Slashdot Top Deals

If you have a procedure with 10 parameters, you probably missed some.

Working...