Forgot your password?

typodupeerror
The Internet

Ron Paul Asks UN For Help Geting Control of RonPaul.com Domain From Fans 611

Posted by samzenpus
from the strange-bedfellows dept.
First time accepted submitter thoughtfulbloke writes "Ron Paul has gone to the United Nations' World Intellectual Property Organization to seize control of the RonPaul.com domain from the fans that built it up, rather than purchase it. From the article: 'The proprietors of RonPaul.com say they reached out to the retired politicain and offered him RonPaul.org as a free gift, but if he "insisted" on owning RonPaul.com then they would sell it to him. There was a catch, though. It would be part of a "liberty package" with the site's 170,000 person mailing list for... wait for it... $250,000. They think the price is totally worth it: '"
Apple

+ - Adobe and Apple didn't unit test for "forward date" bugs. Do YOU?->

Submitted by llamafirst
llamafirst writes "As the year flipped to 2013, we learned that Adobe and Apple don't test for "forward date" bugs. Adobe prevented any copy of FrameMaker 10 from launching and Apple broke Do Not Disturb for the first week of 2013. Surely some more critical and safety systems also have lurking issues. Got tips for catching time/date bugs "from the mysterious future"? (also, oblig link to Falsehoods programmers believe about time)"
Link to Original Source

Comment: Re:I Respectfully Disagree with You (Score 1) 584

