Slashdot Mirror


User: rippeltippel

rippeltippel's activity in the archive.

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

Comments · 57

  1. No wonder freemasonry is so accepted in the US... on Sorority Files Lawsuit After Sacred Secrets Posted On Penny Arcade Forums · · Score: 1

    ...given its mindset begins that early.

  2. "It is hoped that all parties can work in concert to address hacker attacks in a positive and constructive manner."

    ...all parties? I thought there was just one.

  3. It rescued me! on Microsoft Open Sources CoreCLR, the .NET Execution Engine · · Score: 1

    Finally! strI wWas rReally uMissing szSome Hungarian pNotation!

  4. Re:Hope that code gets better on OpenSSH Will Feature Key Discovery and Rotation For Easier Switching To Ed25519 · · Score: 1

    Thank you, I think you're right.
    My comments above were probably due mainly to ignorance.
    After all I've never bothered looking at that code before and should have studied the whole thing before judging... well... the whole thing.

  5. Hope that code gets better on OpenSSH Will Feature Key Discovery and Rotation For Easier Switching To Ed25519 · · Score: 1

    Maybe it's off-topic, but is it just me who see potentially big problems with ed25519.c? e.g. http://bxr.su/OpenBSD/usr.bin/ssh/ed25519.c#25

    Hint: no input validation, hard-coded array offsets with no clue about their expected size, etc...

    I know, it's open-source (I should contribute, blablabla) but I see this kind of problems all over that code base.

  6. Learn the alphabet with us! on MIT Considers Whether Courses Are Outdated · · Score: 3, Funny

    Choose the letters you like, it's only $99 each!
    (Oh you need the alphabet to understand books? Well, sorry mate...)

  7. Re:What about the dud that came up with fire? on Wikipedia Mining Algorithm Reveals the Most Influential People In History · · Score: 1

    Jesus' PR experts have been working on his image for over 2000 years, Batman just needs some more time.

  8. Re:A triumph for FOSS on First Phase of TrueCrypt Audit Turns Up No Backdoors · · Score: 1
    T r u e C r y p t Free open-source disk encryption software for Windows 7/Vista/XP, Mac OS X, and Linux

    How so? TrueCrypt is neither Open Source or Free Software. It's freeware (ie. proprietary).

    Right, TrueCrypt is not "Open Source", it's "open-source".

  9. Can it run Linux? on Apple Launches CarPlay At Geneva Show · · Score: 1

    If so, any problems can be fixed.

  10. It's quite alarming that... on How To Turn Your Pile of Code Into an Open Source Project · · Score: 2

    ...He didn't mention how to choose an appropriate software license!

    That's definitely something that impacts the popularity of any open-source project.

  11. Re:On every single git project I've worked on on Book Review: Version Control With Git, 2nd Edition · · Score: 1

    A 'git push' every now and then may help* in these cases... ;-)

    * (both you and the other guys working on your project)

  12. Re:Design patterns bad on Book Review: Presentation Patterns · · Score: 1

    Design patterns led to "programming by buzzword". And perhaps as bad, interviewing by buzzword, so people who could recite pattern names by rote would get hired.

    Although this may be OT, I do ask design patterns to my interviewees. However it's not like "tell me what a Visitor is", rather "you have this problem, how would you solve it?". The good ones come up with several solutions, some of which resemble (or exactly overlap with) a design pattern, and that's enough. If they are also aware of this, it's a bonus.

    Said that, the value of patterns is not just in using them (they originate from common sense after all) but also in creating a common ground for communication and practice: if you see a class named "Observer" or "Factory" you should immediately imagine what it is about. Presentation patterns could have similar benefits, e.g. an organisation may decide to deliver all presentations in a certain format.

    There's nothing new in this, just a few examples: the 10/20/30 rule and pecha-kucha (pronounced like this).

  13. Re:Deep Space Network? on NASA Fires Up Experimental Space Internet For Robot Control · · Score: 1

    The article is correct, the DSN has just a couple of letters in common with DTN, and nothing to do with the Bundle Protocol.

    Delay/Disruption-Tolerant-Networks have been researched and developed by the DTN Research Group and the Bundle Protocol has been an RFC since 2007. It's possible to download an open-source reference implementation from SourceForge.

    Actually NASA also use their own protocol, called ION (Interplanetary Overlay Network).

  14. Why are you surprised? on For Android Users, 2012 Is Still the Year of Gingerbread · · Score: 1

    1) Gingerbread was the first version to give a fairly complete user environment (compared to iPhone).
    Ergo: Most software has been developed for 2.3.

    2) Most contracts with mobile operators in UK (and I guess in other countries as well) last for 24 months, and devices cannot be upgraded in the meanwhile.
    Ergo: I'm not going to pay for a new device before the current contract end.

    3) Honeycomb is mainly for tablets, which have quite a narrow user base compared to mobile phones.
    Ergo: Gingerbread devices > Honeycomb devices.

    4) Android versions are not easily backwards compatible.
    Ergo: I'm not going to port my current software, unless there's a significant user base (if it ain't broke, don't fix it)

  15. I'm sure there is one... on Missing Matter, Parallel Universes? · · Score: 1

    ...it's where my unpaired socks disappear.

  16. Missing feature... on The 30 Best Features of Windows · · Score: 1

    Does it run Linux?

  17. Trivia on Book Review: The CERT Guide To Insider Threats · · Score: 2

    Suetonius reports Caesar words were spoken in Greek (kai sou teknon - no greek letters in Slashdot comments apparently). A more correct translation in Latin would be "tu quoque fili". Sometimes the whole phrase is reported as "tu quoque Brute, fili mi" (you too Brutus, my son).

  18. Forget FPGAs on Ask Slashdot: How To Make My Own Hardware Multimedia Player? · · Score: 1

    If you fancy some DIY, there are several good chipsets for media players: Intel CE4200 (i386) and several Marvell ones (ARM) just to name a few. They normally handle 720/1080p, stereo/5.1 audio and yes, they all run Linux :-)
    I personally like Marvell Armada chipsets (have been working on them in the past) and they're also used in some plug computers, which is something you may like to try (double-check the specs though).

    Once you've got your HW decoder, you can generally run gstreamer on it. You may need to fine-tune gstreamer for the particular chipset though, and possibly write your own player around it, as using gst-launch is quite hard-core. There are several other open-source libraries to add nice features, e.g. lirc for IR remote controls, DirectFB for GUI/OSD and WebKit for web browsing. Qt may be ported as well, which would be a good plus to me. You may also consider live555, which is what VLC is using I think. Of course XBMC is still a great solution, if you want things working (almost) out of the box.

    The best thing would be to double-check the SDK documentation (whenever accessible) and see what's supported by each particular chipset. Whenever a core feature is there (e.g. the codecs you want, input support, etc.) then it's possible to write some SW to use it. Unfortunately, in my experience, Python is seldom considered, but if you fancy C/C++, sky's the limit.

  19. Re:Engineering would be a better thing to learn on Why We Should Teach Our Kids To Code · · Score: 1

    You have to build geeks these days.

    I really hope not!

  20. Sounds like an Ad from the 80s... on Why We Should Teach Our Kids To Code · · Score: 1

    Then why not making medicine a compulsory subject too? Otherwise people will depend on a selected few to repair their bodies. And we should also add some industrial mechanics ts as well, we don't want to depend upon some elected guys when our [add any mechanical device here] breaks. And what about energy making? That's far more important than programming, and we don't want to depend on another set of few companies' know-how.

    I could continue, but the bottom line is: we have to depend upon other people, so let each one be free to choose who shall her/him rely on. I'd rather improve the quality of current compulsory subjects, in particular humanities: Our kids really need to get a broad perspective of human evolution in order to contribute to it, and no CS course will ever teach you how to think out of the box in the same way.

    Also, I'm glad that there are people who couldn't care less about programming: many of them are artists and they often enrich our lives with alternative perspectives of the world. And they also mean more job for me.

  21. Advice from the UK on Defunct Satellite To Fall From the Sky · · Score: 1

    Always take your umbrella with you.

  22. There's time to stash and time to cash on Krugman On Bitcoin and the Gold Standard · · Score: 1

    Many of you compared BitCoins to national currencies, but they are not. This is quite an important factor: at the moment people can afford to "stash" bitcoins because there's no real need to spend them: we still rely on national currencies for buying most of what we need.

    However, the fact that it's getting more and more difficult to mine them also means that the 21M limit is getting closer. Once reached, the impossibility to mine new bitcoins will inevitable affect their value and I'm quite confident that bitcoin trades will rapidly increase, as that will be the main way to "earn" bitcoins (vs exchanging them for other currencies).

    Honestly I think that having an exchange market has been a bad idea, as well as making bitcoins to last forever. If they'd been granted a maximum lifetime, people would have been forced to trade them as quickly as possible. What happened instead is that many guys mined bitcoins just to have a try, and will never use their stash, so those bitcoins are lost forever.

  23. Sounds of failure, the zen way on What Today's Coders Don't Know and Why It Matters · · Score: 1

    What is the sound of a pointer dereferencing to NULL?

  24. Break che link chain on Discovery of Water In Moon May Alter Origin Theory · · Score: 1
  25. Re:Alternatives? on The Rise of Filter Bubbles · · Score: 1

    An alternative: https://duckduckgo.com/ It doesn't profile you, support HTTPS and TOR, uses Wolfram Alpha... and have a spiffy Bang! syntax :-)