Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:Doesn't matter in the end (Score 2) 472

The "TODO" flag isn't what's wrong there, the "this" part is. It's obvious that the TODO relates to the nearby code (this, not that). It's still not obvious what needs to be fixed. It could be a lack of performance, error handling, input validation. Some use-cases/states/values might not be covered/tested/identified or implemented. But the answer is always: why. Ask yourself "why am I adding a comment here" and the answer is the perfect comment.

Comment Re:Look at the bright side (Score 1) 224

People not so long ago would have said that about many of the things we take for granted today.

And those people were right, for dozens of generations to come. What we might achieve in 2300 is not relevant today. Sure, we must try to continue scientific and technologic progress. With both revolutionary discoveries and evolutionary practical solutions. But constructing a planet, as of now, is indeed totally out of reach.

What we have to show for is just a single permanently inhabited construction in orbit, just one dozen of men on the moon in total and an growing but still insignificant number of unmanned landings on other bodies orbiting Sol. While I'm hopeful our descendents could create an artificial planet, I have to agree with GP that we, the humans alive as we speak, will most certainly not.

Comment Re:bugs.txt (Score 4, Interesting) 221

I wrote find-issues.sh, a script that extracts comments of a certain type within the code and then groups them by file. Downside: your code files change when you register a bug. Upside: when done right, your bug description is next to the code that needs fixing.

Obviously won't work for distributed development, but for single-coder projects, it's really been useful to me.
Note some assumptions and grep magic to exclude third-party files and other non-code files.

#!/bin/sh

LASTFILE=""
egrep -ri "(WARNING|HACK|FIXME|TODO|BUG)" . | egrep -vi "(\.git|debug|/third-party|/locale|/prettify|doc/|/jquery-|lib/s3.php|/jwysiwyg/|^./(.*)\.(txt|conf|xml):(.*))" | while read LINE ; do
        FILE=`echo "${LINE}" | cut -d":" -f1`
        DATA=`echo "${LINE}" | cut -d":" -f2- | cut -d"/" -f3-`
        LEVEL=`echo "${DATA}" | cut -d":" -f1`
        COMMENT=`echo "${DATA}" | cut -d":" -f2-`

        if [ "x${LASTFILE}" != "x${FILE}" ]; then
                if [ "x${LASTFILE}" != "x1" ]; then
                        echo
                fi
                printf "%s:\n" "${FILE}"
                LASTFILE=${FILE}
        fi
        printf "%5s:%s\n" "${LEVEL}" "${COMMENT}"
done

Mars

Submission + - Mars One: human settlement in 2023 (mars-one.com)

Rob Kaper writes: "Mars One is a Dutch enterprise aiming to establish a human settlement on Mars by 2023, starting with four permanent settlers followed by others every two years. The mission is to be financed privately by creating a massive media event and Mars One claims to have found at least one potential supplier "for every component of the mission". Can private space endeavours go where no nation state has gone before?"
Space

Submission + - Missing Matter, Parralel Universes ? (universetoday.com)

Phoghat writes: "Could mirror universes or parallel worlds account for dark matter — the ‘missing’ matter in the Universe? In what seems to be mixing of science and science fiction, a new paper by a team of theoretical physicists hypothesizes the existence of mirror particles as a possible candidate for dark matter. An anomaly observed in the behavior of ordinary particles that appear to oscillate in and out of existence could be from a “hypothetical parallel world consisting of mirror particles,” says a press release from Springer. “Each neutron would have the ability to transition into its invisible mirror twin, and back, oscillating from one world to the other.”"

Comment Re:poor (Score 4, Insightful) 1027

You underestimate the influence of mavens. The average user is not going to drop dollars on a phone or phone plan if their favourite tech expert doesn't like it.

True, but the mavens are not motivated by hatred against Microsoft. They are motivated because:

1. iOS and Android have been proven to work.
2. iOS and Android have a large ecosphere of apps. And tech users. And non-tech users.
3. iOS this and Android that.

Apple, Samsung and HTC have repeatedly been on the top of "best phone" lists for years now. Nokia's Windows phone is not being ignored because it is worse or disliked, it is being ignored because no one has one in the first place to offer a recommendation. Under those circumstances it's not good enough to compete, one has to be better. And it's not significantly better.

Comment Ticketing, apps, subscriptions (Score 2) 191

Facebook is not just a social network, it's consumer groupware. Compare it to television or telephone, not to Myspace and other previous offerings focusing solely on the social factor.

I expect the following:

- provides ticketing for events.
- a store for media content and app content.
- even a premium subscription model to remove ads (hi Slashdot!).

Slashdot Top Deals

After a number of decimal places, nobody gives a damn.

Working...