by llamafirst (#38215252) Attached to: Google Throws<nobr> <wbr></nobr>/. Under Bus To Snag Patent
Well said.

And btw... About this line

> The website will be a therapist -- telling you only what you want to hear

this was a surprising comment to me. If that was your experience with a therapist, please don't assume that all therapists would have such a useless strategy!

Good well-trained and empathetic therapists do challenge assumptions and help move you towards useful and new perspectives not merely ego stroking. Everyone if possible should shop around for therapists and find someone that is a good fit, and that includes getting the right amount of insightfulness and independence of thought, with rapport but also without fear of speaking truthfully in your presence.

Science

Artificial Synapse Created For Synthetic Brain 129

Posted by timothy
from the let's-vote-these-amateur-clowns-out-of-office dept.
Zothecula writes "It's probably still going to be a while before autonomous, self-aware androids are wandering amongst us. That scenario has come a little closer to reality, however, with researchers from the University of Southern California having created a functioning synapse circuit using carbon nanotubes. An artificial version of the connections that allow electrical impulses to pass between neurons in our brains, the circuit could someday be one component of a synthetic brain."
Image

Scientists Create a "Worth Saving" Index For Endangered Animals 259 Screenshot-sm

Posted by samzenpus
from the not-worth-the-effort dept.
If you're one of the last hairy-nosed-wombats left in Australia things got a little worse for you today. Thanks to a new mathematical tool created by researchers from James Cook University and the University of Adelaide, the wombat has been classified as not worth saving. Co-author of the safe index Professor Corey Bradshaw says he doesn't think people should give up on saving extremely endangered animals but adds, "...if you take a strictly empirical view, things that are well below in numbering in the hundreds - white-footed rock rats, certain types of hare wallabies, a lot of the smaller mammals that have been really nailed by the feral predators like cats, and foxes - in some cases it is probably not worthwhile putting a lot of effort because there's just no chance."

Comment: Dunning-Kruger Effect (Score 3, Informative) 757

by llamafirst (#34974082) Attached to: America Losing Its Edge In Innovation

The popular belief these days is that everyone is allowed to a have 'democratic' opinion on any subject regardless if they have any clue as to what they are talking about

These links may also be enlightening:

http://www.boingboing.net/2010/05/12/confident-dumb-peopl.html

https://secure.wikimedia.org/wikipedia/en/wiki/Dunning-Kruger_Effect

Technology

Apple Creating Cloud-Based Mac? 204

Posted by CmdrTaco
from the how-many-fps-doom dept.
hostedftp writes "In speculation news making the rounds — Apple's recent activities in the Cloud has been leading to conclusions of the what the innovative giant plans to unleash in 2011. The most recent news of Apple applying and securing a patent for a network-boosted OS has made speculators believe Apple is going to launch a Cloud-based operating system for the Mac."

Comment: Is Bender Bending Rodriguez... God? (Score 1) 277

by llamafirst (#34523974) Attached to: A Lost Civilization Beneath the Persian Gulf?

Most tales about YHWH aren't painting a picture of a nice guy. It's not that unreasonable to even half-seriously suggest that YHWH was an alien; too many of his actions and orders are pretty inhuman by anyone's measure, but fit a heartless robot just fine.

Yeah, because when you do things right, people won't be sure you've done anything at all.

See http://en.wikipedia.org/wiki/Godfellas

The Military

A Peek At South Korea's Autonomous Robot Gun Turrets 298

Posted by timothy
from the next-week-at-thinkgeek dept.
cylonlover writes "If there's one place you don't want to be caught wandering around right now, it's the demilitarized zone that separates North and South Korea. Especially since South Korean military hardware manufacturer DoDAMM used the recent Korea Robot World 2010 expo to display its new Super aEgis 2, an automated gun turret that can detect and lock onto human targets from kilometers away, day or night and in any weather conditions, and deliver some heavy firepower."

Comment: extensible type system also means type loaders (Score 1) 330

by llamafirst (#34179492) Attached to: Gosu Programming Language Released To Public

I am not sure what the "extensible type system" means

It means that you can add methods or properties to a class without subclassing it. This feature is one of the very few things that I actually like about Objective C.

http://gosu-lang.org/doc/wwhelp/wwhimpl/api.htm?&context=gosu&src=enhancements&topic=Using_Enhancements

It also means that Gosu supports custom type loaders that dynamically inject types into the language so you can use them as native objects in Gosu.

For example, custom type loaders add Gosu types for objects from XML schemas (XSDs) and from remote WS-I compliant web services (SOAP). Later versions of the Gosu community release will include more APIs and documentation about creating your own custom type loaders.

Modules of code containing type loaders can create entire namespaces of new types. This means that a type loader can import external objects and let Gosu code manipulate them as native objects. There are two custom type loaders that included in Gosu: (1) Gosu XML typeloader. This type loader supports the native Gosu APIs for XML. For more information, see "Gosu and XML". (2) Gosu SOAP typeloader. This type loader supports the native Gosu APIs for SOAP.

The first Gosu community release does not yet include these add-on typeloaders that support these APIs due to in-progress changes in bundling add-on typeloaders. The Gosu documentation describes the XML and web services APIs right now so you can become familiar with these upcoming APIs.

For more information http://gosu-lang.org/doc/wwhelp/wwhimpl/api.htm?&context=gosu&src=intro&topic=Extensible_Type_System

Comment: Re:Looks very interesting (Score 1) 330

by llamafirst (#34174384) Attached to: Gosu Programming Language Released To Public

But I really like my semicolons (as much as lispers like their parenthesis)

Good news then!!!

Because you CAN use your semicolons in Gosu!

They are optional, although not the standard Gosu coding style. http://gosu-lang.org/doc/wwhelp/wwhimpl/api.htm?&context=gosu&src=intro&topic=Gosu_Statement_Terminators

Comment: Re:Cool. Next, fix the VM (Score 1) 330

by llamafirst (#34174358) Attached to: Gosu Programming Language Released To Public

New languages for the JVM are cool and all, but still no syntax fixes the problems inherent in the JVM. Mainly, the lack of generics.

Actually there are several improvements to the Gosu generics system that workaround JVM limitations.

In Java, when you use generics, the true type like MyClass is erased and it just becomes MyClass at run time. This called type erasure.

In Gosu, if you do the same thing, assuming MyClass is a Gosu type, the run time type is really MyClass. This is called reified generics.

(Note however that if the type is a Java type to start out with, like java.util.ArrayList, then the generic version ArrayList in Gosu follows the type erasure route as you'd imagine.)

But if you are playing in the Gosu world with Gosu types (for example, a Gosu class ), the language adds code that really does preserve generics even though the JVM doesn't natively think that way.

Comment: Re:Gosu! (Score 1) 330

by llamafirst (#34174248) Attached to: Gosu Programming Language Released To Public

"But it IS a piece of Gosu!"

Don't worry: the language will probably be cancelled before it has a chance to really get going.

Anyway, that was my first thought too, then I wondered if it was an invitation to Oracle's lawyers...?

regarding the "chance to really get going", Gosu is already used by multi-billion dollar companies around the world already, for a bunch of years.

See a list of companies here: http://www.guidewire.com/our_customers

It's just that the language now available to a wider audience who want it, not just Guidewire Software customers.

WHERE CAN THE MATTER BE Oh, dear, where can the matter be When it's converted to energy? There is a slight loss of parity. Johnny's so long at the fair.

Working...