Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror

Comment Re:but... (Score 1) 351

Isn't it more than a bit arrogant and unrealistic to think the US is the only country with these technologies?
I mean, I know many Americans like to believe the US invented absolutely everything and are ahead of everyone else technologically, but in fact they really didn't and aren't.

I think you'll find that technologies commonly found outside the U.S. don't see a lot of demand for smugglers to sneak them out of the U.S. illegally.

Programming

6 Languages You Wish the Boss Let You Use 264

Esther Schindler writes "Several weeks ago, Lynn Greiner's article on the state of the scripting universe was slashdotted. Several people raised their eyebrows at the (to them) obvious omissions, since the article only covered PHP, Perl, Python, Ruby, Tcl and JavaScript. As I wrote at the time, Lynn chose those languages because hers was a follow-up to an article from three years back. However, it was a fair point. While CIO has covered several in depth, those five dynamic languages are not the only ones developers use. In 6 Scripting Languages Your Developers Wish You'd Let Them Use, CIO looks at several (including Groovy, Scala, Lua, F#, Clojure and Boo) which deserve more attention for business software development, even if your shop is dedicated to Java or .NET. Each language gets a formal definition and then a quote or two from a developer who explains why it inspires passion."
User Journal

Journal Journal: Programming puzzle 12

Write a "Hello world" program, without using a semicolon, in:
  1. C (puzzle taken from here) -- takes a while if you've switched your mentality from C to Java (is that a hint or what?)
  2. Java (a bit more thought and knowledge of language is necessary)
User Journal

Journal Journal: While waiting for enums in Java

catamount suggested the following trick:

public static final int ZERO = 0x0;
private static int enum = ZERO;
public static final int FIRST = ++enum;
public static final int SECOND = ++enum;
...

User Journal

Journal Journal: From the "no shit" department...

A Microsoftie blogs (emphasis mine):

I'm a Microsoft guy, so reading news about the spread of Linux is often times disheartening. [...] Linux advocates will go to no end to find new and interesting ways to position the language, installing it on anything with a microprocessor.

Say what?

User Journal

Journal Journal: From the "hobgoblin-of-little-minds" department

So I download a VSS plugin for Eclipse. The ZIP archive is entitled org.vssplugin_1.5.0- 3.0-M8 -compability.zip. Yeah, 3.0-M8 , just what I wanted. But the Readme.html file (which has a <TITLE> tag reading"VSS Plugin version 1.5 for Eclipse 2.1 ") includes the following statements (ellipsis and emphasis mine):
User Journal

Journal Journal: Java tautologies

Ok, so you can have abstract as a method modifier in a Java interface, though it's redundant, as they're implicitly abstract. But I just accidentally discovered that an interface itself can be defined explicitly abstract. Why, Mr.Anderson?
User Journal

Journal Journal: Feature: cut-and-paste flexibility

WIBNI (wouldn't it be nice if) one could:
  • ...switch, at will, between MS Windows style way (highlight, then perform copy action, saving the result to clipboard, then pasting) and X way (highlight copies, some other action -- like mouse middle button -- pastes, with no action required to save -- "copy" -- the highlighted portion, and thus the next highlighting replaces the previous contents of the clipboard).
  • ...switch between highlighting al

Slashdot Top Deals

APL is a write-only language. I can write programs in APL, but I can't read any of them. -- Roy Keir

Working...