Slashdot Mirror


User: Wierdy1024

Wierdy1024's activity in the archive.

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

Comments · 119

  1. Re:So... is this different from Linux KVM w/ KMS? on Extreme Memory Oversubscription For VMs · · Score: 1

    Using trampolines for every cross-library call seems very inefficient...

    The windows method seems better for the more common case, where it does the costly rewriting at library load time, and then avoids an extra jump for every library function call.

    Whats the performance impact of this? I bet it's at least a couple of percent, which is significant if it's across the entire system.

  2. Re:How fast? on Google Shares Insights On Accelerating Web Sites · · Score: 2, Insightful

    Yes, we should penalize them.

    Imagine there are two sites with the information I need. I would much prefer to see the faster site than the slower one, because by loading the faster site I get my information faster.

    If I wanted my information slowly, I would walk to the library...

  3. Re:SSD's? no. on Flash Destroyer Tests Limit of Solid State Storage · · Score: 1

    Anyone feel like replicating this experiment with a standard flash chip scrounged from a USB stick?

    It would also be nice to try an entirely software approach on a USB stick plugged into a pc, to see how good the wear levelling in commodity usb sticks is.

  4. Re:5Mb/sec? on BT Gets Exclusive Rights To OnLive In the UK · · Score: 1

    After each of the above suggestions, remember to reboot your router, since it won't speed adjust without a reboot.

    Also, check the speed according to the router configuration page. If you get a higher speed showing there, you'll see a real speed increase after a few days when all the systems in BT's network re-adjust to the new speed (see "BRAS profile" on google for details)

  5. Why not sooner... on Google Backpedals On Turn-By-Turn GPS For iPhone · · Score: 4, Interesting

    I don't understand why all mobile makers are so touchy about turn-by-turn navigation.

    When you've paid for the map data, and got GPS hardware in your device, it seems crazy not to implement turn by turn navigation, since the added software development cost is pretty minimal.

    I suspect the problem is more of a licensing one - for example, when turn by turn navigation came out for android, it was US only for a while. A hack existed to enable it in the rest of the world, but that was soon stopped by google. Only later did it get released for the rest of the world.

    Considering that it worked with a hack, it can't have been a softwatre issue that was preventing worldwide release - the only possibility is that licensing and company politics was getting in the way. Maybe people like tomtom get exclusive rights to do navigation on map data, and therefore while google has rights to use the maps, they don't have rights to do turn by turn directions with them?

  6. Re:What if they cut the finger and heat it on Self-Destructing USB Stick · · Score: 1

    I'm pretty sure the surface temperature of the skin on my fingers sometimes falls below 15 Celsius if I've just come in from the snow outside or something. Also, I know that in hot countries ambient temperature of a usb stick could easily reach 30 Celsius.

    Knowing these two facts, it seems there is no threshold they could use to accurately detect if a finger is "attached" or not...

  7. Re:Hope they put a capacitor in there on Panasonic's New LED Bulbs Shine For 19 Years · · Score: 1

    I don't see the advantage of full wave rectification, except possibly to meet power regulations. A pulsed LED actually appears brighter to the human eye, and provided the average power through it is the same as a full wave rectified model then the brightness should be the same*. The only real reasons for going full wave rectified and smoothed is either where power regulations specify certain restrictions on power harmonics (imagine if every device was half wave rectified in the world, then the power supply would be loaded at some points in the cycle more than others, and you would no longer get a nice clean sine wave), or where you want a constant voltage to make design of the rest of the circuit easier (eg. digital electronics).
    .

    * LED's can be an exception to this in certain cases, since the number of photons produced per second is not linear to the instantaneous current.

  8. Re:The Anti-AOL on Google Data Liberation Group Seeks To Unlock Data · · Score: 1

    The export tools they use are never going to export ALL the data - for example, my email program keeps track of my recently used contacts and puts them at the top of the list. If I were to export my contact list and re-import into another app, the order of the list would be reset.

    In a similar way, if I export all my email from one mail service to another, I might loose any labels or flags\stars I had put on the messages, even if my new service supported labels/stars/flags, simply because the export format, being generic, doesn't contain that data.

  9. this is only the start on Japan's Cell Phones May Get DRM, At Music Industry Behest · · Score: 4, Interesting

    This is just so they can get the infrastructure in place for per-play or per-minute music charging. It would be trivial to hook this server up to the phone companies billing system to bill users every time they played a song.

    The next step is then to provide addons to contracts offering "unlimited" songs, for only an additional $15 per month...

  10. Re:Encourage use of MS tech by making the SDK free on iPhone App Wins Microsoft-Campus Programming Contest · · Score: 1

    Last I heard the preferred language(s) for WinMo was .NET managed code with the .Net micro framework so that means C# and VB.net - you'd probably use C++ today if you are maintaining a legacy app, or writing high performance stuff (although even then, the main app would probably be managed code with just the performance critical bits in native code)

  11. Re:I agree with HD manufacturers too. on Apple Kicks HDD Marketing Debate Into High Gear · · Score: 1

    Would I be right in saying that this means you can calculate the amount of "spare" sectors a flash drive has for remapping (assuming the majority of cells are designed for remapping and very few for mapping tables).

    Also, does this mean that as flash storage systems get bigger, they also get considerably more reliable, because they have, as a percentage, more remapping sectors? (4.9% for drives measured in MB, 7.4% for drives measured in GB). Since write speed doesn't scale linearly with size, it also means that even ignoring the different percentage of remapping sectors, the minimum lifespan still increases.

    Also, for the same reason, presumably drive yields should increase since more cells can be faulty on the production line.

  12. Re:There is no such thing on Thanks For the ... Eight-Track, Uncle Alex · · Score: 1

    What about data barcodes or something. You don't get much data density, but at least it's digital.

    You can be fairly certain it'll be readable, because all you need is a scanner or camera, and even if technology changes a lot, I can't imagine both of those disappearing too fast with nothing to replace them.

    The challenge is decoding the data - formats and specifications come and go, but for someone determined enough, it's always possible to write some software to emulate an older system. Take jpeg for example - from the bare written specifications of jpeg, I think anyone reasonably competent at logic could re-implement from scratch all the code required to decode it and show it on a screen within a few weeks. (I even wrote a basic jpeg decoder myself, but it didn't output direct to a screen, and required an operating system to run under it for library functions like memory allocation and file access, so not entirely "from scratch")

  13. Linux power management on Why Is Linux Notebook Battery Life Still Poor? · · Score: 1

    Linux power management is generally poor due to poor drivers.

    While the Linux drivers for most hardware devices are very stable due to their open source nature, many are reverse engineered from windows drivers or written from incomplete specs. Also, paid developer time is scarce for this kind of project, so often only core features get included.

    The features which get cut are often power management and additional optimisation - the result, you end up with a system that doesn't perform great, and has poor battery life. Not much you can do about it without changing to different hardware.

  14. Re:Success?? on South Korea's First Rocket Fails To Reach Set Orbit · · Score: 1

    I assume you're British, in which case you should know that over here pissed means a multitude of things, one of which means angry - clearly the intended meaning here.

    Just because he's British doesn't mean he has to exclusively use the British alternative, my good sirs!

  15. Chrome OS - Hardware Revealed on Chrome OS Designed To Start Microsoft Death Spiral · · Score: 1

    A little tidbit of information on the Chromium source code review site has revealed the primary processor for Chrome OS to run on will be an ARM Cortex A8 CPU, which raises some interesting questions about Googles aims for the product.

    See more here:
    http://www.omattos.com/node/9

  16. More info about Chrome OS available today on Chrome OS Designed To Start Microsoft Death Spiral · · Score: 1

    A little tidbit of information on the Chromium source code review site has revealed the primary processor for Chrome OS to run on will be an ARM Cortex A8 CPU, which raises some interesting questions about Googles aims for the product.

    See more here:
    http://www.omattos.com/node/9

  17. Re:2008 R2 + Windows 7 = Direct Access on Windows 7 Hits RTM At Build 7600.16385 · · Score: 1

    Having read through all those white papers about DirectAccess, to me it looks like just a new user interface and a re-branding of some functionality thats been in windows for a long time.

    Effectively it's just creating some IPSec rules for the intranet subnet, and therefore every packet destined for the intranet gets encapsulated with an ESP header and sent onward - the Directaccess server simply decapsulates it. You can get the same functionality on Windows xp/2K3/Vista/2k8 by opening up the management console and adding the two IPSec snapins, and spending hours going through the hundreds of repetitive and recursive property pages to get it all set right.

    One place this scheme will probably fail is if the company uses a private IP address range which is the same as the privcate IP address range the employee is currently connected to - in this case, the routing has to fail to connect to machines in one or other subnet - but thats the problem with nat...

  18. Re:This is what happens whenever... on Students, the Other Unprotected Lab Animals · · Score: 1

    the "black" in a mains AC circuit is usually known as neutral, and should be coloured blue to indicate it is not ground. It is however usually very near ground (typically at below 30 volts relative to ground), and therefore is very unlikely to kill or mame, but instead just hurt a bit. Also, with a RCD device, which detects current flowing from either live ("positive") or neutral to ground, the risks of a fatal electric shock are really very low.

  19. Re:Abuse of moderation on Flash Drive Roundup · · Score: 1

    don't worry about waterproofing flash drives.

    If they get wet you can simply dry them out and continue use - I've frequently got usb sticks wet and they work fine.

    The only exception to this is salt water - in that case it has to be properly washed and dried before use, and more than a few hours in salt water will kill it.

    Also, if you do get it wet fully dry it before use - if you use it before it's dry it will fail in a matter of minutes since electrolysis creates oxygen on the metal conductors which eats them away very rapidly.

    If you want to actually USE a flash drive underwater (rather than just underwater storage), you will need to properly waterproof it.

  20. Re:please... on Unclean Military Hard Drives Sold On eBay · · Score: 1

    Nice find - I've bookmarked that page to send to people who argue about which "secure shredder" program is better...

  21. Re:Why not avoid batteries altogether? on Developing Battery Replacement Infrastructure For Electric Cars · · Score: 1

    No ultracapacitors have been shown in the lab to have a higher energy density than average Li-ion batteries.

    batteries: ~0.5 MJ/kg
    ultracaps: ~0.02 MJ/kg

    (see http://en.wikipedia.org/wiki/Energy_density)

    The only exception to this is ultra capacitors made by EEStor (1.2 MJ/kg), but nobody outside the company has seen those work yet, so there is doubt over the validity of the claims.

  22. Re:Don't they mean GNU/Cinder? on Cinder Mobile OS Lets Users Send More Power To Slow Apps · · Score: 1

    No - the GNU/ refers to the fact the suite of applications that come with the operating system are from the GNU project - that includes all the "standard" applications like a bash shell etc.

  23. Re:Windows for ARM? on ARM — Heretic In the Church of Intel, Moore's Law · · Score: 1

    If ARM netboooks take off you can be sure MS will port windows to it. The windows NT line has already been recently ported to IA64 (which is a totally different architecture to x64 and x86), and it has previously supported MIPS, alpha, and PowerPC. The cost of porting an OS is high, but not impossible, especially since generally most bits of code will need just a simple recompile - it will only be stuff in the depths of the kernel that will need significant modification.

    If Windows did get ported to ARM, you can be pretty sure MS would make a userspace emulator so x86 code could be run, as well as coming up with a dual x86 and ARM binary format so future apps could run natively, just like Apple did with OSX binaries.

    For many apps a userspace emulator could actually have reasonable performance, because the most critical kernel calls, and possibly library calls wouldn't be emulated.

    Overall, moving away from x86 could be a big benefit to the PC industry, as it would eliminate the monopoly a select few companies have on some PC components, and has the potential to retire the horribly old and complex x86 architecture.

  24. This isn't as "nano" as they make out on Folding Nanosheets To Build Components · · Score: 4, Interesting

    That bit they are folding over is ~500 um (half a mm) - that's easily big enough to see with the human eye, and you could probably fold that over if you were careful with a pin or something. This certainly isn't yet small enough to integrate into IC's and stuff. (or at least if you did you would be limited to a few capacitors per IC). I can see it could possibly be useful for charge pumps on some chips, for example for flash memory erase voltages or LCD drive voltages. Allowing a few reasonably large value capacitors on the die of a chip could mean pins could be eliminated, which reduces cost. Currently many IC's have pins specially for capacitors which could be eliminated with this. It also reduces external circuitry, reducing total device costs.

  25. Re:thats what happens when on BPI Defends Anti-File-Sharing Partnership With Virgin Media · · Score: 1

    Great analysis, but Boeing is a bad example. They're now doing pretty well because their main competitor is suffering very heavy losses due to the weakness of the dollar, since their planes are made in dollars, but the labor paid for in Euros. TBH, it looks like without the support from the French Government, Airbus would've gone bankrupt in the last year. The government wont let it go bankrupt because it powers a large bit of the French Economy, and it would be very embarrassing to have it sold off to some non-French company.