Slashdot Mirror


User: Sembiance

Sembiance's activity in the archive.

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

Comments · 50

  1. Commodore Game Ads Wallpapers w/ code on Catch Up Via Video With World of Commodore 2012 · · Score: 2

    Just last week I made a blog post about how I created several 5000x5000 wallpaper montages of old Commodore game ads. Includes code. http://cosmicrealms.com/blog/2012/12/31/c64-magazine-game-wallpaper-generator/

  2. Ballmer is invincible on Bungled Mobile Bet Will Be Ballmer's Swan Song · · Score: 2

    Ballmer is near invincible, so long as the MSFT stock continues to not-decline.I don't think anyone has the guts to actually show him the door when the stock isn't plummeting. Sure, maybe the stock will plummet if Surface flops, but somehow I doubt it.

  3. She thinks Coffee makes you fat - FOX News Video on Woman Trademarks Name and Threatens Sites Using It · · Score: 1

    She thinks Coffee (by itself, pure coffee) makes you fat.

    She did an interview to fox news (big surprise) here: http://www.myfoxorlando.com/dpp/health/111709-Does-coffee-make-you-fat

    Conveniently she has a patent on something that she claims prevents coffee from making you fat so you can continue drinking it.

  4. World of Solitaire on JavaScript/HTML 5 Gaming? · · Score: 1

    I made World of Solitaire (http://worldofsolitaire.com) and I think it's pretty awesome.
    100% HTML/JavaScript, no flash. Over 50 different solitaire games, multiple decks, undo support, customizable backgrounds, statistics and more.

  5. Re:ReadyNAS on Best Solutions For Massive Home Hard Drive Storage? · · Score: 1

    I have to absolutely second this suggestion.

    Over the past several years I've tried various things to solve my own needs for a large storage array at home.
    I ran a Linux server with a lot of drives software raided for 2 or 3 years.
    While it 'mostly' worked, it was a huge huge hassle to set up and maintain.
    Also when a drive failed (and boy did they) it was a huge hassle to open up my case, determine which one was the failed drive, replace it, then *hope* that I could run the right commands in the right order to restore the drive.
    God help me if more than one failed.

    I eventually realized I need a more 'professional' and 'fool proof' device.

    After a lot of research I bought a Drobo. Despite some good reviews, once you register a product key with them and gain access to the customer only forums, you will find a LARGE number of complaints. Valid complaints.
    Basically their software leaves a LOT to be desired. At the time they didn't have any 'standalone NAS devices'. They all required you to install buggy software that didn't work with linux.
    I tried several different Drobos and worked with their support departments, but eventually just had to give up entirely on them.

    I did even more research and came across the Netgear ReadyNAS systems.
    They had great reviews, the only problem is they were damned expensive.

    I decided I'd give it a try and I ordered a ReadyNAS Pro

    That was about 2 years ago or so. It was an absolute BREEZE to set up. Just accessed it's built in web server via any browser.
    It has worked PERFECTLY since then. ZERO issues.

    It's very fast and serves up files via NFS to my linux systems and to my windows systems as a mapped network drive (SMBFS/Samba).

    I really could not be happier with the system. I HIGHLY recommend you invest in one.

  6. Solitaire with AJAX on The Future of AJAX and the Rich Web · · Score: 1

    AJAX Solitaire has come a LONG way too, as shown here: http://worldofsolitaire.com/

  7. Still doesn't understand the code itself on Finding New Code · · Score: 2, Insightful

    One thing that I find disappointing with all the code search engines is they all treat them as regular text files, more or less.
    None of them seem to make an effort at understanding the code syntax.

    That's why a few years ago I wrote one for C/C++ code called http://csourcesearch.net/

    I just did it as an experiment, and using all open source software and in my spare time, but I think it having the ability to syntactically know the difference between a comment, a function, a structure, etc. makes a big difference.

    When Google launched their engine, I was disappointed they didn't take the extra time needed to make their parser/engine smart.

  8. Re:Pole Reversal? on North Pole Heads South · · Score: 1

    This tin smells spoiled!

  9. Re:Choice of db? on Searchable C/C++ DB surpasses 275 million lines · · Score: 1

    Well the server didn't actually die.
    I had a limit of 125 connections for Apache, and that was reached and stayed maxxed for several hours.

    The site did respond to requests, searches, etc. it was just very slow due to high load on the box:
    18:38:29 up 97 days, 9:21, 1 user, load average: 27.49, 21.31, 28.03

    It was in the 40+ range earlier :)

  10. Re:AJAX? on Searchable C/C++ DB surpasses 275 million lines · · Score: 1

    The site is AJAX :)

    It also uses XSLT to transform the received XML into the search results.

  11. Re:was it /.ed on Searchable C/C++ DB surpasses 275 million lines · · Score: 1

    Before the slashdot article I was getting about 4 or 5 visitors an hour.

    Since it's been slashdotted my server is maxxed serving 125 requests at a time, according to server-status about 10 requests/second.

    I imagine the traffic will die down in a few days, and settle into something more sane, hopefully something my poor little celeron server can handle :)

  12. Re:Yet another source code search engine? on Searchable C/C++ DB surpasses 275 million lines · · Score: 2, Interesting

    I just did it for fun, and hopefully some people might get some use out of it.

    This engine understands the code at a C/C++ syntax level, unlike koders.com so you can better search for what your after (comments, functions, macros, classes, etc).

    Also this engine DOES allow you to click on words in the code, but only includes and function or macro calls.

    There are several things that are not that great about my site, it's a little slow, doesn't support free text searching nor variable searching, and you can't copy search URL's for pasting (uses XMLHttp and form POST's).

    But it's just me doing this thing, and I have limited time and most importantly limited money/hardware.

    My wish is for google to do their own but index a LOT more code and have it be fast and friendly :)

    They certainly have the resources to do it and would be a great tool for coders to use. Maybe this will help fill a gap in the mean time :)

  13. Re:The basics and more on Searchable C/C++ DB surpasses 275 million lines · · Score: 1

    You can see the list of projects this code is from here:
    http://csourcesearch.net/package/

  14. Re:Choice of db? on Searchable C/C++ DB surpasses 275 million lines · · Score: 4, Informative

    I've used MySQL in the past for some projects at work, where the number of rows were several hundred million and ran with no problems so I knew it was capable of large row numbers.

    I initially used their FULLTEXT indexing as well, but it dies a horrible death with a large number of rows or search terms. (The developers that live in #mysql on Freenode confirmed this)

    So I had to hand off searching to Lucene, which worried me a great deal (being java) but as folks tell me 'Java is not slow'.
    They are right, Java is very fast at handling the searching and I've been very impressed.
    Most searches in the Java database only take one or two seconds.
    The MySQL query/join for additional info take another 4 or 5 seconds.

    Most searches take about 8 seconds to come up, even under no load.

    I simply don't have enough RAM to keep the necessary MySQL indexes in RAM and use index only queries.

  15. Re:Statistics: on Searchable C/C++ DB surpasses 275 million lines · · Score: 2, Informative

    You can see the license type broken down here:

    http://csourcesearch.net/license/

    You can also click on any of those licenses and then on that page choose to only search for code found in that license.

  16. Oooo great ideas on Searchable C/C++ DB surpasses 275 million lines · · Score: 1

    Thanks for all the comments, there are some great statistic ideas here.

    It will take a while to generate all the stats, potentially months.
    Once they are finished I'll post the results somewhere.

    In the mean time I hope some people find the site useful.
    I didn't do it to make money or anything, I just want to help out other coders :)

  17. Re:And then... on Searchable C/C++ DB surpasses 275 million lines · · Score: 5, Interesting

    Advertise? No, I'm just a single coder doing this for fun and hope that some people will find it useful.

  18. Re:useful statistic on Searchable C/C++ DB surpasses 275 million lines · · Score: 5, Funny

    Well, it's been about 2 minutes on slashdot... my site is already dead. So uhm... 2 minutes?

  19. Re:What outage? on World of Warcraft Outage Charted · · Score: 1
    I couldn't care less if www.worldofwarcraft.com is working while I play.


    The reason worldofwacract.com is down so often is because it's running ASP.NET

    That simple.

    I used to have respect for Blizzard web programmers, they chose PHP/Apache for previous websites (websites that never had a problem with load).
    Sounds like when their smart programmers quit to form their own companies, that they ended up hiring some prune who thinks Microsoft products are the best.

  20. Re:Bad on Fingerprints Replace Credit Cards in Seattle · · Score: 1

    It's not thriftway or seven-11 that we should be worried about.

    It's RADIO SHACK!
    Most towns have more Radio Shack stores than walmarts!
    And how often have you seen anyone SHOP there?

    They have got to be a govt front.

  21. Prepare funny smart ass remarks! on Slashdot Gameshow Experiences? · · Score: 1

    Like Ken, the current computer programming jeopardy champion, you need to have funny smart ass remarks.

    As seen here:
    http://www.cosmicrealms.com/coolness/movies/KenOnJ eopardy.mpg

  22. Xselerator is king for XML+XSLT on Office 2003 Pro as an XML Authoring Application? · · Score: 1

    If your XML is gonna be translated with XSLT, then hands down the best XML/XSLT editor to use is Xselerator

    http://www.topxml.com/xselerator/default.asp

  23. What good is only benchmarking the latest cards? on Official Doom 3 Benchmarks Released · · Score: 1

    Does anyone else think this benchmark is pretty much pointless?
    What good is a benchmark if the only included cards are the latest top of the line models?

    Maybe we should draw the conclusion that if you have anything less than what was benchmarked, don't buy Doom 3.

  24. Re:Get a whole (virtual) server on Unix Shell Accounts? · · Score: 1

    Or just get an ENTIRE whole server at http://www.servermatrix.net/

    They have dedicated servers (all yours, not shared, full root) starting at $79/month ($49/month with a set up fee).

    Then you can give other people free shells and help solve the problem instead of just bitching about it.

  25. Re:One word . . . on The Latest And Greatest Console Applications? · · Score: 2, Insightful

    That's your problem.
    I've never ascended either, and I've been playing for more than 7 years now.

    And your game doesn't sound very appealing to Nethack players.
    Maxing stats and worrying about how much attack damage is not what Nethack is about.
    And 'recalling' back to town to 'sell treasure' sounds way too much like an MMOG than Nethack.

    Nethack simply isn't for you. It's not for everyone.
    Anyone who stops playing Nethack for good, well, it isn't for them :)