Slashdot Mirror


User: gfody

gfody's activity in the archive.

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

Comments · 723

  1. Re:Put the business logic in the database on Ask Slashdot: What Are Some Bad Programming Ideas That Work? (infoworld.com) · · Score: 1

    I would tend to draw the line at making webservice calls.. that almost never works well from the database. I say almost 'cause I'm guilty of doing it from a service broker queue. I'm not proud of it, however.

  2. Re:Put the business logic in the database on Ask Slashdot: What Are Some Bad Programming Ideas That Work? (infoworld.com) · · Score: 1

    Well they asked for "bad ideas that work" - it's bad for all the reasons we know but it sure does work, except for when it doesn't. If you are already locked in to a SQL Server or something then taking advantage of its modern features and tooling can be a real productivity boost over say writing lots and lots of plumbing code just to avoid having your "business logic in the database".

  3. Put the business logic in the database on Ask Slashdot: What Are Some Bad Programming Ideas That Work? (infoworld.com) · · Score: 2

    Or rather forget about what's business logic and what's not - if it can be done in the database, do it there.

  4. Re:Why not servers? on Intel To Debut Limited-Run Ivy Bridge Processor · · Score: 1

    that company is seamicro btw

  5. Re:"Valued"? on Steve Jobs' Yacht Impounded In Amsterdam · · Score: 5, Funny

    Look at this: http://www.onemorething.nl/wp-content/uploads/2012/10/Schermafbeelding-2012-10-27-om-13.57.16.png Jobs would've dropped dead at the site of the imac cables coming out of those ikea cabinets and duct taped to the floor.

  6. Never happened on Mozilla Brings Back Firefox 64-Bit For Windows Nightly Builds · · Score: 5, Informative

    I've been using 64bit nightly since the idea of dropping the builds was mentioned in bz. There was a big debate and a bunch of tech news sites picked up the story and now the latest is that they're being "restored". But the 64bit nightly builds never stopped! I'm sure this story is just to get everyone to STFU about it already.

  7. 1941 on The Greatest Machine Never Built · · Score: 1

    Konrad Zuse designed and built the first mechanical computer in 1941. It's his own design using binary.

  8. The problem is bad acting on Hobbit Film Underwhelms At 48 Frames Per Second · · Score: 1

    Actors are pretty good at delivering convincing dialogue but there are a million subtle things that we sense subconsciously in every little movement. This information is mostly missing in 24fps so our minds fill it in with something appropriate - basically our subconscious gives the actors the benefit of the doubt and we see convincing movements. But when their actual movements are accurately captured and played back for us our subconscious sees every subtle thing and it ruins the effect. We can sense that they're just acting and it feels like they're just reading lines.

    That's my theory I just made up but it doesn't explain why we get the same feeling when TV's add interpolated frames to double the frame rate.

  9. Re:No support, no bug fixes on The Strange Birth and Long Life of Unix · · Score: 1

    You might be interested in this: http://www.gentoo.org/proj/en/gentoo-alt/prefix/
    I use git w/diff.external=winmerge and couldn't be happier

  10. Re:Two things on The Science of Humor · · Score: 1

    no it isn't

  11. Re:Netflix on Microsoft Killing Silverlight? · · Score: 1
  12. Re:KDE on Windows? on Ask Slashdot: Spoof an Email Bounce With Windows? · · Score: 1

    Cygwin and Msys are basically pointless. Windows already has a native UNIX subsystem with a strong user community and a couple flavors of Linux. There's even a reverse WINE for binaries that can't be compiled for Interix.

  13. Re:more fun.. on Career Advice: Don't Call Yourself a Programmer · · Score: 1

    for most Architects of Software Systems that I've met the acronym is totally apt!

  14. Re:Quorum looks a lot like Pascal on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 1

    This is such a good idea. Even beyond vcs I would want to only ever persist syntax trees and have all formatting based on rules and exceptions stashed in my home directory.

  15. Re:Quorum looks a lot like Pascal on Is Perl Better Than a Randomly Generated Programming Language? · · Score: 2

    Modern IDEs make it so easy to convert from one style to another I wish they would just make it a display option. Then each developer could read and write in the style they prefer.

  16. Re:Well, of course. on Early Speed Tests For Windows 8 · · Score: 1

    lol

  17. BS on A Few Million Virtual Monkeys Randomly Recreate Shakespeare · · Score: 1

    can they provide the RNG and seed value that produces the poem? thought not

  18. Re:Easy. on Newb-Friendly Linux Flavor For LAMP Server? · · Score: 1

    Okay let's learn: Windows is a Microkernel and Linux is a Monolithic kernel - fundamentally different approaches to OS architecture. Which one do you think has less code in the kernel and therefor less chance of bugs and vulnerabilities?

  19. Re:why do this? on IBM Shows Off Brain-Inspired Microchips · · Score: 1
  20. Re:Servers on The Death of Booting Up · · Score: 1

    My workstation is a TYAN server board. It takes about 5 minutes to boot. Most of that is waiting for the RAID controllers.

  21. Re:STOP on Mozilla Firefox 6 Released Ahead of Schedule · · Score: 1

    The thing I like about firefox is that you can completely rearrange the interface. For me every version has looked the same.. I don't really care what they do with the default settings.

  22. Re:unHappy FF user here on Firefox 6 Ships Next Week, 8 Blocks Sneaky Add-Ons · · Score: 2

    just disable addon compatibility checking

  23. ROI on Facebook: We Have Proof Ceglia's Contract Is Fake · · Score: 1

    Ceglia invested $1,000 in 2003 and is now expecting a 25,000,000% return on his investment. Get in line, Ceg even expecting your $1,000 back would be unreasonable.

  24. Re:Can somebody explain NoSQLers to me? on Unified NoSQL Query Language Launched · · Score: 1

    You'll want to check out the clustering systems, anything stating to provide write-scaling is probably multi-master. PG-XC describes itself as a "write-scalable synchronous multi-master postgresql cluster". Interestingly 'synchronous' implies that this system scales out without sacrificing consistency. I haven't used it so I can't say for sure. My experience is with commercial RDBMSs and the eventual consistency model.

    Data & Reality looks like an interesting read for sure, I will add it to my queue thanks!

  25. Re:Can somebody explain NoSQLers to me? on Unified NoSQL Query Language Launched · · Score: 1

    If you've modeled your information well and not let specifics of your application creep in then changes in your application need not be a problem at all. Even if you do need to refactor your information any modern RDBMS has great tools to help. I really do wonder what people with very large object stores are doing when their objects change.

    PostgreSQL supports all manner of replication, I imagine it's not as easy as something called "easy replication" but would count on it being more flexible. Or use one of the many clustering systems to trade some flexibility for ease of use.