Slashdot Mirror


User: CRCulver

CRCulver's activity in the archive.

Stories
0
Comments
3,796
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3,796

  1. Re:So now it's the year of the Linux desktop on Remote Exploit Vulnerability Found In Bash · · Score: 1

    Actually, it was a great idea on a PC. Debian switched to dash among other reasons because the init system was a big bundle of shell scripts, and switching to a lighter shell brought immediate improvements in boot times. A similar desire for optimization (albeit one ready to junk much of the *nix tradition) led to systemd.

  2. Re:Full Disclosure can be found on oss-security... on Remote Exploit Vulnerability Found In Bash · · Score: 1

    Only Nokia's N-series phones running Maemo ... are capable of running bash or sshd (without crazy hardcore modding).

    Installing bash on the N900 required enabling root access and intentionally installing the package. Otherwise Maemo's default shell was Busybox. Jolla's Sailfish OS, however, seems to use bash by default in its terminal application.

  3. Re:So now it's the year of the Linux desktop on Remote Exploit Vulnerability Found In Bash · · Score: 4, Informative

    You do realize that bash is (nowadays) installed in damned near every *nix out there (though I think HPUX is still holding out.)

    Debian and a few other distros have long since switched to Dash as their /bin/sh. Openwrt uses ash (installing bash would require intentional effort), and I assume that many *nix devices with the Busybox environment in lieu of the traditional GNU toolset also eschew bash. Sure, bash is still common out there, but thankfully not as prominent as a decade ago, and even when present it might not be exposed to an attacking surface.

  4. Re:Who cares about succinctness .... on Rosetta Code Study Weighs In On the Programming Language Debate · · Score: 2

    Succinctness can supposedly have performance implications in some contexts. I had been away from Python for over a decade before I recently picked up the newest edition of O'Reilly's Learning Python . I was surprised at how many instructions that developers previously spread out over multiple lines are now packed into highly idiomatic one-liners. The author, Mark Lutz, claims in several cases that the Python interpreter is likely to run the one-liner faster (even after it's all been compiled to bytecode) than the traditional multi-line expression.

    Of course, Python's succintness is not Perl's succintness, but it can take people a long time to get up to speed with what now seems the expected idiom, and there's plenty of room for producing something that other eyes will find baffling.

  5. Like Niven's "At the Core" on Astrophysicists Identify the Habitable Regions of the Entire Universe · · Score: 1

    Astrobiologists have long known that these events are capable of causing mass extinctions by stripping a planet of its ozone layer and exposing the surface to lethal levels of radiation. The likelihood of being hit depends on the density of stars, which is why the center of galaxies are thought to be inhospitable to life.

    Like many here, I'm sure, I first considered the possibility that the galactic core was inhospitable to life when I read Larry Niven's 1968 short story "At the Core" (collected with his other "Beowulf Shaeffer" stories in Crashlander ). In his science-fiction tale, Niven had an astronaut visiting the core and witnessing the wash of radiation from so many supernovas placed so close together.

    Niven's story, however, ended with the astronaut coming back and warning that this massive wave of radiation would be moving towards Earth at the speed of light. If that were true, and even the edges of galaxies were not safe in the end, then every galaxy would be ultimately hostile to life, not just in their cores. Is this the case, or did Niven get it wrong?

  6. Re:can we have ONE non-dumbed down GUI please? on KDE's UI To Bend Toward Simplicity · · Score: 1

    XFCE hasn't been ultralight in a few years now. It is no longer recommended for netbooks and other underpowered systems. I think it might be a decent replacement for GNOME for many disgruntled users.

    Personally, I'd recommend at least considering replacing most of your Linux desktop needs with Emacs and the command line. As the years have gone by, I've done less and less of my work outside of Emacs, a terminal and a browser. Even supposedly UI-heavy things like simple image manipulation are done faster from the command line with an imagemagick one-liner than waiting for Gimp to launch, reaching for the mouse, and clicking through dialogues. Sure, that way of working isn't for everyone, but the sort of people who read Slashdot might want to give it a try.

  7. Re:confused on U2 and Apple Collaborate On 'Non-Piratable, Interactive Format For Music' · · Score: 2

    The only way I can see something like that working is a robust audio watermark containing the purchasers iTunes information.

    Apple also sells music in its lossless format, and there it's hard to get "robust" without annoying the listener. If the watermark is in the metadata, one can simply convert the file to WAV to strip the watermark out and re-encode. If it is in the audio itself, it can lead to complaints: when Universal began offering lossless tracks, it encoded a watermark in the audio that manifested as an annoying buzzing noise, and eventually after much complaint it thankfully stopped doing that.

  8. Re:Expert. on U2 and Apple Collaborate On 'Non-Piratable, Interactive Format For Music' · · Score: 2, Informative

    Um, no, he's much, much less an expert than Dre is. As a respected producer at least Dre has some validity as a good ear, and he can evaluate the results of different parametric curves on tone signature

    Dr Dre the "producer" is essentially just an older peer that new acts can ask for advice and a respected name to put advertising. Usually in cases like this where an over-the-hill artist "produces" a younger one, it is in fact the much less celebrated engineer who is doing all the fine-tuning of the sound. The "producer" can only say "I like that" or "I don't like that" to what the engineer presents.

  9. Interesting what he chose not to answer on Interviews: David Saltzberg Answers Your Questions About The Big Bang Theory · · Score: 0, Troll

    It's interesting that he chose not to answer (or Slashdot chose not to forward) the several highly moderated questions on whether the show truly makes geek culture mainstream ("laughing with the characters"), or if it just holds geeks up for ridicule to millions of ordinary Americans ("laughing at them"). From Saltzberg's answers, it's at least clear that he has no geek background and simply caught on a good business idea.

  10. Everything old is new again on To Really Cut Emissions, We Need Electric Buses, Not Just Electric Cars · · Score: 1

    Trolleybus networks were rolled out in a great many Eastern European cities decades ago, with liquid-fuel-consuming buses often serving a minority of routes (typically ones going beyond whatever the city limits were when the trolleybus lines were build). It's amusing to think that we are going back to this, though now battery technology should be advanced enough that cities no longer have to deploy unsightly wires down all the thoroughfares.

  11. Re:In Theory on Unpopular Programming Languages That Are Still Lucrative · · Score: 2

    Anyone who is proficient in programming shouldn't have a problem picking up a book (or website) and learning a new langauge, API, etc. in a weekend or two.

    This claim gets thrown around on Slashdot a lot, but it's simply not true. In a weekend one might learn enough of a language to bootstrap oneself to learning more through reading real-world code, and you might even be able to fix a bug in an open source program that has been annoying you, but you can forget about working professionally with that language right off.

    Just look at the standard references for various languages to see authors admit this. Python is a nice, clear language, right? "executable pseudocode". And yet in O'Reilly's Learning Python Mark Lutz, who has many years of experience teaching skilled programmers, say that it will take readers months to get a complete view of just the core language, let alone the standard library and important third-party libraries.

  12. Re:Finlandization is moral debasement on 3 Decades Later, Finnair Pilots Report Dramatic Close Encounter With a Missile · · Score: 1

    Still he was called terrible, not awesome.

    And "terrible" had another connotation than you are thinking of when that nomenclature was established in English. Have a look at the OED entry for "terrible".

  13. Re:Finlandization is moral debasement on 3 Decades Later, Finnair Pilots Report Dramatic Close Encounter With a Missile · · Score: 1

    - the Tsar Ivan the Terrible executed during his reign of half a century less people than were executed during the St. Bartholomew's Day(!) massacre. Still he is called the Terrible, but not Catherine de' Medici or the King Charles IX.

    "Ivan the Terrible" is a translation of the Russian epithet Ivan grozny, which has less a connotation of "cruel" or "bloody" and more one of "awesome" or "formidable". It's like how English subjects referred to James I as their "dread sovereign", such labels for royalty were common regardless of his use of violence or not.

  14. Re:Nice timing on 3 Decades Later, Finnair Pilots Report Dramatic Close Encounter With a Missile · · Score: 1

    The Ruskies aren't going to be invading Finland again. Not after the embarrassment of the last time.

    "The last time" was a straightforward Russian victory: the end of the Continuation War. If you meant the time before last, the Winter War, educated Finns would be the first to tell you that their country's resilence is half myth, and the country would not be able to hold out should Russia come again.

    Why is that? For one, Stalin's army had suffered severe purges of qualified generals in the 1930s, and the Russian military forces striking Finland were undermined by the political commisars assigned to them. Had the purges not happened, that mythical Finnish intestinal fortitude alone would not have been enough to hold out. Then, one must consider that in the 70-odd years since the Winter War, Russia has developed massive air power, while Finland's arsenal anti-aircraft measures has always been very weak -- even optimistic Finnish strategists believe that the country would capitulate after only a few days of massive bombardment. Plus, Russia considers tactical nuclear weapons an option (Finland is not a NATO member, so no escalation to strategic nuclear weapons or MAD), and has already practiced drills for a nuclear strike on Finland. And finally, during the Winter War the male population were mainly hardy farmers, strong and used to cold, while it's quite common in our media for military brass to bemoan the quality of today's conscripts, who have led sedentary lives and are unfit for strenuous activity.

  15. Re:Impact of foreigners on the education of Americ on Getting Into College the Old Fashioned Way: With Money · · Score: 1

    Its racist to acknowledge language barriers?

    No, but it is silly to claim that an foreign undergraduate's gradual pursuit of English proficiency is a disaster for university education nationwide.

    ITs racist to expect that people attending an American university be able to speak English to participate in group assignments?

    It's pretty common across the world for universities to accept that foreign students will take a couple of years to become proficient in the local language, and Americans benefit from that too. I did my university degrees first in Spain and then in Finland, and in both countries my lecturers and classmates understood that I needed some time to learn Spanish and Finnish respectively.

    Or do you expect the American students to learn Arabic, Mandarin and Somali?

    As someone who studied Chinese and tried to get as much exposure to the language as possible, I would have definitely enjoyed working with a Chinese student so that I could hit him up for free language practice, which normally costs a high hourly rate. Learning Somali may not bring many advantages for Americans (though interestingly enough, Somali skills are in high demand now in the Finnish state sector), but Mandarin and Arabic are major world languages, some knowledge of which can only help.

  16. Re:And this implies... on 3 Decades Later, Finnair Pilots Report Dramatic Close Encounter With a Missile · · Score: 4, Insightful

    Are you unaware that there are multiple versions of surface-to-air missles, and that some may have features that others do not?

  17. Re: Alibaba Is Useless on Alibaba's US IPO Could Top $20 Billion · · Score: 2

    The correct Mandarin word for "foreigner" is "laowai", and it is not an insult. It is a polite term.

    If one speaks of the modern standard language, the correct-est Mandarin word for 'foreigner' is waiguoren. While laowai is not a strong insult, it is restricted to the colloquial register and it has a slightly pejorative air.

  18. Re:systemd adds to and supports the old model on Choose Your Side On the Linux Divide · · Score: 3, Interesting

    I think the ado about systemd is more about Linux people who think that Linux should be hard to use except for a small elite and do not want the OS to be useful to less technically adept users.

    If by "less technically adept users" you mean ordinary PC users who are being encouraged to adopt the Linux desktop, there is no reason that the init process has to be changed to woo them, because such users won't ever touch the system internals anyway, whether they be sysvinit or systemd.

    If by "less technically adept users" you mean people with some command-line skills but who are not yet Unix wizards, well, arguably systemd makes things more difficult for them. One of the biggest reasons systemd adoption has pissed people off is that for the systemd devs, documentation is at best an afterthought. The API has changed significantly over the last couple of years, but most documentation one can find on the internet is now out of date, and it has not been replaced with docs for the current state of systemd. sysvinit, on the other hand, is extremely well documented from a number of sources, and the technology remains accessible to anyone with some bash skills.

  19. Re:Hardwoods and a broom on New EU Rules Will Limit Vacuum Cleaners To 1600W · · Score: 1

    If you like in a separate house, then maybe you can do fine without the carpet. In a block of flats, however, parquet floors make life hell for the people below (and, depending on noise conduction, even above) you. My winter heating bill also went down significantly after increasing the carpeting of my flat.

  20. Re:Couch Surfing at a Strangers / Letting one stay on Couchsurfing Hacked, Sends Airbnb Prank Spam · · Score: 3, Interesting

    When you've pretty much agreed that everything he said was true (though you attempt to handwave it away

    Fearmongering about risks that are statistically insignificant should be waved away. Otherwise one would hardly ever leave their own homes (or even move about in those homes).

    and blame the victim...

    Noting that the well-known cases of violence within Couchsurfing.com related to single females hosting single males is in no way blaming them. Rather, the point is that since the GP is presumably male and writing for a predominantly male audience (these being the sad demographics of Slashdot), his exortation to fear such violence is groundless.

    The "years of experience" you cite are for more-or-less closed communities of like minded people, very likely known to each other or having common friends or acquaintances. The modern hospitality exchanges are between random people, complete strangers.

    There has been no such transition overall in internet hospex from trustworthy closed communities to "random people, complete strangers" as you depict. Couchsurfing.com specifically has grown too large to have that feeling of being a closed community of like-minded people, though the result of this is vastly more likely to be simply meeting a person whose company one doesn't enjoy with than experiencing crime. However, internet hospex in general remains a series of overlapping circles of friends, which one can plainly see from Couchsurfing's two community-run alternatives.

  21. Re:Couch Surfing at a Strangers / Letting one stay on Couchsurfing Hacked, Sends Airbnb Prank Spam · · Score: 2

    Couch surfing at a stranger's home is like staying at a hostle or homeless shelter and is very risky to you and your belongings. On the other side of that, letting a complete stranger into your home to sleep on your couch is also risky and could get you robbed, hurt, and/or killed.

    Couchsurfing (with a modicum of due caution) isn't staying with or hosting "complete strangers". You can check previous references left by other guests/hosts that the person has had. Plus, well-functioning hospitality exchange platforms tend to have an active userbase small enough that everyone kind of knows each other. I've hosted a number of people with whom I've turned out to have mutual friends.

    People have been "robbed and hurt" on Couchsurfing, but beyond the rare petty theft that could even happen when hosting friends (yes, people's friends can steal too) or relatives (many people have a klepto in the family), violent incidents are rare and the cases I am aware of were single females unwisely hosting single males. I am unaware of anyone ever being killed. Maybe you would like to back up your assertion somehow?

    Couchsurfing is nothing new. It superseded its website forebear Hospitality Club, which in turn inherited, among other things, mailing lists for hospitality exchange among hitchhikers and nomadic travellers. There's also WarmShowers, a community for cycle tourists, that has been around for years now and goes back to a pre-internet paper directory. With years of experience and millions of host-guest interactions, you cannot reasonably claim that hospitality exchange is more dangerous than, say, driving one's car on a daily basis.

  22. Re:Reading between the lines. on Dramatic Shifts In Manufacturing Costs Are Driving Companies To US, Mexico · · Score: 1

    I think it's you who haven't been to many third world countries. Yes, there are countries with famine, but there are plenty of poor fat people in Nicaragua, Fiji, Egypt, Brazil, etc.

    Honestly, I'd list those countries at a higher scale than the absolute Third World. In the Indian subcontinent, Madagascar and parts of Sub-Saharan Africa, there are still millions of people who are badly nourished, who expend an enormous amount of effort every day in unskilled labour but whose sustenance consists of a mere handful of a staple food (white rice, cassava, cornmeal, bread) with little or no ingredients added. Central America and the Middle East is significantly better off.

  23. Re:The oblig. quote from Snow Crash on Dramatic Shifts In Manufacturing Costs Are Driving Companies To US, Mexico · · Score: 1

    Some of those are not comparative advantages, not absolute advantages, but that's all you need.

    Not, that's not all you need. What you need is employment, and manufacturing in the US no longer employs a significant amount of people. With automation, factories today are run with a workforce an order of magnitude less than in the heyday of the American middle class. Farming too only employs somewhere around 1% of the population now.

    Also, 'microcode' has an actual meaning and it isn't what you think it is.

    Are you really so daft as to quibble among the meaning of a word within a lengthy quotation from a book by someone else? If you have a problem with the use of "microcode" here, take it up with Neal Stephenson. The passage in question remains an overall valid summary of many people's concerns about globalization.

  24. Re:You're a Slashdot.org volunteer on Couchsurfing Hacked, Sends Airbnb Prank Spam · · Score: 2

    Yet you're posting this on Slashdot, which continues to operate from the .org TLD after having been sold to Andover, VA Linux, and Dice.

    While Slashdot may continue to operate from its old .org URL, no one regularly refers to it as "Slashdot.org" with the aim of suggesting community governance, which is still done by some disingenous advocates for Couchsurfing. And luckily with the Dice acquisition and beta debacle, and the rise of SoylentNews, most people are aware of Slashdot's circling the drain and the rise of a community-run alternative.

  25. "Couchsurfing.org volunteer"? on Couchsurfing Hacked, Sends Airbnb Prank Spam · · Score: 2

    Couchsurfing went from an ostensibly community-run (but really oligarchy-controlled) website to a private, Delware-registered and venture capitalist-funded corporation three years ago. To continue to call it Couchsurfing.org is disingenuous. And as for "volunteer", most of the volunteers with any integrity have long since stopped donating their time to Couchsurfing and instead are active on other, truly community-run hospitality exchange platforms.