I have to finish and defend my thesis, but it's am interdisciplinary liberal arts program with fairly loose standards so I'm pretty much free to do what I want. It's about halfway done and I'm pretty sure none of the people on my committee actually know anything about the subject, which is not surprising seeing as I appear to be one of the four or five people on earth who cares about 1930s Chinese detective literature.Gands wrote:Congrats!
Is there now a research component, or is it all done?
Testing Chat Episode VI: Return of the Chat
Re: Testing Chat Episode VI: Return of the Chat
Re: Testing Chat Episode VI: Return of the Chat
So, I think Elfdart is an annoying idiot most of the time, but when it comes to Game of Thrones it honestly is pretty impressive how on the mark some of his predictions are.
He usually follows them with something incredibly wrong, but his overall accuracy is still way better than it should be.
He usually follows them with something incredibly wrong, but his overall accuracy is still way better than it should be.
- Agent Bert Macklin
- Posts: 1197
- Joined: Mon Sep 26, 2011 3:20 am
Re: Testing Chat Episode VI: Return of the Chat
He's probably read the books.
-
- Not a Brony (Probably lol)
- Posts: 1733
- Joined: Tue Feb 21, 2012 12:17 am
Re: Testing Chat Episode VI: Return of the Chat
Then why is he getting predictions wrong and not being all smug and superior in the book spoilers thread?
Do you guys really think he'd stoop so low as to lie about reading the books to impress people with his magic T.V. prediction powers? He's not that much of an attention whore.
Do you guys really think he'd stoop so low as to lie about reading the books to impress people with his magic T.V. prediction powers? He's not that much of an attention whore.
Re: Testing Chat Episode VI: Return of the Chat
Throw in a few wrong ones periodically to make it look credible.
I've seen it done.
I've seen it done.
Re: Testing Chat Episode VI: Return of the Chat
Always in motion is the future.
Re: Testing Chat Episode VI: Return of the Chat
do you any of you guys like firely?
http://store.qmxonline.com/Malcolm-Reyn ... p_286.html#
i just got passed some news about this thing
it's a doll
http://store.qmxonline.com/Malcolm-Reyn ... p_286.html#
i just got passed some news about this thing
it's a doll
Re: Testing Chat Episode VI: Return of the Chat
I liked Godzilla. It was a really good godzilla movie.
Re: Testing Chat Episode VI: Return of the Chat
I was interested but 179$ for a plastic man is more then I'm willing to pay.Veef wrote:do you any of you guys like firely?
http://store.qmxonline.com/Malcolm-Reyn ... p_286.html#
i just got passed some news about this thing
it's a doll
-Aaron
Re: Testing Chat Episode VI: Return of the Chat
"You don't have to worry about memory management" is a common selling point for garbage collected languages, but it's a real work of fiction. It's entirely possible to create gigantic memory leaks in Java or whatever by just not hanging on to your object references when you're done with them which is exactly the sort of casual lack of thought that causes memory leaks in Cish languages. You can't really release a Java or TCL or whatever application without testing its memory usage over time and, oh, hey, that's exactly what I have to do with my C++ thingymajiggers using Valgrind, Purify, etc.Dooey Jo wrote:i always find it funny that when a language apologist tells you "now you don't have worry about memory management/types/const/whatever" what they usually mean is you can't "worry" about those things when you need them, essentially taking away
And garbage collection doesn't help at all with managing things like file handles and sockets that are still constrained but aren't plain memory. For those, you want the deterministic destruction of something like C++, not the 'when we feel like it' approach of Java.
I'm told C# is better than Java for this sort of thing but I've never had the opportunity to try it. I mostly work on UNIX-a-likes and .NET might as well not exist there. Open source knock-offs with dubious legal status aren't exactly what you'd call king of that particular hill.
Saying this, Java and scripting languages are still much more appropriate for non-resource-constrained tasks. They're just much quicker and easier environments to knock something that mostly works together in, especially for non-specialists. C++ is hard unless you spend a lot of time in it and keep it all fresh in your mind or you're some super-genius far smarter than anyone I know.
Re: Testing Chat Episode VI: Return of the Chat
I liked it too.joviwan wrote:I liked Godzilla. It was a really good godzilla movie.
Meanwhile, most of my colleagues, who only know Godzilla from the 1997 movie (as I do, too), found it "shitty" and "stupid". Criticism I've heard:
No.
Re: Testing Chat Episode VI: Return of the Chat
Man the movie spent like twenty minutes explaining where he came from
Godzilla has a terrific design and the 97 film was the worst.
The human people were flat though. Ken watanabe spends the entire movie just being "profoundly, cryptically perturbed Japanese Wiseman"
Godzilla has a terrific design and the 97 film was the worst.
The human people were flat though. Ken watanabe spends the entire movie just being "profoundly, cryptically perturbed Japanese Wiseman"
Re: Testing Chat Episode VI: Return of the Chat
Well, C++ at least has RAII to simplify memory management. It's a lot easier to deal with than straight-C.Vasey wrote:"You don't have to worry about memory management" is a common selling point for garbage collected languages, but it's a real work of fiction. It's entirely possible to create gigantic memory leaks in Java or whatever by just not hanging on to your object references when you're done with them which is exactly the sort of casual lack of thought that causes memory leaks in Cish languages. You can't really release a Java or TCL or whatever application without testing its memory usage over time and, oh, hey, that's exactly what I have to do with my C++ thingymajiggers using Valgrind, Purify, etc.
You can have deterministic release of non-memory resources in Java. It was tedious boilerplate, but Java 7 introduced try-with-resources, borrowing C#'s using semantics.And garbage collection doesn't help at all with managing things like file handles and sockets that are still constrained but aren't plain memory. For those, you want the deterministic destruction of something like C++, not the 'when we feel like it' approach of Java.
I'm told C# is better than Java for this sort of thing but I've never had the opportunity to try it. I mostly work on UNIX-a-likes and .NET might as well not exist there. Open source knock-offs with dubious legal status aren't exactly what you'd call king of that particular hill.
Re: Testing Chat Episode VI: Return of the Chat
omg the jeopardy! tournament was amazing
In the name of the moon, I will punish you!
Re: Testing Chat Episode VI: Return of the Chat
I'm working on an enterprise (lol) Spring/Java application. It's been in development for nearly two years and until our team started a few months ago no-one had bothered to check its memory usage cause 'Java has a garbage collector'. Turns out the application continuously makes hard references to one-time-use objects and then hangs on to them until shutdown. Oops.Vasey wrote:"You don't have to worry about memory management" is a common selling point for garbage collected languages, but it's a real work of fiction. It's entirely possible to create gigantic memory leaks in Java or whatever by just not hanging on to your object references when you're done with them which is exactly the sort of casual lack of thought that causes memory leaks in Cish languages. You can't really release a Java or TCL or whatever application without testing its memory usage over time and, oh, hey, that's exactly what I have to do with my C++ thingymajiggers using Valgrind, Purify, etc.Dooey Jo wrote:i always find it funny that when a language apologist tells you "now you don't have worry about memory management/types/const/whatever" what they usually mean is you can't "worry" about those things when you need them, essentially taking away
Memory usage graphs that go up at a 45° angle: not good. Watching GC not even make a dent in said graph: very not good.
Nowadays, when I come home from another day of shitty spaghetti code and four business analysts per dev at meetings, I unwind with a non-network-connected Raspberry Pi, vi, gcc and my new copy of K&R C. It's surprisingly refreshing.
People in glass trousers shouldn't shit bricks.
Re: Testing Chat Episode VI: Return of the Chat
Dude wrote:
I was interested but 179$ for a plastic man is more then I'm willing to pay.
http://www.entertainmentearth.com/prodi ... 3dOh_ldWSo
how about ten bucks for a retro Kenner style action figure
Re: Testing Chat Episode VI: Return of the Chat
I'm buying the Star Trek Ship Collection off fo BBTS, and if you aren't and like Star Trek, go have a look. The models are really nice and the booklet that comes with them is even semi-decent with concept art and stories about the design process. I've got four so far and the rest on pre-order (except the Bajoran sunship and the Krenim temporal weapon, don't care about those). Can't wait for the Constellation Class to arrive, that thing is the tits.
Also Veef: I got the NECA Cherno Alpha and love it.
Also Veef: I got the NECA Cherno Alpha and love it.
People in glass trousers shouldn't shit bricks.
Re: Testing Chat Episode VI: Return of the Chat
Much realism, look at his head!Veef wrote:Dude wrote:
I was interested but 179$ for a plastic man is more then I'm willing to pay.
http://www.entertainmentearth.com/prodi ... 3dOh_ldWSo
how about ten bucks for a retro Kenner style action figure
I'm liking that starship collection though, I'm a sucker for Klingon ships
-Aaron
Re: Testing Chat Episode VI: Return of the Chat
Got a link?Bounty wrote:I'm buying the Star Trek Ship Collection off fo BBTS, and if you aren't and like Star Trek, go have a look.
Re: Testing Chat Episode VI: Return of the Chat
did you see the twilight zone william shatner they're also doing?Dude wrote: Much realism, look at his head!
http://www.entertainmentearth.com/prodi ... 3d8l_ldWSo
perfect hair forever
-
- Not a Brony (Probably lol)
- Posts: 1733
- Joined: Tue Feb 21, 2012 12:17 am
Re: Testing Chat Episode VI: Return of the Chat
Went out drink in with my friends for my birthday last night. Which was fun.
Now suffering the after effects of alcohol poisoning, which is not.
Now suffering the after effects of alcohol poisoning, which is not.
Re: Testing Chat Episode VI: Return of the Chat
http://www.startrek-starships.com/index-choose.htmlStofsk wrote:Got a link?Bounty wrote:I'm buying the Star Trek Ship Collection off fo BBTS, and if you aren't and like Star Trek, go have a look.
The quality is pretty damn nice, certainly more than enough for display and a *huge* step up from my old Micro Machines. These are the ones that I have so far (with the tail end of Apollo 8 ):
They're also bigger than they look in this picture.
People in glass trousers shouldn't shit bricks.
Re: Testing Chat Episode VI: Return of the Chat
So, as an experiment / dare, I tried hair removal cream. On my junk.
(depending on your sensibilities, the following may be TMI)
(depending on your sensibilities, the following may be TMI)
No.
- Crazedwraith
- Posts: 831
- Joined: Tue Sep 27, 2011 11:25 am
Re: Testing Chat Episode VI: Return of the Chat
doesn't that stuff also say basically 'do not use on genitals' right there on the bottle?
Last edited by Crazedwraith on Sat May 17, 2014 9:33 pm, edited 1 time in total.
To the Brave passengers and crew of the Kobayashi Maru... Sucks to be you