Slashdot Mirror


User: pezezin

pezezin's activity in the archive.

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

Comments · 122

  1. Re:waste of money on Strange New Social Media Trend: Licking Nintendo Switch Cartridges (macon.com) · · Score: 1

    You haven't named the Gamecube controller, which to me was a wonderful design that I still use to play emulators on my PC (using an adapter, of course).

  2. Re:Lets See on Can Streaming Companies Replace Hollywood Studios? (vanityfair.com) · · Score: 1

    Better picture maybe, but actually having better sound at home that at any decent cinema is damn difficult. Maybe you are rich and can afford a sound-proof room with big-ass speaker and amps, but most people can't.

  3. I'm surprissed nobody mentioned VGA and Mode 13h yet. It was one of the first things I learnt to program as a kid. int 10h to set the graphics mode, ports 3c7, 3c8 and 3c9 to read/write the palette, and then writing pixels to segment A000h.

  4. Re:Probably should have focused more on Firefox Fail: Layoffs Kill Mozilla's Push Beyond the Browser (cnet.com) · · Score: 1

    Most IT people, let alone normal people, don't have a clue who Brendan Eich is or what he did, nor care. The real reason Chrome is number one is because it's bundled with a lot of software nowadays, and Firefox isn't.

  5. Re:Games though? on Report: PS4 Is Selling Twice As Well As Xbox One (arstechnica.com) · · Score: 1

    We all know Vulkan is the future of computer graphics, but OpenGL is far from dead. It's right now the standard API for Linux, Android and the web. Also, the new Doom uses OpenGL, and is probably the best performing game of 2016 (although the Vulkan version performs even better).

  6. Re:1 percenter first world problems. on Safari Users Unable to Play Newer 4K Video On YouTube in Native Resolution (macrumors.com) · · Score: 1

    If you really think 240p or 480p looks "good enough", either you have never seen a 1080p display or you are almost blind.

  7. Re: They said they want us to die... on Apple To Offer 32GB of Desktop RAM, Kaby Lake In Top-End 2017 MacBook Pro, Says Analyst (appleinsider.com) · · Score: 3, Informative

    Number one reason would be to be able to run several virtual machines, to try different OSes and environments at the same time. Number two would be that some of us code really memory intensive algorithms (robotics and machine vision in my case).

  8. Re:Probably's not how many memory chips you can fi on AMD Unveils Vega GPU Architecture With 512 Terabytes of Memory Address Space (hothardware.com) · · Score: 1

    Take a look at this: https://www.cpubenchmark.net/c... It's faster than even the latest i5-6600, and cheaper. Only the i7's are faster. And don't tell me about single core performance, it's 2017, any program I care about is multithreaded. Now if you talk about energy consumption, you may have a point...

  9. I'm still using my 8 years old Precision M4400. That thing is rock solid, and the battery still last 2 hours. If I ever buy another laptop, it will probably be a Precision.

  10. Re:The title is wrong. 4K != UHD on Lucasfilm Creates A 4K Ultra-HD Restoration of the Original 'Star Wars' (4k.com) · · Score: 1

    I have an Adobe RGB capable display, and when properly calibrated is much better than sRGB. Obviously, you need source material encoded in it, but that's what I have my DSLR for.

  11. Re:Good luck getting contracts! on Work Emails After Hours Finally Banned in France (fortune.com) · · Score: 1

    The last paragraph is pure gold. You sir made my day, if I had mod points I would have given you a +1 Funny.

  12. Re:Nobody expects... on Spanish Extremadura Moving 40,000 Desktops To Linux · · Score: 1

    Well, I certainly do, if only because I have been living here my whole live :P

  13. Re:North, east and west on A Quarter of the EU Has Never Used the Web · · Score: 1

    Seriously, latvian connections are awesome. I visited some latvian friends this summer, and was amazed of how fast connections were. Faster and cheaper that here in Spain (luckily, we also don't have quotas).

  14. Re:CRT? Are you from the past? on NVidia Cripples PhysX "Open" API · · Score: 1

    Your analogy makes no sense. The video card doesn't have to care about what particular technology the display uses, only the range of vertical and horizontal frequencies it supports. The video signal is the same, whether you use a CRT, a LCD, o whatever.

  15. Re:Try adjusting DOSBox.conf? on Bethesda Releases Daggerfall For Free · · Score: 1

    With a modern machine, a good setting is:

    core=dynamic
    cycles=auto

    That way you don't have to manually adjust the cycles, and VGA games run quite smooth and fast.

  16. Re:Japan is insane. on Railway Workers Get Daily Smile Scans · · Score: 1

    In my experience, anti-depressants make you feel nothing, neither positive nor negative emotions.

  17. Re:Adapt on Windows and Linux Not Well Prepared For Multicore Chips · · Score: 1

    I don't have a final solution quite yet (though I am working on it as a thought project), but the problem we need to solve is getting a new instruction set which is inherently capable of parallel operation, not on adding more cores and pushing the responsibility onto the programmers for multi-threading their programs.

    Like the old Cray machines, or the new NEC SX series? After having studied them, I wonder why manufacturers don't add long vector instructions to current CPUs, they are much more flexible than short vectors (SIMD).

  18. Re:Linux, Macs, and Windows PCs on Ballmer Scorns Apple As a $500 Logo · · Score: 1

    I recently bought a Precision M4400 with a Core 2 Duo T9400, 4 GB of RAM, Quadro 770M with 512 MB of dedicated RAM, 15" matte 1440x900 display, with white LED backlighting, a 200 GB, 7200 RPM hard-drive, and Vista Bussiness (I use Windows for games, I don't care what version it is). It cost me 1800 euros. At the time, a MacBook Pro with a similar configuration had a cost of 2500 euros. Now, this was in Spain, I have heard that in USA macs are cheaper.

    PS: about having a big screen and HDD... I have it plugged to an external 22" display and a 500 GB eSATA drive. Plenty of space.

  19. Re:Performance? Benefits? on Dirac 1.0.0 Released · · Score: 1

    While they give a very natural style of compression on still images (JPEG-2000, etc), they do not translate well to moving sequences because, unlike all other current codecs, the image is not broken up into blocks that can then be tracked and diff'd in time.

    You seem to be confusing motion estimation/compensation with residual coding. Dirac does break the image into blocks, using overlapped block motion compensation. However, the residual image is coded as a whole, thanks to wavelets. This should greatly reduce blocking artifacts.

  20. Re:It's not for dumb people on Why Lazy Functional Programming Languages Rule · · Score: 1
    The Haskell version is very easy to understand:
    • If the list is empty, there is no need to sort it, so terminate.
    • If the list has at least and element x and a tail xs:
      • Create a list with all the elements lesser than x: lt = filter (<x) xs.
      • Create a list with all the elements greater or equal than x: gt = filter (x) xs.
      • Sort them recursively, and concatenate them with x in the middle: qsort lt ++ [x] ++ qsort gt.

    That's all. You may not be familiar with Haskell's syntax, but Quicksort is a recursive algorithm, so it is natural that it is better expressed with a declarative language.

  21. Re:It's not for dumb people on Why Lazy Functional Programming Languages Rule · · Score: 1

    Quicksort in C:

    int partions(int l[],int low,int high)
    {
        int prvotkey=l[low];
        while (low<high)
        {
            while (low<high && l[high]>=prvotkey)
                --high;
            l[low] = l[high];
            while (low<high && l[low]<=prvotkey)
                ++low;
            l[high]=l[low];
        }
     
        return low;
    }
     
    void qsort(int l[],int low,int high)
    {
        int prvotloc;
        if(low<high)
        {
            prvotloc=partions(l,low,high);
            qsort(l,low,prvotloc-1);
            qsort(l,prvotloc+1,high);
        }
    }
     
    void quicksort(int l[],int n)
    {
        qsort(l,0,n);
    }

    Quicksort in Haskell:

    qsort [] = []
    qsort (x:xs) = qsort lt ++ [x] ++ qsort gt
        where
        lt = filter (<x) xs
        gt = filter (>=x) xs

    Now, tell me imperative version is easier to understand than the functional one.

  22. Re:1978?? on Happy Birthday! X86 Turns 30 Years Old · · Score: 2, Informative

    14.31818 MHz was used as the master frequency of NTSC sets, so those crystals were fairly common and cheap. Dividing it by 3 gives 4.77 MHz; other common dividers were 2, giving 7.15 MHz (as used in the Amiga and Atari ST), and 4, giving 3.58 MHz (used in lots of 8 bits computers).