Slashdot Mirror


User: hendrikboom

hendrikboom's activity in the archive.

Stories
0
Comments
397
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 397

  1. ARM laptop, please? on Intel Pushes Into Tablet Market, Pushes Away From Microsoft · · Score: 1

    I'm still waiting for an ARM laptop, preferably with a WACOM-grade touch screen.

    -- hendrik

  2. Athabasca University on Ask Slashdot: the State of Open CS, IT, and DBA Courseware in 2014? · · Score: 1

    Athabasca University is a leader in distance education in Canada. Have a look at http://www.athabascau.ca/

    They have tutors on-line, by email. I once met one of their tutors, answering students' question part-time while he was working full-time as a programmer in Montreal, which is the other end of the country from Athabasca. Yes, the tutors are actual practitioners, and may be anywhere on the net.

    You might find it to your liking. Check out the cours listing and see if it's what you're looking for.

    -- hendrik

  3. Re:Space travel on Gunshot Victims To Be Part of "Suspended Animation" Trials · · Score: 1

    Not sure they had the word "science fiction" in 1914. Not even sure when "scientifiction" was coined.

  4. Get rid of the poorly designed environments. on Ask Slashdot: Can an Old Programmer Learn New Tricks? · · Score: 2

    Or find a better one. I recommend you try "How to Design Programs", an intro to Scheme, which, despite its syntax, is a very decently designed language. You can buy the book for money, or download it for free. (there's two versions. The newer one is more fun. The older one is more finished.) Racket is the implementation that's designed to work with it, and is available for Windows, Mac, and Linux. For free.
    The book is about program design, not about piecing together fragments found on the web.
    The Racket mailing list is a place where students can actually ask questions and often get the language designers and implementers to answer even trivial questions.
    Try it. It won't take long, and you will learn.
    To the extent you are already experienced, you will find the beginning a bit tedious. So skim through until you reach your level.

    -- hendrik

  5. Re:Proof or paper on Ask Slashdot: Best Options For Ongoing Education? · · Score: 1

    About Lisp --- yes, ancient academics still use it. But the cutting edge of Lisping seems to be Scheme these days, and its very much alive indeed, with implementations like Racket (with excellent educational resources), Gambit (which gets along well with C), guile (the FSF's scripting language), and many others, In the user communities around Racket, for example, you see an eagerness to try new things and redesign the language for future generations.

    -- hendrik

  6. Re:Dover math books on Ask Slashdot: Best Options For Ongoing Education? · · Score: 1

    After all, Dover reprints those old relics of math books precisely because they *are* still relevant.

    -- hendrik

  7. Re:more generalized... on Ask Slashdot: Educating Kids About Older Technologies? · · Score: 2, Insightful

    The schools tend to teach history in terms wars, royalty, and loyalty to country.
    I won't pretend that understanding the dynamics of conflict isn't important.
    But the history of technology is an extremely important part of history that's usually given short shrift.

    -- hendrik

  8. Re:Will the slashdot beta die? on Canadian Government Trucking Generations of Scientific Data To the Dump · · Score: 0

    Is there any substantial support for the slashdot beta?

    -- hendrik

  9. A war. on Canadian Government Trucking Generations of Scientific Data To the Dump · · Score: 5, Interesting

    There's a war on science in this country. It's a disaster. And it'll continue at least until the next election, which may be years away. I'm ashamed of what's happening to my country.

    -- hendrik, a Canadian.

  10. Re:What surprises me is that... on The Other Exam Room: When Doctors 'Google' Their Patients · · Score: 1

    My wife, a doctor, tells me the tests cannot detect 30-year-old cocaine use, but can detect recent cocaine use. So the implication is that the patient was using recently and was lying.

  11. Re:assuming... on Storing Your Encrypted Passwords Offline On a Dedicated Device · · Score: 0

    Air-gapped? You must not have heard about wifi yet.

    -- hendrik

  12. Bandwidth zeroed out on Tesla Would Be Proud: Wireless Charging For Electric Cars Gets Closer To Reality · · Score: 2

    The bandwidth of a truck full of magnetic tapes goes to zero as everything is erased.

    -- hendrik

  13. Re:USB cables are 4 dimensional on Death to the Trapezoid... Next USB Connector Will Be Reversible · · Score: 1

    Actually, there are a few systems that have to be rotated throughh 720 degrees to achieve their original state. Perhaps the SMBC anomaly really shows that USB plugs are spin one-half particles.

  14. Revisions? on Have 100GB Free? Host Your Own Copy of Wikipedia, With Images · · Score: 3, Interesting

    Presumably the wikipedia is under revision control.
    Does this give you the whole thing so that you can forever after sync with the master?
    Or just the most recent versions of the articles?
    Should there be a bittorrent for syncing huge revision control data bases?

  15. Re:Power is the missing discussion in economics on WikiLeaks Releases the Secret Draft Text of the TPP IP Rights Chapter · · Score: 1

    Which is exactly why the economist John Kenneth Galbraith wrote the book The Anatomy Of Power

    -- hendrik

  16. Security? on Google Chrome 31 Is Out: Web Payments, Portable Native Client · · Score: 1, Interesting

    How they maintain security with C and C++ applets?

    -- hendrik

  17. Re:It's a surprisingly HIGH failure rate... on 25,000-Drive Study Gives Insight On How Long Hard Drives Actually Last · · Score: 2

    When I buy a new hard drive, I test it with badblocks, which nowadays seems to take about a week. Something like 20% of the hard drives fail during testing immediately after purchase. Of course they go straight back to the store when this happens.

  18. Re:The thing about relative measures... on Netflix, Youtube Surpass 50% Mark of Internet Traffic · · Score: 1

    There's a difference between the number of people posting and the number watching?

    -- hendrik

  19. Re:I wonder on Microsoft Donates Windows 8.1 To Nonprofit Organizations · · Score: 1

    Well, it might be useful to review and assess the competition.

    -- hendrik

  20. Busy Waiting on Why Does Windows Have Terrible Battery Life? · · Score: 1

    Having lots of background processes lying around isn't the problem. It's one of the effective ways of structuring an operating system. The problem is in how they are implemented.

    Processes that wait for something should not use the CPU time until the event happens. Unfortunately, it's extremely easy to write code that runs around in a loop waiting for the event. This is called busy waiting.

    It requires careful design effort to do this properly, and an OS kernel that provides the necessary tools.

    The OS must be able to managing events and waking a waiting process up only when the event happens. And it must be able to manage waiting on any of multiple events (a feature that is easily left out of event management). And to be effective agaoins power wastage, the OS should at put the CPU into a low-power mode when it is just waiting (this will require CPU support as well).

    I would be surprised if all those mysterious processes were carefully written to avoid busy waiting, especially when it's really easy just to loop.

    -- hendrik

  21. Hand-crafted document compiler. on Ask Slashdot: Do You Use Markdown and Pandoc? · · Score: 1

    I started it when I was writing lots of text on an Alphasmart stand-alone keyboard, almost the best tool for first-draft writing. But really bad for editing. So I'd upload raw text to a file, for further processing on a real conputer. I wrote a program to do preliminary cleanup, making it more like HTML. Emacs after that.

    Yes, that was over a decade ago. The program is written in Modula 3.

    I discovered that the notation I was using on the alphasmart was more convenient than raw HTML, so I continued to use the ad-hoc notation even after I migrated to a laptop, and slowly changed it and the program according to taste. The program now generates .fodt files, which I do not edit.

    My notation has no log-term syntactic nesting constraints (as HTML does with its and tags) so it is a natural for use in a revision management system. (Merges preserving tree structure are notoriously hard to do correctly; i.e., yielding valid tree structure after).

    I'm considering changing to markdown. A project I'm involved i has chosen Asciidoc instead.

    I consider ease of use with a revision management system (I use monotone) to be crucial.

    The main feature I've found to make this easy is for the markup to use separators instead of brackets whenever possible. Thus use a mark to separate paragraphs rather than two to enclose them. Maybe there are a few things that can't be anaged this way, but for the most part the big things can be.

    -- hendrik

  22. Has Amazon deleted any of these questionable books from people's Kindles?

    -- hendrik

  23. Re:Im on the project, ask me anything on PengPod Crowdfunding a Tablet Made With OS-Switching In Mind · · Score: 1

    Are there free userspace libraries for the PowerVR graphics? So that if I need to upgrade someday and PowerVR has lost interest I can still haave a usable system, albeit with slow 3D?

  24. Re:Archaic Workflow on PengPod Crowdfunding a Tablet Made With OS-Switching In Mind · · Score: 1

    Crunchyroll.

  25. Re:Archaic Workflow on PengPod Crowdfunding a Tablet Made With OS-Switching In Mind · · Score: 1

    Ubuntu, at lest, seems to thing they can get their OS running on the Android's kernel. This could mean that no rebooting is necessary to switch between Android and Ubuntu.