Slashdot Mirror


User: atrus

atrus's activity in the archive.

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

Comments · 265

  1. Re:Monitoring is universal on China Begins Monitoring Billions of Text Messages · · Score: 1

    You mean like DNS?

  2. Re:I lol'd on Nouveau NVIDIA Driver To Enter Linux 2.6.33 Kernel · · Score: 2, Informative

    My Quadro based laptop with the NVidia driver has no issues with suspending and hibernating, and runs generally flawlessly.

  3. Re:Just off the top of my head on How Do You Evaluate a Data Center? · · Score: 1

    You want contained hot aisles or contained cold aisles to maintain maximum efficiency. You want managed airflow.

    Its perfectly ok for the hot aisle to be at 100+F. Its also perfectly ok for the cold aisle to be at the mid 70s, as long as there is no stratification or leakage (top of the rack should be within limits). What you want to see is offline CRAHs or VFDs installed in the CRAHs throttling back their airflow.

    I work at a company which specializes in monitoring and helping customers improve their capacity and energy use. By placing air where it needs to go you can both cut costs and improve capacity. Sadly, very very few datacenters are run with the efficiency and managed airflow in mind (people even put perforated tiles in the hot aisle!). If you have containment, then you're 95% of the way there. Another more modern option is liquid cooled racks, or in-row cooling (APC Pods and the like).

  4. Re:Variable Pricing Not the Feature to Have Eviden on Apple Shifts iTunes Pricing; $0.69 Tracks MIA · · Score: 2, Informative

    Amazon also released their downloader (absurdly required for whole albums). Sadly is prepacked for various distributions and no "generic" option, but its a very good step.

  5. Re:That was painful to watch on Mac Tax, Dell Tax, HP Tax · · Score: 1

    I think both of us share the similar approach to style, which is in some ways minimalism. I use both Thinkpads and Macs, and both share the same design ideas. Both utilitarian, without gaudy mirrors or trendy glowing lights. Both are unobtrusive to using the actual computer.

  6. Re:Rehash... on Mac Tax, Dell Tax, HP Tax · · Score: 1

    I agree with you, the price premium on the Macintosh gives you a MUCH more usable laptop. The Dell is nothing more than an ugly desktop replacement.

  7. Re:Second the Atmel on Homebrew Microcontroller Laptop, Made of Wood · · Score: 2, Informative

    Second the msp430 suggestion. Well worth looking into for micropower embedded applications. The GCC port (based on 3.2.3) isn't all that great, but it does do the job.

  8. Re:Lack of knowledge not an excuse on Teachers Need an Open Source Education · · Score: 1

    "Chassis" is quite a good term. Its the frame on which you attach all the bits.

  9. Re:Sshfs is your friend. on Jumping To Ubuntu At Work For Non-Linux Geeks · · Score: 1

    Depending on what applications you're use, and if you have gnome's FUSE VFS thing running, you can bonk the URL into Nautilus, and its transparent.

    I don't use Gnome or KDE however.

  10. Re:Will it support Linux client access? on A Sony Camera Running Linux · · Score: 1

    Their consumer quality has nose dived in the last ten years. Cheaper and faster is the name of the game. I do have some Sony equipment from their "good engineering, built like a tank" era. It sill works great. And it doesn't even restrict its self to mini disc and Beta :).

  11. Re:Exchange, huh? on State Dept E-mail Crash After "Reply-All" Storm · · Score: 1, Informative

    Nope :)

  12. Re:Planned Obsolescence on AT&T 3G Upgrades Degrade 2G Signal Strength · · Score: 1

    Verizon has a GREAT network. It really does put other networks to shame. Their problem is simple: overly locked down useless phones. If Verizon had the iPhone (and not the current BlackBerry Touch, which really is no comparison once you dig beyond the surface), I would still be with Verizon. Sadly, their policy of crippling phones well beyond what any other carrier does finally did it for me.

  13. Re:Yes. on MS Says Windows 7 Will Run DirectX 10 On the CPU · · Score: 1

    I'd suggest getting your house on a 3 phase feed, and run 208V everywhere. After all, its how datacenters do it :)

  14. Re:ZFS!! on On the State of Linux File Systems · · Score: 1

    NetApp also has it for their storage products. Not a new concept I agree. I've seen is used very successfuly for user home directories. This was a bunch of Linux workstations which used NFS for their home directories. There was a background script which would generate snapshots every 5/15/60/120 minutes (plus some at day/week markers, and remove the previous old snapshot) for a thousand users (and FSes). All transparent to the user, and minimal overhead.

    It can be useful for allowing a delayed read of a 'clean' table state for a database. It requires some interaction of the DB + the FS layer. Put the database in 'journal only' mode, wait for whatever indicator it provides that the tables are now clean, snapshot, and turn on the table writes again.

    This is one way I use of backing up a very large PostgreSQL database. Significantly faster than even attempting to use the builtin dump/restore functionality.

    Of course ZFS and other constant time snapshot filesystems suffer from increased disk fragmentation as they're all based on COW. There is some smart math behind them to avoid it as much as possible, however it can still be a problem. Maybe the future of SSDs will make the impact even more minor than it is.

  15. Re:ZFS!! on On the State of Linux File Systems · · Score: 4, Interesting
    Because having a block based filesystem that has no notion of what the underlying storage is "dumb". ZFS fixes those problems.

    Want to create a new filesystem in ZFS? Sure, no problem. You don't even need to specify a size, it will use whatever space the storage pool has available, no pre-allocation needed. How about removing one? Ok, its removed. Yes, it only took a second to do that. A traditional LVM + FS system can't do that - you need to resize, move, and tweak filesystems when doing any of the above operations - time consuming and limited.

    And if you're asking why you'd want to create and remove filesystems on the fly, there is one word for that: snapshots. Its quite feasible to generate snapshots many times per day for a ZFS backed fileserver (or even database server). Someone created a file at 9am and then accidentally nuked it before lunch? Don't worry, its still present in the 10am and 11am snapshots. All online, instantly available.

  16. Re:Yes. on Should You Get Paid While Your Computer Boots? · · Score: 5, Insightful

    They probably "punch in" on their PC, which is an interesting ploy by the employer. But I agree. The second you're in the door or at your desk, the clock has started. You are "at work".

  17. Re:Think Python on Computer Textbooks For High Schoolers? · · Score: 1

    Yes, that would be my second suggestion. It all depends on the depth and level the original poster is taking it to. If you're going to run out of true beginner stuff, it may be advantageous to work in Dive Into Python (maybe select your own pieces into a course reader type of book).

  18. Re:High School Graduate Computer Careers? on Computer Textbooks For High Schoolers? · · Score: 3, Informative

    In the age of auto MDI/MDIX, who uses crossover cables anymore? ;)

  19. Think Python on Computer Textbooks For High Schoolers? · · Score: 4, Interesting
    Your class topics seem so wide and varied, but if you're going to do an introductory programming class, try this book:

    http://www.greenteapress.com/thinkpython/.

    Its a great introductory programming book, focused on Python. Its coming out in print form soon, if that is a requirement.

  20. Re:piracy and eve on Interview With an EVE Pirate · · Score: 1
    I would call Burn Eden "good". They've managed to use the game mechanics at near 100% efficiency for killing people, and not getting killed in return.

    But good does not equal not annoying :)

  21. Re:ZFS? on Error-Proofing Data With Reed-Solomon Codes · · Score: 1

    ZFS does maintain ECC codes to aid in correction. Even on single disks.

  22. Re:Where is simcity 5 for the pc? I want to have r on Screenshots For New Wii SimCity Released · · Score: 1

    Sadly yes. I find myself playing "SimRoad" more than SimCity myself :)

  23. Re:Where is simcity 5 for the pc? I want to have r on Screenshots For New Wii SimCity Released · · Score: 1

    Check out the "Network Addon Mod" http://www.simtropolis.com/modding/index.cfm?p=details&id=380 It extends the transportation as much as possible through creative tiles, and even tweaks some of the parameters in the route finding algorithms. HIGHLY recommended. Granted, some of the new tiles are annoying to use (especially the piece wise ones you can't drag and must place tile by tile). But you can actually now place El trains over roads, and other such odd omissions from the original sim city.

  24. Re:Pshaw on Your Computer and Cell Phone Are Lying To You · · Score: 1

    ABS is more often than not a liability in snowy situations. When there is near-0 traction to the road surface, being able to lock your wheels to generate some braking force (such as a snow dam) is beneficial. And even with ABS, steering while moving in snow is very difficult.

  25. Re:Adobe on Modern LaTeX Replacement? · · Score: 2, Informative

    Or the modern replacement, InDesign.