Domain: yahoo.com
Stories and comments across the archive that link to yahoo.com.
Stories · 5,662
-
CVS vs. Commercial Source Control?
Knight2K asks: "My company is currently using CVS to handle our code repository. The project managers, however, are unhappy with some problems with the system. Most of the developers appear to feel that CVS does what they need just fine, but don't seemed to be bothered by switching to something else. It seems to me that CVS handles part of these things, and cultivating a culture of responsible revision handling would take care of others. I would like to be an advocate for CVS here, but I don't want to just promote the Open Source solution if there are legitimate reasons or advantages to switching to a commercial project.""The project managers disliked CVS because of the following:
- Inadequate logging. (Management wants to be able see who is checking in what, how often, and how, track known issues, ChangeLogs, etc...).
- Controls for branching and merging are awkward
- Files can be edited by multiple users simultaneously without checkout.
- Work has been and will be lost due to lack of true version control.
- Has anybody made the jump from CVS to a commercial source code control system (or vice-versa)? Why? How do they compare to CVS?
- Anybody have procedures or processes they can share for handling branching and locking? How about tools to make the process easier?
-
Colleges Work To Block Net in Class
SkewlD00d writes: "The story is that colleges spent a load of money wiring schools, now they want more money to censor them in class. I bet I can get around any of this, all I need is a proxy server running on campus on port 80. LOL! But breaking it would probably violate the DMCA. Oh no, proxy servers are now all illegal!" From the article: "some classrooms at Bentley have technology that allows teachers to capture a student's e-mails or instant messages and display them on a large screen for the whole class to see." Of course, a lot of classes do (and will) require Internet access -- the article is more about steps taken to control exactly when and to what degree students can reach it. Update: 09/26 13:32 GMT by T : If the AP server-choosing link doesn't work well for you, el_nino-2000 suggests this Yahoo! link to the same text. -
WorldCom Bids On Various Rhythms Assets
iamabot writes: "DSL providers are cheap these days. After the AT&T acquisition of NorthPoint assets for 135 million, WorldCom has issued a 40 million dollar bid for various assets of Rhythms. The interesting thing here is after some other providers disconnected their subscribers, WorldCom seem to be interested in operating the existing network. I suspect this will actually be a fairly cheap endeavor, when compared to the capital and recurring expenditures DSL providers faced over the past few years, especially for WorldCom. The majority of the cost associated with lighting up a DSL network nationally involves the capital expenditures to buy the equipment and the huge recurring monthly transport costs for central office aggregation to a node. Does anyone else see the acquisitions in the past year or so as an opportunity for the DSL industry to rebound?" -
Satellite Radio Is Officially Here
dragons_flight writes: "XM Satellite Radio has officially launched, initially selling equipment only in the Dallas and San Diego markets, but going national by Nov. 15. A reciever for home or car costs ~$300 plus a $10/month subscription service. Many new cars will be pre-equipped with satellite-ready radios. XM provides 100 digital channels, a signicant number of which are commercial free. Sirius satellite radio says they are committed to launching be the end of the year." Any readers out there with the equipment for this have comments about it? ($10x12 + $300 makes $420 I'll be putting toward other things.) -
Napster Clawing Back
D Anderson n'Swaart writes: "As the BBC reports in this article, Napster is set to return shortly, as a subscription-based sharing service, a concept facing a less-than-rosy future. The report gives a brief history of Napster, and the current state of the various lawsuits that were brought against it. The briefs: Napster is going to have to fork over a total of around $36M USD, $10M of which is downpayment on future royalties." And whatAnotherAolUser writes that the company "agreed to pay $26 million to settle a copyright lawsuit with songwriters and music publishers, and to make royalty payments to the writers and publishers once it started a fee-based service." Guess it depends where you start counting. -
3D Labs Proposes OpenGL 2.0 To Kick DirectX
furiousgreencloud writes "3Dlabs is trying to drive the graphics interface away from hardware specific extentions, as seen in DirectX. Instead, they are proposing an open (no NDA) dialog on OpenGL 2.0. The guidelines mention good-ol-fashioned platform independence (linux included) and emphasis on programmability, time control and memory managemenmt. They've got a PDF availible for consumption." -
Inline Review With Miguel De Icaza
Thanks to Dare Obasanjo for conducting this interview with [Miguel De Icaza], and sending it on to me. I've posted the interview below here - interesting answers, and very thorough. Well done, Dare.
Interview With Miguel de Icaza Bringing a component architecture to the UNIX platformSummary
By Dare (Carnage4Life) Obasanjo
In this interview, Miguel de Icaza, the founder of GNOME and Ximian, talks about UNIX components, Bonobo, Mono and .NET.Dare Obasanjo: You have recently been in the press due to Ximian's announcement that it shall create an Open Source implementation of Microsoft's .NET development platform. Before the recent furor you've been notable for the work you've done with GNOME and Bonobo. Can you give a brief overview of your involvement in Free Software from your earlier projects up to Mono?
Miguel de Icaza: I have been working for the past four years on the GNOME project in various areas: organization of it, libraries and applications. Before that I used to work on the Linux kernel, I worked for a long time on the SPARC port, then on the software raid and some on the Linux/SGI effort. Before that I had written the Midnight Commander file manager.
Dare Obasanjo: In your Let's Make Unix Not Suck series you mention that UNIX development has long been hampered by a lack of code reuse. You specifically mention Brad Cox's concept of Software Integrated Circuits, where software is built primarily by combining reusable components, as a vision of how code reuse should occur. Many have countered your arguments by stating that UNIX is built on the concept of using reusable components to build programs by connecting the output of smaller programs with pipes. What are your opinions of this counter-argument?
Miguel de Icaza: Well, the paper addresses that question in detail. A `pipe' is hardly a complete component system. It is a transport mechanism that is used with some well known protocols (lines, characters, buffers) to process information. The protocol only has a flow of information.
Details are on the paper:
http://primates.ximian.com/~miguel/bongo-bong.html [Dare -- check the section entitled "Unix Components: Small is Beautiful"]Dare Obasanjo: Bonobo was your attempt to create a UNIX component architecture using CORBA as the underlying base. What are the reasons you have decided to focus on Mono instead?
Miguel de Icaza: The GNOME project goal was to bring missing technologies to Unix and make it competitive in the current market place for desktop applications. We also realized early on that language independence was important, and that is why GNOME APIs were coded using a standard that allowed the APIs to be easily wrapped for other languages. Our APIs are available to most programming languages on Unix (Perl, Python, Scheme, C++, Objective-C, Ada).
Later on we decided to use better methods for encapsulating our APIs, and we started to use CORBA to define interfaces to components. We complemented it with policy and a set of standard GNOME interfaces for easily creating reusable, language independent components, controls and compound documents. This technology is known as Bonobo. Interfaces to Bonobo exist for C, Perl, Python, and Java.
CORBA is good when you define coarse interfaces, and most Bonobo interfaces are coarse. The only problem is that Bonobo/CORBA interfaces are not good for small interfaces. For example, an XML parsing Bonobo/CORBA component would be inefficient compared to a C API.
I also wrote at some point:My interest in .NET comes from the attempts that we have made before in the GNOME project to achieve some of the things .NET does:
- APIs that are exposed to multiple languages.
- Cross-language integration.
- Contract/interface based programming.
And on top of things, I always loved various things about Java. I just did not love the Java combo that you were supposed to give or take.
APIs exposed to many languages we tried by having a common object base (GtkObject) and then following an API contract and a format that would allow others to wrap the APIs easily for their programming language. We even have a Scheme-based definition of the API that is used to generate wrappers on the fly. This solution is suboptimal for many reasons.
The Cross-language integration we have been doing with CORBA, sort of like COM, but with an imposed marshalling penalty. It works pretty well for non inProc components. But for inProc components the story is pretty bad: since there was no CORBA ABI that we could use, the result is so horrible, that I have no words to describe it.
On top of this problem, we have a proliferation of libraries. Most of them follow our coding conventions pretty accurately. Every once in a while they either wont or we would adopt a library written by someone else. This had lead to a mix of libraries that although powerful in result implement multiple programming models, sometimes different allocation and ownership policies and after a while you are dealing with 5 different kind of "ref/unref" behaviours (CORBA local references, CORBA object references on Unknown objects, reference count on object wrappers) and this was turning into a gigantic mess.
We have of course been trying to fix all these issues, and things are looking better (the GNOME 2.x platform does solve many of these issues, but still).
.NET seemed to me like an upgrade for Win32 developers: they had the same problems we had when dealing with APIs that have been designed over many years, a great deal of inconsistency. So I want to have some of this new "fresh air" available for building my own applications.
Dare Obasanjo: Bonobo is slightly based on COM and OLE2 as can be gleaned from the fact that Bonobo interfaces are all based on the Bonobo::Unknown interface which provides two basic services: object lifetime management and object functionality-discovery and only contains three methods:
which is very similar to Microsoft's COM IUnknown interface which has the following methodsmodule Bonobo { interface Unknown { void ref (); void unref (); Object query_interface (in string repoid); }; };
Does the fact that .NET seems to spell the impending death of COM mean that Mono will spell the end of of Bonobo? Similarly considering that .NET plans to have semi-transparent COM/.NET interoperability, is there a similar plan for Mono and Bonobo?HRESULT QueryInterface(REFIID riid, void **ppvObject); ULONG AddRef(); ULONG Release();Miguel de Icaza: Definetly. Mono will have to interoperate with a number of systems out there including Bonobo on GNOME.
Dare Obasanjo: A number of parties have claimed that Microsoft's NET platform is a poor clone of the Java(TM) platform. If this is the case why hasn't Ximian decided to clone or use the Java platform instead of cloning Microsoft's .NET platform?
Miguel de Icaza: We were interested in the CLR because it solves a problem that we face every day. The Java VM did not solve this problem.
Dare Obasanjo: On the Mono Rationale page it is pointed out that Microsoft's .NET strategy encompasses many efforts including
- The .NET development platform, a new platform for writing software.
- Web services.
- Microsoft Server Applications.
- New tools that use the new development platform.
- Hailstorm, the Passport centralized single-signon system that is being integrated into Windows XP.
Miguel de Icaza: Not at this point. We have a commitment to develop currently:
- A CLI runtime with a JITer for x86 CPUs.
- A C# compiler.
- A class library
All of the above with the help of external contributors. You have to understand that this is a big undertaking and that without the various people who have donated their time, expertise and code to the project we would not even have a chance of delivering a complete product any time soon.
We are doing this for selfish reasons: we want a better way of developing Linux and Unix applications ourselves and we see the CLI as such a thing.
That being said, Ximian being in the services and support business would not mind extending its effort towards making the Mono project tackle other things like porting to new platforms, or improving the JIT engine, or focusing on a particular area of Mono.
But other than this, we do not have plans at this point to go beyond the three basic announcements that we have made.
Dare Obasanjo: There are a number of other projects that are implementing other parts of .NET on Free platforms that seem to be have friction with the Mono project. Section 7.2 of Portable.NET's FAQ seems to indicate they have had conflict with the Mono project as does the banning of Martin Coxall from the dotGNU mailing list. What are your thoughts on this?
Miguel de Icaza: I did not pay attention to the actual details of the banning of Martin from the DotGNU mailing lists. Usenet and Internet mailing lists are a culture of their own and I think this is just another instance of what usually happens on the net. It is definitely sad.
The focus of Mono and .NET is slightly different: we are writing as much as we can in a high level language like C#, and writing reusable pieces of software out of it. Portable.NET is being written in C.
Dare Obasanjo: There have been conflicting reports about Ximian's relationship with Microsoft. On one hand there are reports that seem to indicate that there may be licensing problems between the license that will govern .NET and the GPL. On the other hand there is an indication that some within Microsoft are enthusiastic about Mono. So exactly what is Ximian's current relationship is with Microsoft and what will be done to ensure that Mono does not violate Microsoft's licenses on .NET if they turn out to be restrictive?
Miguel de Icaza: Well, for one we are writing everything from scratch.
We are trying to stay on the safe side regarding patents. That means that we implement things in a way that has been used in the past and we are not doing tremendously elaborate or efficient things in Mono yet. We are still very far from that. But just using existing technologies and techniques.
Dare Obasanjo: It has been pointed out that Sun retracted Java(TM) from standards processes at least twice, will the Mono project continue if .NET stops being an open standard for any reason?
Miguel de Icaza: The upgrade on our development platform has a value independently of whether it is a standard or not. The fact that Microsoft has submitted its specifications to a standards body has helped, since people who know about these problems have looked at the problem and can pin point problems for interoperability.
Dare Obasanjo: Similarly what happens if Dan Kusnetzky's prediction comes true and Microsoft changes the .NET APIs in the future? Will the Mono project play catchup or will it become an incompatible implementation of .NET on UNIX platforms?
Miguel de Icaza: Microsoft is remarkably good at keeping their APIs backwards compatible (and this is one of the reasons I think they have had so much success as a platform vendor). So I think that this would not be a problem.
Now, even if this was a problem, it is always possible to have multiple implementations of the same APIs and use the correct one by choosing at runtime the proper "assembly". Assemblies are a new way of dealing with software bundles and the files that are part of an assembly can be cryptographically checksummed and their APIs programmatically tested for compatibility. [Dare -- Description of Assemblies from MSDN gloassary]
So even if they deviate from the initial release, it would be possible to provide assemblies that are backwards compatible (we can both do that: Microsoft and ourselves)
Dare Obasanjo: Looking at the Mono class status page I noticed that a large number of .NET class libraries are not being implemented in Mono such as WinForms, ADO.NET, Web Services, XML schemas, reflection and a number of others. This means that it is very likely that when Mono and .NET are finally released apps written for .NET will not be portable to Mono. Is there any plan to rectify this in the future or is creating a portable .NET platform not a goal of the Mono project? Similarly what are the short and long term goals of the Mono project?
Miguel de Icaza: The status web page reflects the classes that people have "requested" to work on. The status web page is just a way of saying `Hey, I am working on this class as of this date' to avoid code duplication. If someone registers their interest in working on something and they do not do something after some period of time, then we can reclaim the class.
We are on the very early stages of the project, so you do see more work going on the foundational classes than on the end user classes.
I was not even expecting so many great and talented programmers to contribute so early in the project. My original prediction is that we would spend the first three months hacking on our own in public with no external contributions, but I have been proved wrong.
You have to realize that the goals of the Mono project are not only the goals of Ximian. Ximian has a set of goals, but every contributor to the project has his own goals: some people want to learn, some people like working on C#, some people want full .NET compatibility on Linux, some people want language independence, some people like to optimize code, some people like low level programming and some people want to compete with Microsoft, some people like the way .NET services work.
So the direction of the project is steered by those that contribute to it. Many people are very interested in having a compatible .NET implementation for non-Windows platforms, and they are contributing towards filling those gaps.
Dare Obasanjo: How does Ximian plan to pay for the costs of developing Mono especially after the failure of a number of recent venture funded, Free Software-based companies like Indrema, Eazel and Great Bridge and the fact that a sizable percentage of the remaining Free Software based companies are on the ropes? Specifically how does Ximian plan to make money at Free Software in general and Mono in particular?
Miguel de Icaza:Ximian provides support and services. We announced a few of our services recently, and more products and services have been on the pipeline for quite a while and would be announced during the next six months.
Those we announced recently are:
- Red Carpet Express: a subscription service for those who want a reliable high speed access to the Red Carpet servers.
- Red Carpet Corporate Connect: We modified our Red Carpet updater technology to help people manage networks of Linux workstations easily and to deploy and maintain custom software packages.
- Support and services for the GNOME desktop and Evolution: Our latest boxed products are our way of selling support services for the various products we ship.
The particular case of Mono is interesting. We are working on Mono to reduce our development costs. A very nice foundation has been laid and submitted to ECMA. Now, with the help of other interested parties that also realize the power of it, we are developing the Mono runtime and development tools to help us improve our productivity.
Indeed, the team working on Mono at Ximian is the same team that provided infrastructural help to the rest of the company in the past.
Dare Obasanjo: It is probably little known in some corners that you once interviewed with Microsoft to work on the SPARC port of Internet Explorer. Considering the impact you have had on the Free Software community since then, have you ever wondered what your life would have been like if you had become a Microsoft employee?
Miguel de Icaza: I have not given it a lot of thought, no. But I did ask everyone I interviewed at Microsoft to open source Internet Explorer, way before Netscape Communicator was Open Sourced ;-)
- APIs that are exposed to multiple languages.
-
Return to Castle Wolfenstein Test for Linux
jon_c writes: "Id has just released Return to Castle Wolfenstein for Linux multiplayer client test, download here for the full version, or here if you've already installed the windows version." -
Afghanistan Is Like Nothing You've Ever Seen
DaHuNt writes: "A well written article about Afghan experiences by the Soviets... Food for thought... 'When Igor Lisinenko entered what he was told was an Afghan rebel base in 1982, he wasn't sure what to expect. It was, after all, his first assignment...'" Very good article. Too bad we aren't learning from the British and Soviet mistakes. -
Robots Go To War
JKT writes: "According to The Times (of London): Predators, which can operate for 40 hours at a time ... can hover at up to 25,000ft, taking photographs in all types of weather, and at night with the use of infrared cameras ... For the first time in any operation, the Predators, developed by General Atomics Aeronautical Systems in San Diego, are also armed with Hellfire anti-tank missiles ... if a Predator spots a potential target, the ground operator can launch a Hellfire missile attack immediately." The article covers all the various pre-attack surveillance mechanisms, including special forces units of various countries. Interesting stuff, especially because it appears that one of those recon drones has already been shot down. -
Are There Any Fun Tech Jobs Left?
er0ck asks: "My first job out of college was working for an Internet Startup. They gave me some books and told me to learn Perl. Our office was a refurbished factory, with lots of light and open space. Best of all, we could bring our nerf toys in to work (and use them!). Four months later, the company went under. Several dot bomb jobs later, I work for my state government. Is anyone still having fun at their tech job?" I think that with the economic downturn, more companies are concentrating on survival more than being "fun". Are there any "fun" tech jobs left, or have they all suffered from the Economic Darwinism of the early 21st century?"[Government work is] steady work, but boring at times. (I don't think they'd approve of the Nerf guns). Without the pressure of staying in business, projects sometimes stagnate, leaving us with little to do. During these slow times, I help behind the scenes at NerfCenter.com; It's a fun site, and they are switching to Perl for their admin backend. It keeps my skills sharp, and wards off the boredom.
My questions to the Slashdot community are:
- Can you have a fun tech job, without the worry of being suddenly unemployed?
- If you are you forced (as I am) to get your fun on the side what are some good projects to get involved in?
- What do you to unwind and have a bit of 'fun' in the workplace?"
-
Non Photo Realistic Quake
Nick G Superstar writes "From the site: 'NPRQuake attempts to capture the elements of different drawing techniques, and immerse the viewer in worlds drawn entirely in the prescribed style. If you have ever imagined running around inside a painting or a drawing, you are beginning to get the idea.' Warning: the site is slow." Update Remember this story when we first ran it? Hemos doesn't. Obviously he was a bit pre-occupied this morning. Wonder why. -
XBox Delayed
rumrum writes: "From CNet: 'The company says it will delay the launch of its video game console by one week to Nov. 15 but declines to clarify exactly how many units it will have available at launch.'" AP has a slightly more informative article which points to production problems, and the LA Times has a story noting that production hasn't yet begun. -
Slashback: Licensure, Restriction, Cometry
Slashback tonight with more on the continuing role of Mitchell Baker with the Mozilla project, flying through comet trails, gaming particulars, and the interesting Microsoft FrontPage EULA forbidding certain types of web pages be made with it.Because not everything is as simple as who signs your paycheck ... cetan writes: "As a follow up to being laid off by AOL from Netscape, Mitchell Baker posted an article on Mozillazine discussing her role within Mozilla.org."
Can you think of a title to help her replace "Chief Lizard Wrangler"? All that wrangling has been a good thing, though, as recent builds make clear. I'd like to suggest "Reptilian Ambassador."
Sometimes, you just have to play. t0qer writes: "This is an update to this story. Originally I said kaillera was a net enabled version of mame, it's actually a free SDK to enable any emulator to have netplay. It was written by Christophe Thibault, of winamp fame. Contrary to some comments that the code was ripped from netmame, it was actually borged from jnetlib which was written by his boss and buddy Justin Frankel. So far kaillera has been adopted by 10 different emulators.
Speaking of games, iphayd writes: "Graeme Devine updated his plan , and released a version of Return to Castle Wolfenstein. While this isn't interesting in itself, he's claiming that he is getting 3x the frame rate on a dual 800 G4 system than his dual P3 800 system."
You shall not convert the news headlines in the MSNBC component into an audio format. MarkedMan writes: "There has been some confusion over Microsoft's Frontpage EULA, with some claiming it prohibited using the software to produce works disparaging Microsoft and some saying it simply prohibited the use of the Frontpage logo on such sites. (The logo restriction actually seemed reasonable to me.) After some searching I found that some versions of the EULA do indeed limit use of the program itself. This from Northwestern University's Microsoft User License: Check out page 2, section 2. http://www.tss.northwestern.edu/select/mspur.pdf"
We have come to terms. bkuhn writes: "The FSF and FSMLabs have an agreement on a GPL-compliant version of the RTLinux Open Patent License. You can read our statement and related press release on the matter."
It's cool to see this sort of conflict work be met and resolved.
Not quite a date with a star. Troodon writes "A brief reminder, JPL and BBCnews report that this Saturday (22/SEP/2001) at 2230 Universal time (3:30 p.m. PDT) Deep Space 1 has a date with the Comet Borrelly"
-
3G Spectrum - Off Limits After Attacks
Casey writes: "MSNBC is reporting that due to the recent attacks, potential 3G spectrum currently held by the military has been placed off-limits for the foreseeable future -- with no replacement on the table. The FCC says that it might remove the current "spectrum cap" restrictions, allowing bigger cellular companies to gobble up smaller ones just for their spectrum. Expect to see a lot of consolidation if this goes through." -
Did Whales Evolve From Pigs?
FortKnox writes : "According to this acticle, scientists have found proof that whales evolved from a pig/sheep like creature. Whale evolution has been sketchy for years, but a palentologist has plugged the gaps with some fossils found in Pakistan. It appears Hippos may be the closest relatives to whales." -
Premiums for Work Related Travel?
elbarsal asks: "I was just wondering if there is any common thoughts on the mechanics of travelling for work. I work for an automation consulting company, and have been asked to move into an industry where the likely split for travel is nearly 100% time on the road (as opposed to my current 20%). What benefits / compensation / time off have other people received for living out of a suitcase for 6 months? What consideration for those folks (like me) who have finally settled in (bought a house, joined organized sports leagues, etc.) has been or should be shown? Life on the road is ok for about the first week. After that, I start to miss things like my favourite pub and going out after work on Fridays, instead of spending time in far-off airports. Any thoughts?" -
Hacker Tinkering With Yahoo Stories
Lifter writes "A hacker named Adrian Lamo had access for three weeks to the web-based content control system for Yahoo!'s news section, according to a story at SecurityFocus. He tinkered with a couple of stories without anyone noticing, then edited an August Reuters story about Dmitry Sklyarov, so that it said that Dmitry's program raised "the haunting specter of inner-city minorities with unrestricted access to literature, and through literature, hope." He also added a quote by John Ashcroft,"They shall not overcome. Whoever told them that the truth shall set them free was obviously and grossly unfamiliar with federal law." Funny stuff in itself, but the SecurityFocus story explores the harm that could come from a trusted news site being easily hacked in these times." -
New Russian Module Adds Extra Airlock To ISS
bytor4232 writes: "I ran across this AP story on Yahoo about the new Russian module added to the ISS. Apparently this module will not only provide extra docking ports, but it will also serve as a backup to the U.S. air lock." -
American Megatrends's NAS based on custom FreeBSD
Asmodai writes "American Megatrends unveiled its StorTrends NAS software with NDMP support. This piece of software, which plugs into the StorTrends and ServTrends storage solutions, is a custom developed FreeBSD. Looks interesting for those who are interested in NAS and SAN and the subsequent managing and monitoring." It's interesting that this press release (because that's what it is) mentions FreeBSD by name. -
Watch TV On Your iPAQ
Aaron Collins writes: "It seems a Korean company has developed a TV add-on for the iPAQ. Check out the product page at Denali IT. The specs seem to be 30 frames per second for NTSC. Sorry, I can't read Korean. That's the best I can make out. Maybe someone can help translate the page. The add-on is on sale at Handango Korea for 264,000 Korean Won or around US$203." -
Testing Multicast on a Private LANs?
SD asks: "I am planning to write and experiment with multicast RTP streaming. I am not sure if my ISP supports multicast at the router level, so I am wondering if there any way I can set up a LAN in my home to experiment with multicast technology." For those of you who don't know what a Multicast network is, you may want to check the HOWTO. It strikes me that building a network to test multicasting would not be something you would want to do in too small of a scale. Without more details about what kind of application is getting tested, what do you feel would be a ballpark numbers (routers, machines, etc) for a network designed for testing multicast applications, and how much would such a thing cost? -
RTLinux Patents: Issue Closed?
Anonymous Coward writes "LinuxDevices.com reports that the Free Software Foundation has reached an agreement with Victor Yodaiken which resolves what FSF considered to be a violation of GPL by the Open RTLinux Patent License. Details are not yet available, but it sounds like the clause in the license which required users of RTLinux to keep records and provide them to FSMLabs on demand was the principal source of the violation, and that the requirement is being dropped from an updated version of the RTLinux license that will be published in the next day or two. All in all, it seems like the FSF has successfuly enforced the GPL even though it was neither an owner nor co-owner of the software (i.e. the linux kernel) whose license terms were being violated. It's interesting to see this practical example of FSF in action, and bodes well for the future of GPL -- at least in a small way."crimoid points to ZDNet coverage of the FSF's criticism of RTLinux's licensing terms, written before such a resolution was clear. Sourceforge on Thursday quoted RTLinux CEO Victor Yodaiken, CEO as saying that his company is happy to change "minor problems" with the RTLinux license, and that discussions are still going on with the FSF about those changes.
-
Combining The Simpsons with MarioCart
FortKnox writes: "The game Simpson's Road Rage was just announced for the Nintendo Game Cube (it'll also be available on PS2 & XBox). Looks like it will be extremely similar to Mario Cart, but with a heavy Simpsons theme. I remember the hours we would play mariocart at college (usually while drunk). This is one of the only ways to improve that game ..." Just a blurb right now, but "Sunday Driving mode" is the sort of thing I wished more games offered -- the ability to explore and poke at the virtual world without obsessing over levels and points. -
Who Makes the Best Power Supplies?
-
Artificial Intelligence Coding - Perl or Lisp?
blackcoot asks: "I'm currently suffering through an undergraduate class in AI where it appears that the first commandment of implementation is 'Thou shalt use Lisp of suffer the wrath of the TA'. I've been hacking away at Lisp for the past week now, and I've come to two conclusions: I hate Lisp; and Perl seems to have all the closure features that made Lisp so good in the past for AI [i.e. judicious use ofeval(...)and a little creativity can replace Lisp's(lambda ...)]. I'm looking to learn as much as possible from this class and hopefully not die implementing the projects in the process, so I'm hoping some of you out there can either point me in the direction of a decent Lisp manual or help me formulate arguments in favor of letting students use Perl as the implementation language." I can surely emphasize with blackcoot's troubles with Lisp, but can Perl emulate the features of Lisp that make Lisp good for AI? Might Perl have some advantages over Lisp when it comes to writing AI code?"I think my major source of frustration is that the all the documentation that I've found on Lisp out and out sucks and the recommended text for the course ANSI Common Lisp by Paul Graham is pretty useless except for the appendix which has a list of usage for all the macros and functions in ANSI Common Lisp."
Those of you interested in comparisions of Lisp with other languages might be also interested in the recent comparison of Lisp and Java, as well.
-
Further Updates On Terrorist Attack
Further news of the events going on around the world following the attacks earlier today on New York and Washington. To follow things even more closely, you are encouraged to join realtime CNN coverage in channel #cnn_newsfeed on irc.idlenet.org. (Doubtless there are other similar IRC and IM feeds going on -- please post them in comments.) In addition to the news below, note that CNN has reported that multiple suspects were arrested with a van loaded with explosives in the vicinity of New York's George Washington Bridge. Update: 09/12 04:29 AM GMT by T : Many readers have reported that the van in question was found not to contain explosives, though its occupants were held for questioning. And Giacomo DiGrigoli, international product manager at PayPal.com, wrote with word of a donation fund on the PayPal website where folks can make donations to the American Red Cross.Contradicting earlier reports, reader Adam Brookman writes: "I can guarantee that no car bomb went off in front of the State Dept. in DC. My father is part of the critical personel at State dept. When I read that I called him. He said he heard the same thing and he also heard that the building was hit by a plane, but neither were true."
Worth reading is this analysis of the motives and some possible suspects in today's violence, at Jane's International Security News. They've picked three plausible attackers. Motive aside, Jack Bryar has a convincing take on who is really most hurt by the attacks today.
babyruth writes: "amazon.com has a Red Cross Relief fund set up on their homepage, where you can contribute online. Only several hundred have contributed so far, let the power of /. help!" Iridium provides a link straight to the donations page, noting that "All standard fees are waived -- all proceeds go directly to the Red Cross." Of course, the Red Cross is -still- in desperate need of blood. If you can donate, please call 1-800-HELP-NOW to find the donation center nearest to you.
iggyflashbulb writes: "CNN reports some oddball group not associated with bin Laden is attacking Kabul at night. Are they taking advantage of the NY situation or did they create it?"
An anonymous reader writes: "Following the sad (and outrageous) mess of these terrorist attacks, results are already starting to impact the country. When a RSM failed on one of our 5500 Ciscos, we recieved the following notice
'Due to a national emergency completion of your case, delivery of your parts or engineer will be delayed until further notice. Several areas of the country have restricted transportation and currently no air traffic is available. Cisco will notify you as soon a we are able to dispatch your order.'
There doesn't seem to any information on Cisco's site."
CERT is in action as well: SilentTone writes: "Ween Hall at Carnegie-Mellon University was evacuated today so the the Computer Emergency Response Team could go into action."
Many readers have been assembling mirrors for the overloaded news sites of the world. Jon Anhold writes: "I've compiled more photos and what not, mirrored many of the sites around to help the load. They're available here: http://ziggy.dreamland.net/wtc/"
Owen Bossola writes: "This is a simple webpage I put up with shots I took all day of the World Trade Center. I go to school across the river at Stevens Institute of Technology and I watched the whole thing from campus. It is absolutely nuts, I'm looking out my window and for the first time, downtown NYC is dark, and there aren't two large buildings gleaming back at me."
rhyder writes: "I was last in the World Trade Center and the attached World Financial Center on Saturday evening. Many people I know work in those buildings, even more live and work in the shadow of those 2 towers.
From the Port Authority of NY and NJ:
- The Port Authority
- Trade Center Concourse Level Map
- Trade Center Plaza Level Map
- Trade Center Complex Overview
- Area Map showing southern tip of Manhattan and the Trade Center location."
Anyone else able to confirm this rumor?
Jon Bishop asks: "Why Today? Why did this attack happen on September 11, 2001. Here is a guess. I played with the date commonly used for programming. YYYYMMDD returns 20010911. 911...in 2001. Is this play on numbers intentional or coincidence?" It may be significant that the anniversary of a Congressional resolution "favoring a Jewish homeland in Palestine" falls on this date. Then again, if you go back a century or two, you may find a lot of anniversaries that seem just as significant.
Carl Merritt writes: "Since many sites seem to be creaking under the load today I've dumped every relevant picture and video I can find onto my server, please feel free to suck up some of my unused bandwidth with downloads or links: http://www.binaryvista.com/WTC/ I'll probably leave it up for a couple weeks, or until CNN asks me to remove their pictures ;-)."
An Anonymous Coward writes "I just want to remind everyone that there is still active air cover over at least Chicago. A tanker is orbiting O'Hare and at least what appear to be two F-15s are making the rounds. If you would like more information including frequencies I suggest subscribing to the CARMA mailing list at QTH.net for up to date monitoring information."
Disheartening news from Egypt: soulflakes points to this story of some Egyptians celebrating the attacks today. Here's a BBC piece which indicates the feeling is shared in some other African countries. This doesn't mean that all or most people in any country feel the same way.
yoda389 writes: "I'm getting reports from friends that gas prices are jumping to as much as $5.00 a gallon. There are huge lines at all gas stations here in my hometown someplace in Wisconsin." And ikohl1 writes: "A friend just informed me of how gas prices were raised to $3.50 in a town near where i live. I didn't believe him at first but I found this article on Yahoo."
Gas prices may fluctuate in the short term, but in the long haul, effects on exports of goods physical and abstract may be affected just as drastically: elliotj writes: "MSNBC has a Steven Levy opinion piece on the possible implications of today's attack on America and governmental policy on encryption export restrictions. Personally, I think we need to determine exactly what happened before blaming physical or electronic security measures for a role in the tragedy. I heard the planes were hi-jacked with knives ... that doesn't sound very high-tech or a sign of significant security failings to me. It is the act itself that is so shocking and sickening."
- The Port Authority
-
Further Updates On Terrorist Attack
Further news of the events going on around the world following the attacks earlier today on New York and Washington. To follow things even more closely, you are encouraged to join realtime CNN coverage in channel #cnn_newsfeed on irc.idlenet.org. (Doubtless there are other similar IRC and IM feeds going on -- please post them in comments.) In addition to the news below, note that CNN has reported that multiple suspects were arrested with a van loaded with explosives in the vicinity of New York's George Washington Bridge. Update: 09/12 04:29 AM GMT by T : Many readers have reported that the van in question was found not to contain explosives, though its occupants were held for questioning. And Giacomo DiGrigoli, international product manager at PayPal.com, wrote with word of a donation fund on the PayPal website where folks can make donations to the American Red Cross.Contradicting earlier reports, reader Adam Brookman writes: "I can guarantee that no car bomb went off in front of the State Dept. in DC. My father is part of the critical personel at State dept. When I read that I called him. He said he heard the same thing and he also heard that the building was hit by a plane, but neither were true."
Worth reading is this analysis of the motives and some possible suspects in today's violence, at Jane's International Security News. They've picked three plausible attackers. Motive aside, Jack Bryar has a convincing take on who is really most hurt by the attacks today.
babyruth writes: "amazon.com has a Red Cross Relief fund set up on their homepage, where you can contribute online. Only several hundred have contributed so far, let the power of /. help!" Iridium provides a link straight to the donations page, noting that "All standard fees are waived -- all proceeds go directly to the Red Cross." Of course, the Red Cross is -still- in desperate need of blood. If you can donate, please call 1-800-HELP-NOW to find the donation center nearest to you.
iggyflashbulb writes: "CNN reports some oddball group not associated with bin Laden is attacking Kabul at night. Are they taking advantage of the NY situation or did they create it?"
An anonymous reader writes: "Following the sad (and outrageous) mess of these terrorist attacks, results are already starting to impact the country. When a RSM failed on one of our 5500 Ciscos, we recieved the following notice
'Due to a national emergency completion of your case, delivery of your parts or engineer will be delayed until further notice. Several areas of the country have restricted transportation and currently no air traffic is available. Cisco will notify you as soon a we are able to dispatch your order.'
There doesn't seem to any information on Cisco's site."
CERT is in action as well: SilentTone writes: "Ween Hall at Carnegie-Mellon University was evacuated today so the the Computer Emergency Response Team could go into action."
Many readers have been assembling mirrors for the overloaded news sites of the world. Jon Anhold writes: "I've compiled more photos and what not, mirrored many of the sites around to help the load. They're available here: http://ziggy.dreamland.net/wtc/"
Owen Bossola writes: "This is a simple webpage I put up with shots I took all day of the World Trade Center. I go to school across the river at Stevens Institute of Technology and I watched the whole thing from campus. It is absolutely nuts, I'm looking out my window and for the first time, downtown NYC is dark, and there aren't two large buildings gleaming back at me."
rhyder writes: "I was last in the World Trade Center and the attached World Financial Center on Saturday evening. Many people I know work in those buildings, even more live and work in the shadow of those 2 towers.
From the Port Authority of NY and NJ:
- The Port Authority
- Trade Center Concourse Level Map
- Trade Center Plaza Level Map
- Trade Center Complex Overview
- Area Map showing southern tip of Manhattan and the Trade Center location."
Anyone else able to confirm this rumor?
Jon Bishop asks: "Why Today? Why did this attack happen on September 11, 2001. Here is a guess. I played with the date commonly used for programming. YYYYMMDD returns 20010911. 911...in 2001. Is this play on numbers intentional or coincidence?" It may be significant that the anniversary of a Congressional resolution "favoring a Jewish homeland in Palestine" falls on this date. Then again, if you go back a century or two, you may find a lot of anniversaries that seem just as significant.
Carl Merritt writes: "Since many sites seem to be creaking under the load today I've dumped every relevant picture and video I can find onto my server, please feel free to suck up some of my unused bandwidth with downloads or links: http://www.binaryvista.com/WTC/ I'll probably leave it up for a couple weeks, or until CNN asks me to remove their pictures ;-)."
An Anonymous Coward writes "I just want to remind everyone that there is still active air cover over at least Chicago. A tanker is orbiting O'Hare and at least what appear to be two F-15s are making the rounds. If you would like more information including frequencies I suggest subscribing to the CARMA mailing list at QTH.net for up to date monitoring information."
Disheartening news from Egypt: soulflakes points to this story of some Egyptians celebrating the attacks today. Here's a BBC piece which indicates the feeling is shared in some other African countries. This doesn't mean that all or most people in any country feel the same way.
yoda389 writes: "I'm getting reports from friends that gas prices are jumping to as much as $5.00 a gallon. There are huge lines at all gas stations here in my hometown someplace in Wisconsin." And ikohl1 writes: "A friend just informed me of how gas prices were raised to $3.50 in a town near where i live. I didn't believe him at first but I found this article on Yahoo."
Gas prices may fluctuate in the short term, but in the long haul, effects on exports of goods physical and abstract may be affected just as drastically: elliotj writes: "MSNBC has a Steven Levy opinion piece on the possible implications of today's attack on America and governmental policy on encryption export restrictions. Personally, I think we need to determine exactly what happened before blaming physical or electronic security measures for a role in the tragedy. I heard the planes were hi-jacked with knives ... that doesn't sound very high-tech or a sign of significant security failings to me. It is the act itself that is so shocking and sickening."
- The Port Authority
-
Further Updates On Terrorist Attack
Further news of the events going on around the world following the attacks earlier today on New York and Washington. To follow things even more closely, you are encouraged to join realtime CNN coverage in channel #cnn_newsfeed on irc.idlenet.org. (Doubtless there are other similar IRC and IM feeds going on -- please post them in comments.) In addition to the news below, note that CNN has reported that multiple suspects were arrested with a van loaded with explosives in the vicinity of New York's George Washington Bridge. Update: 09/12 04:29 AM GMT by T : Many readers have reported that the van in question was found not to contain explosives, though its occupants were held for questioning. And Giacomo DiGrigoli, international product manager at PayPal.com, wrote with word of a donation fund on the PayPal website where folks can make donations to the American Red Cross.Contradicting earlier reports, reader Adam Brookman writes: "I can guarantee that no car bomb went off in front of the State Dept. in DC. My father is part of the critical personel at State dept. When I read that I called him. He said he heard the same thing and he also heard that the building was hit by a plane, but neither were true."
Worth reading is this analysis of the motives and some possible suspects in today's violence, at Jane's International Security News. They've picked three plausible attackers. Motive aside, Jack Bryar has a convincing take on who is really most hurt by the attacks today.
babyruth writes: "amazon.com has a Red Cross Relief fund set up on their homepage, where you can contribute online. Only several hundred have contributed so far, let the power of /. help!" Iridium provides a link straight to the donations page, noting that "All standard fees are waived -- all proceeds go directly to the Red Cross." Of course, the Red Cross is -still- in desperate need of blood. If you can donate, please call 1-800-HELP-NOW to find the donation center nearest to you.
iggyflashbulb writes: "CNN reports some oddball group not associated with bin Laden is attacking Kabul at night. Are they taking advantage of the NY situation or did they create it?"
An anonymous reader writes: "Following the sad (and outrageous) mess of these terrorist attacks, results are already starting to impact the country. When a RSM failed on one of our 5500 Ciscos, we recieved the following notice
'Due to a national emergency completion of your case, delivery of your parts or engineer will be delayed until further notice. Several areas of the country have restricted transportation and currently no air traffic is available. Cisco will notify you as soon a we are able to dispatch your order.'
There doesn't seem to any information on Cisco's site."
CERT is in action as well: SilentTone writes: "Ween Hall at Carnegie-Mellon University was evacuated today so the the Computer Emergency Response Team could go into action."
Many readers have been assembling mirrors for the overloaded news sites of the world. Jon Anhold writes: "I've compiled more photos and what not, mirrored many of the sites around to help the load. They're available here: http://ziggy.dreamland.net/wtc/"
Owen Bossola writes: "This is a simple webpage I put up with shots I took all day of the World Trade Center. I go to school across the river at Stevens Institute of Technology and I watched the whole thing from campus. It is absolutely nuts, I'm looking out my window and for the first time, downtown NYC is dark, and there aren't two large buildings gleaming back at me."
rhyder writes: "I was last in the World Trade Center and the attached World Financial Center on Saturday evening. Many people I know work in those buildings, even more live and work in the shadow of those 2 towers.
From the Port Authority of NY and NJ:
- The Port Authority
- Trade Center Concourse Level Map
- Trade Center Plaza Level Map
- Trade Center Complex Overview
- Area Map showing southern tip of Manhattan and the Trade Center location."
Anyone else able to confirm this rumor?
Jon Bishop asks: "Why Today? Why did this attack happen on September 11, 2001. Here is a guess. I played with the date commonly used for programming. YYYYMMDD returns 20010911. 911...in 2001. Is this play on numbers intentional or coincidence?" It may be significant that the anniversary of a Congressional resolution "favoring a Jewish homeland in Palestine" falls on this date. Then again, if you go back a century or two, you may find a lot of anniversaries that seem just as significant.
Carl Merritt writes: "Since many sites seem to be creaking under the load today I've dumped every relevant picture and video I can find onto my server, please feel free to suck up some of my unused bandwidth with downloads or links: http://www.binaryvista.com/WTC/ I'll probably leave it up for a couple weeks, or until CNN asks me to remove their pictures ;-)."
An Anonymous Coward writes "I just want to remind everyone that there is still active air cover over at least Chicago. A tanker is orbiting O'Hare and at least what appear to be two F-15s are making the rounds. If you would like more information including frequencies I suggest subscribing to the CARMA mailing list at QTH.net for up to date monitoring information."
Disheartening news from Egypt: soulflakes points to this story of some Egyptians celebrating the attacks today. Here's a BBC piece which indicates the feeling is shared in some other African countries. This doesn't mean that all or most people in any country feel the same way.
yoda389 writes: "I'm getting reports from friends that gas prices are jumping to as much as $5.00 a gallon. There are huge lines at all gas stations here in my hometown someplace in Wisconsin." And ikohl1 writes: "A friend just informed me of how gas prices were raised to $3.50 in a town near where i live. I didn't believe him at first but I found this article on Yahoo."
Gas prices may fluctuate in the short term, but in the long haul, effects on exports of goods physical and abstract may be affected just as drastically: elliotj writes: "MSNBC has a Steven Levy opinion piece on the possible implications of today's attack on America and governmental policy on encryption export restrictions. Personally, I think we need to determine exactly what happened before blaming physical or electronic security measures for a role in the tragedy. I heard the planes were hi-jacked with knives ... that doesn't sound very high-tech or a sign of significant security failings to me. It is the act itself that is so shocking and sickening."
- The Port Authority
-
More Links And Reports On Terrorist Attacks
Timothy has compiled a good list of links related to this morning's terrorist attacks around America. Many photos and video clips. There's a lot of good links there and I highly recommend that you read them. And thanks to the Slashteam for keeping the servers up through this. Its not easy dealing with 3x the traffic. I apologize to readers that have been inconvenienced.Two major news updates: the plane downed near Pittsburgh is reported not to have been shot down. A fifth plane which had been feared hijacked, this one a Korean Air jetliner, was forced down by Canadian Air Force planes over the Yukon. However, this plane is reported not to have been hijacked -- instead, its emergency beacon was triggered by a low-fuel indicator.
Importantly -- remember, blood is in demand. The Red Cross' site is mobbed, but here's the blood donation information on a the cached page at google.
More details of the attack and its aftermath: a report at at gnome.org, and a photo at indymedia.org. pajama links to NYC Police scanner traffic (winamp) streamed online, and an anonymous reader also points to another scanner feed.
Shadowwalker Delaforge writes "Hey guys: I'm submitting my web site to yours to get the word out. I've been compiling web sites, and info on the U.S. Attack. These sites are ones that work, and arent' swamped out of existence. I'm also adding new data about where people can donate money, blood, and other things dealing with this.
soccerdad writes "Due to the activities of today, the internet/networking experts at my firm have been asked by some of our clients to be on standby in case anything untoward occurs. They've been monitoring backbone activity, etc., in a "just in case" mode. They've described the activity they're seeing as somewhat strange. The backbone is, according to them, at about 80% utilization -- they've never seen it above 40% before. However, the main portal sites such as Yahoo aren't having substantively higher than normal traffic. They're working on doing some traffic analysis but haven't completed that effort yet."
A small piece of that bandwidth may be saved if you go to the link Kalak suggests: "William Shunn is collecting short notes from people in the terrorist affected areas so you can see who is OK." Look here (or post your name here if you're in an affected city) before tying up a phone connection. Alex Fabrikant submitted another personal information site at Berkeley
Thapthim writes "http://cbc.ca/ has all sorts of information, even in our own city buildings are being shutdown, all air traffic has been suspended. However Canadian Airports are taking in international flights heading into US so the air ports there are free for emergencies."
sn0wcrsh wrote to say that a "short blurb on Channel 7 Boston that the CTO of Akamai was on the fateful plane that hit the trade center" confirms the earlier reports that he was on board.
And ectrix writes: "The CFO of my company, Netegrity was on United Airlines Flight 175, which has been confirmed to us by United Airlines to have hit tower two of the WTC.
WAVY NBC - Norfolk, VA (among other local TV stations I'm sure) is reporting on the air the Threatcon levels at the area Naval, Air Force, and Army bases. They are all at Threatcon Delta. Their website currently only lists their status as of the beginning of the attacks, which was Threatcon Charlie. Norfolk, VA is the home port for the US Atlantic Fleet. Local TV stations also are showing armed (M16s, shotguns) guards patrolling the base grounds and perimeters."
There are updated photos and videos here, and CarbonFusion wrote with another good link to photos and videos.. eddiem writes: "http://www.flightexplorer.com/ will soon let you view the flight path of the planes." Explanations of airport security at How Stuff Works and Cryptome are an interesting read under the circumstances as well.
Bard, Andrew wrote with some updates as well:
"Just to let you know:
- I heard a woman who was on the 92nd floor of the first WTC building when the plane hit it. She was able to escape and so was everyone "in her company" so it is assumed that virtually everyone from the 92nd floor down was evacuated successfully - an estimated 20,000 people of the 25,000 in the building.
- the plane that went down in PA had a woman onboard who locked herself in the bathroom with her cellular phone - she was telling authorities about the hijacking when the plane crashed and killed her - that is the only way the authorities knew for sure what plane went down in PA so quickly, she gave her flight number
- the Mexican border is completely closed and the Canadian border is still open - all International flights have been redirected to Northern Canada
- the planes from Boston were presumably chosen because they were going on long flights (to LA) which would make them larger than average airliners with full tanks of gas
- when the first WTC building crashed (which was the 2nd one to be hit), 125 firemen were down below fighting the fire on the first building to be hit... none of them have been heard from yet - 10,000 emergency personnel in NYC responded to the first WTC getting hit... it is unknown how many of those were crushed in the two collapsed buildings."
-
One Last mission For Deep Space 1
Vertigo01 writes: "Looks like NASA has found a fitting end for Deep Space 1, they're going to fly her THROUGH the coma of a comet to try and take some pictures of the comet's core ... the kicker is that they're doing it with barely any fuel left, and a kludged-together science-camera to replace the toasted navigation system ... kind of a fitting end for her IMO." -
Slashback: Errata, Futurity, Portality
Slashed back tonight: The (slight) return of the Y2K behemoth, good news for those locked out of port 80 by the recent unpleasantness, one interested party's response to Stephen Hawking's genetic-engineering ideas, and even an update on the Scarfo key-logging story.Better than world-wide anarchy and privation. kejoki writes: "I came into work today and nobody had voicemail. We use an ancient AT&T system 25 (Merlin) with the Audix automated attendant/voice mail system ... not my bailiwick but the boss was going nuts trying to figure it out.
He finally called his System 25 guy and found out that quite a few people were having the same problem. Inspiration hit, and he set the system date back before 31 Dec 1999 ... whammo! The voice mail returneth.
AT&T->Lucent->Avaya, of course, no longer supports the system...as a matter of fact the boss seems to recall getting a letter from AT&T saying that they'd be taking care of the Y2K problems which might be in their equipment; but another soon after saying that support for the System 25 would be dropped as of 31 Dec 1999 ... hmmm.
Oddly enough, he's had a problem with the system giving a database I/O error for a while, but since he reset the date that has also vanished.
All very interesting. At any rate, if you have a System 25 and you can't get your voice mail, set back the date!"And in related news, Che Fox writes :"The OpenLDAP project is one of the first to be hit by a major bug due to the S1G (one billion seconds) Unix time rollover. The slurpd replication daemon, which pushes changes from the master LDAP server to the slaves, no longer works now that time has rolled over to 1 billion seconds. This means that all LDAP-using networks in the world that use OpenLDAP and slave servers to replicate the data (very common) are now broken. There is a fix available against both the 1.2 and 2.x OpenLDAP releases in the OpenLDAP CVS repository."
You may assume your former activities for the moment. Agent Green writes: "I was checking out my firewall logs this morning and noticed an unusual amount of port 80 traffic and come to find out...it seems that AT&T Broadband has lifted their port 80 restrictions on its residential network. Let's see how long this lasts ..."
Probably until the next worm that takes over everyone's port 80, whatever OS it runs under.
So what did one giant say to the other? jshep writes: "Inventor Ray Kurzweil recently responded to physicist Stephen Hawking's concerns regarding the progression of AI (previous Slashdot story can be viewed here). Kurzweil takes aim at Hawking's suggestion that we use genetic engineering to augment the power of the human brain."
The man behind the curtain is ... uh, vital to national security! camusflage writes: "Reuters has a story (courtesy of Yahoo) that says the judge in the Nicodemo Scarfo believes the "national security" gambit about as much as the /. community does regarding the use of keyloggers. The most choice quote is "I don't know what it means. It's gobbledygook. More gobbledygook," referring to the argument put forth that the keylogger is a sensitive piece of national security. An assistant U.S. Attorney indicated he would provide "classified and unclassified summaries of the system's operation and more affidavits detailing the national security aspects at stake," next Friday."
-
AOL Time Warner Netscape CNN... and AT&T?
Baldrson noted a bit running on Yahoo right now where the AOL, Time, Warner, Netscape, CNN mega corporation is in talks with AT&T for their cable network. The inevitable and scary consolidation continues ever onward. The US govt will be sold on eBay in a few years, but only Microsoft and the corporation formerly known as Netscape AOL Warner CNN AT&T Time (NAWCAT) will be left to bid. But since Nawcat will already own ebay, there will no doubt be rumors of unfair play. -
Robot Family in Every Home?
cswilly writes: "Yahoo has a story that Sony wants to see a robot animal in every home. I was wondering if Sony has a total cost of ownership argument for these things? Let's see, $2500 for a robot dog + $100 in electricity oven ten years. A real dog costs, say $1/day to feed, lives ten years for $3650 on food, plus $1000 in vet bills. The robot wins hands down." But keeping it in Mom's Robot Oil isn't cheap either... -
Robot Family in Every Home?
cswilly writes: "Yahoo has a story that Sony wants to see a robot animal in every home. I was wondering if Sony has a total cost of ownership argument for these things? Let's see, $2500 for a robot dog + $100 in electricity oven ten years. A real dog costs, say $1/day to feed, lives ten years for $3650 on food, plus $1000 in vet bills. The robot wins hands down." But keeping it in Mom's Robot Oil isn't cheap either... -
Bouncing UK Children Cause Earthquake
Xibalba writes: "This is kinda cool. One million children in the UK jumped up and down simultaneously in an attempt to see what would seismically happen." This cries out to become an annual (and international) all-ages event. Bounce! Bounce! Gain weight! Bounce! Repeat. -
Hosting Provider Shut Down By FBI
An Anonymous Reader writes: "An 80-strong U.S. FBI agents raided the Texas-based host of Arabic Web sites, including that of the Arab world's leading independent news channel, prompting charges on Thursday of an 'anti-Muslim witchhunt.'" The Reuters story is at Yahoo! as well. Did you know there was a North Texas Joint Terrorism Task Force, or that it would be shutting down ISPs? -
Live-Virus Vaccine Blocks AIDS In Monkeys
joestump98 writes: "Using a weakened form of a virus commonly found in livestock and engineered to carry AIDS virus protiens, researchers have successfully protected monkeys from the deadly disease. They say it holds great promise for humans. The lead researcher says he hopes to have FDA approval within a year(!) and wishes they could start working with the drug in areas devastated by AIDS right away." -
Pocket PC 2002: Sweaty Palms?
joestump98 writes: "It appears Microsoft is launching the latest version of their Pocket PC. Here's the announcement from Microsoft about it." Perhaps Palm will fire back with something involving BeOS? -
Pocket PC 2002: Sweaty Palms?
joestump98 writes: "It appears Microsoft is launching the latest version of their Pocket PC. Here's the announcement from Microsoft about it." Perhaps Palm will fire back with something involving BeOS? -
Liquid Material becomes Solid in Magnetic Field
FortKnox writes: "Cool cool stuff, here. This Y! article talks of a substance that can morph between liquid and solid by the presence of a magnetic field. Now this is something you can make into a cool toy!" -
Fighting Fire From the Sky
exceed writes: "Yahoo! News has an article on an unmanned robotic airplane that is able to circle around wild fires for up to 24 hours, sending data and images back down to earth via satellite. The Altus II, created by NASA, employs cutting edge technology usually seen in military aircraft, giving fire officials a real-time view of fires that can burn over hundreds of thousands of acres. The plane could map dozens of fires and topographical features in a day, never endangering a pilot." -
Fighting Fire From the Sky
exceed writes: "Yahoo! News has an article on an unmanned robotic airplane that is able to circle around wild fires for up to 24 hours, sending data and images back down to earth via satellite. The Altus II, created by NASA, employs cutting edge technology usually seen in military aircraft, giving fire officials a real-time view of fires that can burn over hundreds of thousands of acres. The plane could map dozens of fires and topographical features in a day, never endangering a pilot." -
Gallium Arsenide Semiconductors on the Horizon
Masem writes: "According to this Chicago Tribune article, Motorola has developed a cheaper solution for putting gallium arsenide on top of silicon in order to allow for better chip designs with speeds nearly 40 times what silicon only chips would allow. While it was well known that gallium arsenide addition was favorable, it was also very expensive; Motorola's new process (covered by 200+ patents) should keep the chip prices low when these new designs are released in 2 years." The AP says they've applied for 270 patents. -
Sbox Homemade Console
Anonymous Coward sent in: "I just ran across a very cool homemade emulation console. It emulates multiple machines, plays movies, plays mp3s, and uses Intel's new wireless gamepads to control everything. It's also cased in plexiglass and uses its own menuing software. The best I've seen yet!" His remote has a docking station. -
Stephen Hawking On Genetic Engineering vs. AI
Pointing to this story on Ananova, bl968 writes: "Stephen Hawking the noted physicist has suggested using genetic engineering and biomechanical interfaces to computers in order to make possible a direct connection between brain and computers, 'so that artificial brains contribute to human intelligence rather than opposing it.' His idea is that with artificial intelligence and computers, which increase their performance every 18 months, we face the real possibility of the enslavement of the human race." garren_bagley adds this link to a similar story on Yahoo!, unfortunately just as short. Hawking certainly is in a position shared by few to talk about the intersection of human intellect and technology. -
Sklyarov, Elcomsoft Plead Not Guilty
squared99 writes: "I'm sure it has already flooded slashdot, but Dmitri has entered his plea, not guilty. This NYTimes article talks about it. Not sure I like the mention of bumper stickers, as opposed to the real people who have been protesting, but at least it talks about the support he has been getting. It even appeared as one the main newsworthy item on my daily NYTimes newsletter, Yay! Let's keep up the support and protests. As my brother said to me the other day, "The only way to beat bullies is to stand up to them."" See also Elcomsoft's statement about the case, a story in the Boston Globe, and this cute fable about a DMCA future. Update: 08/31 19:37 PM GMT by M : one more link - the Russian Foreign Ministry has warned its programmers not to travel to the United States. -
Superconducting Buckyballs
-
Superconducting Buckyballs
-
Mice Headed for Mars?
MarsOrBust writes: "The Mars Society today announced their next project, called TransLife, will be to send an Apollo size spacecraft manned by mice into earth orbit rotating at Mars gravity. This will be the first time anyone has done research at Martian gravity. The purpose of the experiments is to prove that the transit to Mars, which would take about six months, should be done at Martian gravity. The project would cost about $10 million. In a related article SpaceRef talks about how millionaires are now starting to fund these type of private missions and speculates whether billionaires might fund further space projects." MSNBC has a story.