Slashdot Mirror


User: Foofoobar

Foofoobar's activity in the archive.

Stories
0
Comments
2,414
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,414

  1. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    I guess braindead lefties never learned to read; after all, public schools are a socialist agenda after all.

  2. Re: HILLARY SHOULD OF WON on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    "In response to threats, actual assaults, and encouragements from the Left for the Left to instigate and expand" Citations please.

  3. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    Potato, Tomato my friend. And you should try programming more. It help you with logic.

  4. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    Commie? You voted for the Russian backed president comrade

  5. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    I try to stay away from sites that ask me to purchase a tinfoil hat. It's my socialist, media and elite education upbringing I guess... or whatever it is you blame it on since I'm not black or jewish or muslim or mexican.

  6. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 0

    Never said it was law dumbass, just said I tolerate fuckwits like you, asshat.

  7. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    Lol. go ahead. I remember last time that happened... "Trump Fanatic Attacks Pizza Parlor to uncover Child Pornography Ring". Yeah you guys are real winners. Go for the gusto man. :)

  8. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    Yep socialist through and through. I like the fact the government pays for my police and fire dept and roads and schools and air traffic control and military and libraries and parks and plumbing and electricral grid and bridges etc etc Don't like it? stop using our electricity and plumbing and roads and calling our police and fire departments and going to school... but sounds like you already stopped going to school so good on you.

  9. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1

    They passed it to the Senate dumbass... pay attention.

  10. Re: Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 1, Flamebait

    I tolerated blatant racism for the last 6 months. I tolerated removed healthcare for the poor I tolerated removing safety and business regulations for to keep them from polluting and making our country like a toxic wastehole like China I tolerated them raising taxes on the middle class and lowering it on the rich Now I tolerate a couple holes in the ones who I have tolerated allowing this to occur. So yes... I'm pretty damn tolerant. :)

  11. Re:Thoughts and prayers on Congressman Steve Scalise Among 5 Shot at Baseball Field (nytimes.com) · · Score: 0, Flamebait

    Indeed. My thoughts and prayers go out to the gunman and his family for not being a better shot

  12. Poison the Purveyors on 'There's No Good Way To Kill a Bad Idea' (qz.com) · · Score: 1

    Its the same with a 'good idea'... poison the purveyors. Make the people pushing the idea or supporting it look incompetent, then portray them as reprehensible. Then show how the idea is pushed by those who are reprehensible and you have tied the idea to reprehensible people hance the idea becomes reprehensible through association.

  13. Batman on Ask Slashdot: What Are Your Favorite Books On Entrepreneurship? · · Score: 1

    Its a series about a child with a dream who funds himself in his cave with the help of his butler. He builds forensic devices and military grade weaponry and does his own field testing. Wonderful series.

  14. Functional Programming IS GROOVY!!! on Ask Slashdot: Do You Like Functional Programming? (slashdot.org) · · Score: 1

    For all the BS about Groovy not being functional, if you look at partial implementations, Groovy is just as functional as Scala. And better yet... it is 100% compatibale with Java; Take ANY Java class and change the extension to '.groovy' and it will compile!

  15. And in other news... 'Water is WET'. Film at 11.

  16. Re:Only If You Plan For Your Code 2 B Incompatible on Ask Slashdot: Should I Move From Java To Scala? · · Score: 1

    Dynamically typing is VERY handy. I can code very quickly in a development environment and then once stable, make sure what I want to move to production is statically typed. It makes your development more agile as a result. Thus you get fast development speed and high scalability. Doing everything statically (and I dont care how good of a programmer you are) takes a LONG time to code, debug and compile.

  17. Re:Kotlin on Ask Slashdot: Should I Move From Java To Scala? · · Score: 1

    ...groovy is still stuck with the "mistakes" of java as well which is what Scala attempts to fix with the rewrite. Kotlin is also a rewrite but does a great job of "fixing" java without causing the compatibility issues that Scala creates.

    Kotlin is a nice language as is Groovy; they both provide similar functionality in different ways and compatibility with Java. Scala does NOT provide compatibility with Java. One advantage is that Groovy is much further along and much more widely adopted; it is part of the Android Development toolkit after all.

  18. Re:Maybe Kotlin on Ask Slashdot: Should I Move From Java To Scala? · · Score: 1

    Actually Groovy is far simpler and integrates with Spring and is 100% compatible with Java. In fact if you take any Java class and change the extension from '.java' to '.groovy' it compiles 100% of the time.

  19. Re:Kotlin on Ask Slashdot: Should I Move From Java To Scala? · · Score: 1

    Well to correct your Groovy statement... all Java code can convert to Groovy with 100% compatibility; change any Java class extension from '.java' to '.groovy' and it compiles 100% of the time. That because Groovy is just a layer of convenience code on top of Java. Scala attempts to REWRITE Java and thus causes an incompatibility with Java and Java libraries.

  20. Only If You Plan For Your Code 2 B Incompatible on Ask Slashdot: Should I Move From Java To Scala? · · Score: 3, Informative

    With all the Scala hype, people neglect to point out that Scala is NOT compatible with Java; alot of libraries and tools have to be rewritten to work with Scala. This is why LinkedIn dumped Scala, Spring dumped its Scala adaptation and more and more companies are dumping Scala. And for all its hype on 'functional programming', you can do the EXACT same thing in Java and Groovy with 100% compatibility. In fact, every Java class converts 100% to Groovy; take any Java class and change the '.java' extension to '.groovy' and it will compile without issue. The same CANNOT BE SAID OF SCALA! This is because it is not compatible with Java and requires Java rewrites in order to be compatible.

  21. Incorrect. Message queues dont share IO state either. You would know that if you tried to pass back to proxy or api server. They cannot synchronize state and the best people have figured out is to pass a 'state token'. This doesn't work however because IO's central version of truth is where I/O meets and so when proxy sends state token, api server may have different state because they didn't synchronize since last update to api server. Or perhaps MQ has different stae from api server and thus rejects because it didn't synchronize. Yeah so... nothing like MQ my friend. Try to understand I/O before commenting like a monkey behind a typewriter

  22. Showed this to Netflix once and they stated 'This fixes everything we are currently having issues with'. Apparently the entire industry has implemented API's in distributed architectures in such a way as to create architectural cross cutting concerns... https://www.slideshare.net/bob...

  23. KEXP... nuff' said.

  24. Re:I hope they focus on the command line on GitHub Invites Contributions To 'Open Source Guides' (infoq.com) · · Score: 1

    I HACKZORZ ur APPS W1T my luddite shell

  25. Improve The Economy on Ask Slashdot: How Do You Deal With Aggressive Forum Users? · · Score: 1

    Employed developers make happy developers... and ones with far less time on their hands. Thus they dont spend their time on forums all day. Improve the highly exploited H1B program, make laws that protect employees for unlawful firing practices, etc etc. BUT... since this will NEVER happen, expect those comments to continue. Sorry.