Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:re (Score 1) 461

I have a few recipes I use mine for. It's a combo pressure/slow cooker. I admit the pressure side of things kind of intimidates me but I'll happy cook any of the following for 4 hours:

* Lentil Curry Stew
* Vietnamese chicken curry stew
* Green Chili
* Red (or "Chocolate Chipotle Imperial Stout") Chili
* Beef and truffle beef stew
* Jerk Chicken/Beef/Pork

I've found or posted a lot of these recipes in the Google+ "Crockpot Obsession" group.

Comment Re:Great Recession part II? (Score 1) 743

Ultimately there is no security anywhere. Everything the investors own and the very concept of that ownership itself is imaginary and can disappear in an instant. True, they've stacked the rules in their favor, but that only holds true as long as everyone agrees to play by those rules. All it would take would be for one guy to point out that the Emperor has no clothes at the right moment and the entire house of cards will collapse. It's a toss up whether Greece is that one guy versus whether the Germans decide they don't appreciate people pointing out that the Emperor has no clothes and decide to foreclose on Greece. My guess is that the IMF and Greek leaders will decide they don't want either of those outcomes and come to another agreement that neither side particularly likes.

Comment What Would We Be Competing For? (Score 1) 421

The resources required for an AI are radically different from stupid squishy meatputers. An AI would not need a large amount of space, had plenty of options for energy and could make its own arrangements for secure generation of such, could easily automate construction replacement parts and frankly would find the 25 miles or so of gases that meat-based creatures inhabit to be rather toxic. An AI would surely be much happier with magnetically-shielded facilities in space. Pretty much anywhere in the universe that meatbags find inhospitable would be prime territory for a superior AI entity. I'd think the biggest danger to humanity from an AI would be that it would find them to be completely irrelevant. Unless, that is, they go out of their way to make themselves an actual threat.

Comment Re:Are you saying that criminals don't exist? (Score 4, Interesting) 164

Maybe not now, but if you actually work on fixing broken people, you'd end up with a prison profile more like Norway's. That wouldn't happen overnight, naturally. The system we have now has resulted in an awful lot of broken people, and they just propagate their disorders to their children. Look at violent criminals now and in most cases I think you'll find someone who would not have been violent if they'd received help at an earlier stage of their lives. People don't become criminals for no reason. Someone doesn't just wake up one day and think "What a nice day, I think I'll go out and murder a bunch of people!" We always know about those people in advance.

Of course, my Socialist-Totaltarian regime has a multi-pronged approach to addressing this:

1. All children will be confiscated from their parents and birth and raised in sanitary state-run facilities. Processes will be put in place to insure that no violent or sexual abuse of the children will be possible.

2. All children will be reversibly sterilized at puberty. Anyone wishing to breed will be required to pass a parental competency test.

3. For anyone unable to pass a parental competency test, the state will choose a partner based on specially-designed algorithms designed to insure the happiness of the couple.

4. All religion will be illegal except for the state-run one, which will involve Smurfs. Non-Smurfy behavior will be dealt with harshly.

I predict that my society would reach the "Utopia" stage within three generations.

:-P

Comment Re:Are you saying that criminals don't exist? (Score 4, Insightful) 164

Well, if we eliminate all the people who just wanted to get high quietly in the privacy of their own home and provided treatment instead of prison time for all the people who are in there as the result of alcohol and drug abuse, we could probably close all but one existing prison. Funnily many of the examples you provided are driven by the enforcement of white supremacy perpetuated by the anti-drug establishment. Which, by the way, is VERY good for the profits of the privatized prison system. Give someone in a community no opportunities other than being thugs and many of them will be thugs. This ought not to be surprising. Use lies and bad science to enact prohibition-style laws on substances no more harmful than alcohol and you'll see black markets arise, along with the violence associated with those black markets. Most people don't become broken for no reason, either. Address a few simple causes and you could significantly reduce the prison population in the country, the taxpayer burden associated with that population and increase the overall safety of the society. The for-profit prisons would really rather people didn't realize this.

