Slashdot Mirror


User: el+momia

el+momia's activity in the archive.

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

Comments · 11

  1. Re:Bush-Cheney Intel policies and personnel. on Rand Paul Files Suit Against Obama Over NSA's Collection of Metadata · · Score: 1

    Obama has allowed much of Bush-Cheney's Intelligence policy/personnel to remain in place, but it was implemented by Bush & Cheney.

    He's still liable for not firing those people on the spot

  2. Re:Timing Much ? on John Carmack Left id Software Because He Couldn't Do VR Work There · · Score: 1

    You couldn't even read the first phrase of the summary?

    "John Carmack left id Software last year,"

    Last year was a month ago, now get off my lawn

  3. Re:Wisdom follows, pay attention! on EU Commission: Corruption Across EU Costs €120 Billion · · Score: 1

    Therefore EU must be kept together, no matter how much it costs and how much of that budget goes to waste. Anyhow, if a corrput person receives millions, he will spend them on Ferrari, yacht, villa and gambling. The money soon returns to the circulation in the economic sphere and no long-term loss is evident.

    Santa Claus is actually your parents!

  4. South America then... on EU Commission: Corruption Across EU Costs €120 Billion · · Score: 1

    is not that bad ;)

  5. Im not updating on Why Does Facebook Need To Read My Text Messages? · · Score: 2

    I saw that odd permission request today, fuck me if I ever update this crapware again

  6. Re:no on An Iowa ISP's Metered Pricing: What Will the Market Bear? · · Score: 1

    god bless america and the free market

  7. Re:configuration languages on Linux 3.13 Released · · Score: -1, Offtopic

    python sucks

  8. Re:Hey - NSFW on Romanian Bitcoin Entrepreneur Steps In To Pay OpenBSD Shortfall · · Score: 1

    3. What are you doing surfing Slashdot at work for anyway?

    I surf slashdot like 60% of my working hours

  9. Re: Addicted on China Defines Internet Addiction · · Score: 1

    Oh I'm hooked Chinese doctors please help me!! And if you can bring a couple of young chinese girls to blow job my addiction off.

  10. Re: on UK Outlines Plan For Internet Black Boxes · · Score: 1

    LOL I guess Orwell vision is coming to reality..ironically, '1984' happens in London.

  11. Re:Just using VIM on (Useful) Stupid Vim Tricks? · · Score: 5, Informative

    :%s/foo/bar/g go through all the file and replace foo by bar :12,20s/foo/bar/ from line 12 to 20 replace foo for bar :s/foo/bar/g in the current line replace foo for bar the g after the last / means to replace all the occurrences of foo vby bar and not only the first one.