Slashdot Mirror


User: chthon

chthon's activity in the archive.

Stories
0
Comments
1,236
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1,236

  1. Re:High-level, better-trained IT workers opportuni on Gartner Reveals Top 10 Technologies For Next 4 Years · · Score: 1

    My experience with IT at my job is that the people who do SAP have the knowledge (they come from the mainframe era), but the people who do the PCs don't (they are people that think they know about computers because they can find the on switch and know how to reboot using Ctrl-Alt-Del).

  2. Re:Let me be the first to say on Gartner Reveals Top 10 Technologies For Next 4 Years · · Score: 2, Informative

    It looks to me a solution with the same problems as microprogramming : looks good in theory, but too many strings attached in practice.

    One of the biggest obstacles I see is the fact that this FPGA does not run on its own : you need several interfaces (hard and soft) to the chip.

    • A programming interface
    • A data exchange interface (byte or block oriented ? or maybe both)
    • A driver of course, based upon the above byte or block oriented interface
    • An application library, containing the code to reprogram the FPGA. Can you standardise on just one type of FPGA for your host architecture ?
    • Also part of the application library, the code to interface with the programmed functionality.

    I won't say wide deployment is not possible, but before that happens a whole lot of standardisation needs to be done first.

  3. Re:Aging Engineers on What Makes a Programming Language Successful? · · Score: 1

    If you talk about good engineering practices : it seems that Java was developed in order to make the developers think before they code. However, why was Java invented then ? They could have built upon what Ada was already.

  4. Re:... Evolution... on What Makes a Programming Language Successful? · · Score: 1

    How long will it take before Java evolves into Common Lisp ?

  5. Re:I'd second that on Bill Gates: Windows 95 Was 'A High Point' · · Score: 1

    With the slate of problems I see with a whole lot of commercial software, I think that most commercial software is made to make a killing sale, wit the possibility of being useful for the customer as a side effect.

    1. Create or buy software that fullfils some task in a basic way
    2. Create a sales pitch and an impressive slide show
    3. Sell to PHB
    4. Profit!
    5. More profit in yearly renewal of licenses!
    6. Even more profit in forcing obsolescence of old versions!

    (There is no !!??)

  6. Re:4. Profit! on Windows 7 Won't Have Compact "MinWin" Kernel · · Score: 1

    Microsoft's promises never have been the real geeks wet dream.

    It is mostly the wet dream of people who think they are geeks because they can turn on their computer and know how to reboot it by pressing Ctrl-Alt-Del. Those people that just know enough to be dangerous for themselves and everybody around them.

  7. Re:Very interesting article on Details Emerging On Tunguska Impact Crater · · Score: 1

    Nurse or nuke ? (but that was about Ronald Reagan)

  8. Re:Why not just buy a Mac Mini? on Asus Set To Release Desktop Eee PC Variant · · Score: 1

    100%. Two hunderd percent would be $900.

  9. Re:I thought ... on A Look At the Lightweight Equinox Desktop Environment · · Score: 1

    I think using screen in that case is even better.

  10. Re:Surprise, Surprise... on The Future According To nVidia · · Score: 1

    This answer is very interesting because I seem to remember that MMX was introduced because Philips planned to create specialty co-processor(s) (boards) (around 96/97) to off-load multi-media tasks, so that sound processing would take less CPU cycles and to introduce video processing. Intel did not like this idea and added MMX just to cut off such things.

  11. Re:HyperCard and SOA on HyperCard, What Could Have Been · · Score: 1

    I think so too. I have owned two classic 80's machines, a ZX Spectrum and a Sinclair QL, which where nice little machines. For both I had text processing and spreadsheet software, on the QL I there was also database software.

    The beginning of the 90's created a rift. The IBM PC started replacing all those 80's machines, because of the availability of certain software. It presents a step forward in accessibility for normal users, but a step back for people interested in computers or people who could become interested in computers. In the 80's, it was obvious, by the exposition of the BASIC interpreters, that a computer was a programmable machine.

    However, with IBM PC's this was not so straightforward anymore, even though MS-DOS included GW-BASIC and later QBASIC.

    The rise of Microsoft in the 90's has also given rise to uncertainty about using a computer : if there is an error, is it hardware, software or did you make an error ? With those small machines, it was easy : it was either the hardware or you. That's why I like Linux (and before that OS/2) : it gives the same feeling of confidence in your machine.

  12. Re:So communism works on paper? on Total Phone and Email Database Proposed In UK · · Score: 1

    -5 Totally taken out of context

  13. Re:Well *I'm* ugly and stupid... on The Future of Subversion · · Score: 1

    With bazaar, you can create a branch from a central repository, or a checkout. When you commit to a branch, the change is local and needs to be pushed to the central repository. When you commit in a checkout, the change is immediately pushed to the central repository. I do not know enough about triggers in bzr, but I presume it should be possible to write one which makes it impossible to checkout branches, but only checkouts.

  14. Re:Distributed VCS can be used like this on The Future of Subversion · · Score: 1

    you make good point about the restoration. A couple of years ago I deleted by accident some administrative objects from a Continuus VCS. It took my boss 6 hours to do a restore. It would be better to have a bzr like system, with a parallel repository which could be set up with triggers to mirror every commit, or to do every hour a push if nothing is happening. That way, if something happens, you just switch repositories and everybody can continue.

  15. Re:Well *I'm* ugly and stupid... on The Future of Subversion · · Score: 1

    You forgot bzr. I like bzr. It is easy to use, has a fairly rapid release schedule (with multi-platform releases all at the same time) and a very good mailing list.

  16. Re:That's easy on Terrorist Recognition Handbook · · Score: 2, Interesting

    Although this has been known for some time. It's not poor, defenseless people who become terrorists, no matter how much mr. Obama would like them to be. It's knowledgeable, rational, intelligent and rich people, who have but to choose from the thousands of opportunities the world offers them (like he himself is, or any presidential candidate obviously).

    yes, people have forgotten the lessons of the seventies about the Baader-Meinhof group.

  17. Re:This is one of the reason I want to see this mo on The Science of Iron Man · · Score: 1

    Remember that Isaac Asimov also used a nuclear reactor the size of a fist in the first part of the Foundation series, to generate a personal powerfield.

  18. Re:Bring a lot to the table on Bill Gates On the GPL — "We Disagree" · · Score: 1

    My feeling around anything and anybody connected with Microsoft is that of either (willful) ignorance or maliciousness.

  19. Re:The crux of the exploit: on NULL Pointer Exploit Excites Researchers · · Score: 1

    No need to to rewrite it in Java, but one should consistently use exceptions.

    If a function is used which should be checked for its return value to see if it succeeded or not, then it should be wrapped inside a new function, which always does the check and throws an exception if nothing has succeeded.

    No, you cannot do it in C, but you should be able to do it in C++.

    I did this with my own Perl libraries. I try to make sure that everything I use throws an exception when an error situation is encountered.

  20. Re:Is Company Driven Linux Meant for the Desktop? on Red Hat Avoids Desktop Linux, Says Too Tough · · Score: 1

    My experience with the current batch of system administrators and IT responsible is that they are people which somehow got into PC's, knew something more than the average user, and thus landed in their current position. Their only reference is that of a PC, they do not have the technical knowledge to get what the difference is between a x86 architecture, Unix systems and mainframes. Two other sources are help desk people which are able to move into something a little more technical, and network technicians, which might know a lot about network hardware, switches and other things needed to make a network run, but miss the hardware and software technical knowledge about computers.

  21. Dutch scientists ? on Growing Plants on the Moon May Be Feasible · · Score: 1

    They are obviously trying to create the largest cannabis plantation in history!

  22. Re:I agree on Hardy Heron Making Linux Ready for the Masses? · · Score: 1

    I had setup a new computer with Debian for my sister. She plugged in her brand new monitor, and it just worked. She plugged in her brandnew USB remote keyboard and mouse, and they just worked.

  23. Re:Yes, & yes = NO & No on Hardy Heron Making Linux Ready for the Masses? · · Score: 1

    I never get complaints from my father (KDE), and my sister is also very happy with her Linux system (GNOME). I use Debian, however, because for some reason the systems I try to run Ubuntu on have always some blocking problem in the install (and always something different).

  24. With the uptake of the new season of Dr. Who, on Robot Rebellion Quelled in Iraq · · Score: 1

    exterminate, exterminate...

  25. Re:Font Size on Microsoft Told to Pay Tax on License Fee · · Score: 1

    With Firefox you can ask to display a font of at least n points in size. I have put this to 14. I also always use a non-serif font, which is also more legible for me.