Slashdot Mirror


User: yacoob

yacoob's activity in the archive.

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

Comments · 13

  1. Bartimaeus! on Ask Slashdot: Best Science-Fiction/Fantasy For Kids? · · Score: 1

    Bartimaeus series:
    http://en.wikipedia.org/wiki/Bartimaeus_(book_series)

    You can read it both at the same time, and you'll both have fun.

    Alternatively, Leviathan series:
    http://en.wikipedia.org/wiki/Leviathan_(Westerfeld_novel)
    but it's less refined.

  2. It's not about Plus specifically. on Google Employee Accidentally Shares Rant About Google+ · · Score: 3, Informative

    It's about Google as a whole.

  3. Readitlater on Ask Slashdot: Websites Friendly To eReader Browsers? · · Score: 1

    Just because people recommend Instapaper, I'm going to tell you about http://readitlaterlist.com/ . Same idea, really. Slightly better instrumented wrt mobile apps.

  4. Re:Terminal.app on How Do You Get Your Geek Nostalgia Fix? · · Score: 1

    Well, I do that to do work. :D

    For extra nostalgia, use this terminal:
    http://www.secretgeometry.com/apps/cathode/

  5. Re:Anything but Vim, please on Hacking Vim 7.2 · · Score: 1

    Code editor? Excellent. Let's make a python editor out of it. [1]

    Syntax coloring? Check. Proper indentation? Check. Well, almost (backspacing over automatically inserted spaces doesn't seem to remove them in one go). Tab completion? Ch... hmmm. Omni completion is almost there. Almost, because it opens a scratch buffer with documentation. While this is understandable when running in terminal, it looks rather bad in GUI. It also doesn't seem[2] to be aware of local modules. There's some basic support for inspection, in the form of taglist plugin, but - again - separate buffer. And if you want something more IDE-like, ie. integrated debugger - good luck with that.

    Don't get me wrong, I like VIM, and it's a fine editor. It's a good, ubiquitous tool. I'm just not exactly convinced that it's a decent programming editor. I've tried to use it as such, with various amount of success. Things probably look different for C, though.

    [1] yes, I've read http://blog.dispatched.ch/2009/05/24/vim-as-python-ide/
    [2] perhaps it can do this after flipping some option, but I haven't looked at it closer yet.

  6. Re:Why on Hiding From Google · · Score: 1, Interesting

    It's a corporation. Corporation's goal is to make money. You'd be fool to think otherwise, because that what companies do. Is that evil? No.
    Evil would be abusing law or users' trust for their own good. This particular corporation earns money, in an unusual way, while providing some unique services. Is that bad? I don't think so.

    I'm having really good time, reading "Google should do X, Y, Z!" being pushed by people who clearly think that they should just receive all of the possible services for free. It's a simple deal, vote with your le^Wtraffic.

  7. Re:Sorry on Bono Hopes Content Tracking Will Help Media Moguls · · Score: 5, Informative

    Mr. Williams should read up on his stories.
    http://www.snopes.com/music/artists/bono.asp

  8. Re:speaking as a charity volunteer on UK Wants To Phase Out Checks By 2018 · · Score: 1

    Yeah, I was about to mention that. It looks like having name, sort code and account number (which together with bank ID form IBAN) allows one to play with given account in some nasty ways. I think, however, that this is a result of poor security standards in those banks. Having moved from .pl to .ie some time ago, I was quite shocked to see how primitive and backwater Irish banks are. Oh well.

  9. You'll be learning different things as you go. on Which Language Approach For a Computer Science Degree? · · Score: 1

    I believe that school should run you through...
    * A bit about assembly. You're going to learn how CPU is built, right?
    * C. To make you think about algorithms once you know how things run.
    * Lisp. To make you understand functional programming.
    * Java/Python. Probably the latter, to show you OO approach.

    Apart from that, learn on your own whatever seems to be the current fad. You'll be changing the languages you write in anyway, but with some basics it should be easy.
    Knowing the libraries and "ecosystem" of specific languages, well, that's totally different story. Can't give you an advice here, as I'm not a developer :)

  10. How about... on What Would You Want In a Large-Scale Monitoring System? · · Score: 5, Informative

    Needed features in random order:
    * Scalability - few k machines is minimum. This probably means smart, decentralized collection and aggregation of data.
    * Flexible whitebox monitoring - for given class of devices, I should be able to configure how to fetch this device's data (http, smnp, ssh+command, rpc, you-name-it) and how to interpret it ("read the status page there, get this and that value").
    * Flexible blackbox monitoring - for given class of devices, I should be able to configure a set of actions that should be performed on it (fetch a page, ssh into, ping) and how results of that action should be interpreted (ok/nok, time to complete, etc.).
    * Easy way to tag (source/machine/network segment) and aggregate (max/min/mean/stddev/%ile/sum) of the monitoring data.
    * Some language to easily calculate derivative values from the data above.
    * Interface for defining graphs, using collected data.
    * ...and a system for annotating the above. Raw data is neat, annotated data is even better.
    * Alerting subsystem, which should allow for defining different destinations, together with escalation rules. And custom alerts - using the .
    * (nice to have) HTTP server with a simple HTML templating, to allow for easy creation of arbitrary dashboards.
    * (if you have the above) predefined templates for most of common things. Both detailed ("everything about device X") and general ("if the background of the page is green, you're fine! If it's not, here you'll find a concise list of what's broken").
    * hooks/libraries to use collected data "outside" of the system

    I realize that's a lot, but boy, such system would be very useful and flexible.

  11. Meat is still important on The Technology of Neuromancer After 25 Years · · Score: 1

    One of the funny bits in the book for me, is how they fly around from city to city to talk/meet with people, and fix things up. And at the same time they have a worldwide computer network... :)

  12. Last time I've checked... on Hospital Confirms Steve Jobs's Liver Transplant · · Score: 1

    ...slashdot was a tech news service, not a tabloid. Changing profile?

  13. graphical cheatsheet on (Useful) Stupid Vim Tricks? · · Score: 1

    This site comes useful.