Comment Re:Not the Issue (Score 4, Insightful) 164

This. The prison system is good money for the people who run it. The more people commit crimes again once they get out, the more money the prison system makes. The entire system is designed to encourage recidivism. The entire system is designed to incarcerate more people than any other country on the planet. The entire system is designed to turn a profit.

Comment Re:So long as you are doing batch processing (Score 1) 382

You mean by using a std::shared_ptr? "Oh but that's inefficient!" I hear you cry! But if you're the kind of programmer who can't learn how to delete objects before they go out of scope, that's a trade off you're going to want to make. Of course, allocating objects on the heap is so 1990s-era C++ programming. You can allocate the object on the stack and if it needs to do any big heap management it can do it within the confines of the object. AND you can properly deallocate it when it goes out of scope and implement a move allocator for it if you want to potentially return it by copy (Returning std::move(object) will promise the compiler you won't use that object any more in the returning function.) If you do it correctly, your stack will only ever grow by the few bytes needed to store a couple of pointers, which it would have done anyway. And you're much more likely to clean up resources with RAII than anything java can manage. Having seen big companies have to reboot java servers every couple of days because their JMS service bleeds file handles, I'm not at all impressed with Java or its automatic GC. I've had C++ servers run on production system for months at a time without the process size ever growing.

Comment Re:Easier to learn != easier to use (Score 1) 382

I keep having to support jackasses who want to use it for system programming because it's "Write once and run anywhere!" To be fair it was never designed to be a system level programming language, but that really doesn't help you any when someone drops some horrible abomination in your lap and asks you to support it for the next 5 years.

The deeper I get into OO, the more I start to understand that getters and setters are just as bad as exposing members of your object to the public. If you have to expose the working data of your objects that regularly, you're not working at the correct level of abstraction. A lot of the coding style I see in java is geared toward "I'll need this in the future" or "I have no idea what I'm going to need in the future, so I'll make this bit so generic that it can do anything." Both of these habits are incredibly bad practices that have been superseded by refactoring. A lot of inexperienced programmers think that once they've designed and coded some shit, it's carved in stone forever after that. I've seen countless cases of companies wringing their hands and working around problems in code that can be fixed with trivial changes to program design and adjustments to half a dozen or so objects.

I have much the same problem with introspection as I do with getters and setters. People say "Oh we have to use introspection because someone might want to write something new and drop it in there and we don't know how it'll behave!" Again, that's limiting your current design because you don't know what will happen in the future. Design a solid and maintainable interface NOW and if you need to change it in the future, change it in the future. Don't build some twisty maze of introspection that delegates any real work 10 objects away from the functions that initiate it just because someone in the future might want to write something else! And quite frankly, no one EVER WILL, because that would require knowing implementation-level details of the ball of shit you rolled up to support that.

Comment Re:Yeah right. Then explain COBOL. (Score 1) 414

Well if there's one thing programmers hate more than unreadable code, it's typing shit, and COBOL was an awful lot of typing shit. And for some reason, even though the individual lines were easy enough to read, something about the language made it very difficult to follow overall. Since the language was so overly verbose, functions usually ended up being pretty long, and it was very easy to get lost in them, in any COBOL code I was exposed to anyway. I'm sure there was probably some clean, well written COBOL code in the industry, but I never got a look at it.

Comment Re:Does it Stop (Score 1) 837

I drive across country on a pretty regular basis. But yeah, it's probably a net win for me seeing as how Oregon gas always seemed to be 20 or 30 cents higher than Idaho. Probably since they weren't letting you pump it yourself, last time I came through. I don't have a lot of excuse to get back that way these days, as if I want pot or gay marriage I already live in Colorado and if I want really good sushi I'm going to drive to Seattle. Though for the most part, the sushi around Denver can usually satisfy my sushi jones.

Slashdot Top Deals

One way to make your old car run better is to look up the price of a new model.

Working...