Open Side Menu Go to the Top
Register
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** ** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD **

03-02-2012 , 04:09 PM
Pretty solid article about a recent breakthrough in Quantum Computing.

The one part I would quibble with is

Quote:
Other potential applications for quantum computing may include searching databases of unstructured information,
Quantum computers are pretty limited in unstructured searches.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 04:46 PM
so i'm guessing one of these things could solve full scale texas holdem while brushing its teeth?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 05:01 PM
Quote:
Originally Posted by gaming_mouse
so i'm guessing one of these things could solve full scale texas holdem while brushing its teeth?
Certainly not yet I'm not really up to date on poker bots though. How much better quantum computers will be than classical depends critically on the problem.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 05:56 PM
There is a thread in MSNL about how bots are now better than like 99% of the population in short handed NL games
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 06:15 PM
Quote:
Originally Posted by Gullanian
Mail chimp for us would be $50 a month for us quite soon I think, that's about 45% of our hosting cost just seems disproportionate but at the end of the day I suppose it doesn't matter and I can prune a lot of our lists as well.

We need it for a mix of things,
1) Mailing list
2) To email licenses to customers when they purchase (all hotmail ones bouncing atm which is time consuming to sort out)
3) General site usages (forgotten passwords, email confirmations etc)

Mail chimp is good for #1 but not #2 and #3, I'd like an all in one solution really for simplicities sake

Also our biggest emails are just notifying a new blog post it out, or to download a new release of our software. There's basically no way for us to get any costs back through selling to subscribers or advertising so just seems to expensive for that purpose.
Probably not what you need, but this turned up on HN today: http://mailgun.net/
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 06:23 PM
Quote:
Originally Posted by Larry Legend
There is a thread in MSNL about how bots are now better than like 99% of the population in short handed NL games
link pls, i dont see anything
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 06:26 PM
Quote:
Originally Posted by Larry Legend
There is a thread in MSNL about how bots are now better than like 99% of the population in short handed NL games
Couldn't find it.. Was the statement backed up by some kind of evidence?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 06:27 PM
Eh for people taking the Coursera SaaS thing...have there been quizzes yet? I got to the party late so it would kind of suck if I missed some and can't take them anymore but them's the breaks.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 06:30 PM
Quote:
Originally Posted by clowntable
Eh for people taking the Coursera SaaS thing...have there been quizzes yet? I got to the party late so it would kind of suck if I missed some and can't take them anymore but them's the breaks.
none yet. all new quizzes/lecture/assignments are released on sundays and due the monday 8 days from then
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 07:00 PM
Quote:
Originally Posted by myNameIsInga
Couldn't find it.. Was the statement backed up by some kind of evidence?
http://forumserver.twoplustwo.com/56...ngame-1112918/
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 07:09 PM
Quote:
Originally Posted by _dave_
Thanks! Thought it was a new thread. Saw this when it was first started
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 07:42 PM
Is there a very dominant community forum for programmers like 2+2 is for poker players?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 07:48 PM
Stack Overflow.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 07:51 PM
Thanks. They seem to be srs business. No other topics/politics/etc forums.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 07:53 PM
Well, StackExchange is a community of sites; the flagship is Stack Overflow. There are tons of topics that have their own website that's connected in the SE network, like Programmers Exchange, Skeptics Network, Judaism (seriously), Database Administrators, Gaming, etc.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 08:46 PM
1,2,4 done..3 half done, 5 looks interesting. Gonna go to bed + soccer all day tomorrow
Will be interested in exchaging code once the assignment is due
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 08:53 PM
May be worth it's own thread to make it easier to find later. Link to the answer in the new thread discuss them here? Too cumbersome?
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-02-2012 , 09:25 PM
I like new thread for SaaS course idea
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-03-2012 , 02:08 AM
Learned a cool hack (excuse me if this is old hat to you guys).

If you have html email, you can send an email button like the one pictured here:



and when you click it, there is a pre-filled out email:



In order to make a button, you have to use CSS because for some odd reason, you can't use a <button > tag.

Steps:

Begin with the following template. Take note of the quotation marks.

Add the '?' to the end of the email address.
Place &amp; at the end of the subject.

Code:
<a id='elink' href="mailto:myemail@myemail.com?

subject=Subject Line Goes Here&amp;

body=Name:

Phone #:

Company Name:

Thanks!"

</a>
Then replace all special characters with ASCII:

Code:
<a id='elink' href="mailto:myemail@myemail.com?

subject=Subject%20Line%20Goes%20Here&amp;
%0A%0A
body=Name%3A
%0A%0A
Phone%20%23%3A
%0A%0A
Company%20Name%3A
%0A%0A
Thanks%21"

</a>
Then mush it all together:

Code:
<a id='elink' href="mailto:myemail@myemail.com?subject=Subject%20Line%20Goes%20Here&amp;%0A%0Abody=Name%3A%0A%0APhone%20%23%3A%0A%0ACompany%20Name%3A%0A%0AThanks%21"</a>
The above derived because someone at work received an email with the above feature and asked if I could look into getting it done. Was a pretty easy task. Just copy / paste into Dreamweaver. The first time I did it, I created it through Internet Explorer. In that case, you don't have to use the ASCII to get this to work. I have no idea why this is so, but it was pretty embarrassing to see it flame out on the first test run, but oh well.

After getting it done, the person who requested it asked me: "I gave it to you in 12-point font and there was a bolded header. Why is it all in 10-point font now?"

"It just doesn't work that way. It's in ASCII and you can't format ASCII code."

"So, it's going to just go with my computer's default and you can't force it to go different?"

"Nope. Sorry. Well, at least I don't know how... I mean, it's better than nothing, right?"
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-03-2012 , 03:56 AM
Tiny project - Let's say I want to download some text files of works by some of my favorite authors (from project Gutenberg, for instance) so I could do searches for words or phrases by author. For example, return sentences or paragraphs containing "blue sky" from all works of Melville & Poe.

I figure the easiest way to do this would not even be to make a database, just download the text files and write a script to search each file one by one for matches and return it to me in whatever format I desired?

It's obv possible to do this with google already, you can search "melville "blue sky" site:gutenberg.org" but I want more control over the format of the output.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-03-2012 , 03:30 PM
Quote:
Originally Posted by smrk
Tiny project - Let's say I want to download some text files of works by some of my favorite authors (from project Gutenberg, for instance) so I could do searches for words or phrases by author.
Maybe build an inverted index. Here are a couple of descriptions: Wikipedia and nlp.stanford.edu
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-04-2012 , 03:59 PM
SaaS course thread would be cool I guess. My HW3 solution is quite the cludge. I don't feel like making it any better so let's see if it passes the evaluator (passes the example they gave in my unittests)
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-04-2012 , 04:57 PM
what the hell is the internet coming to



took me six tries to complete a forum search
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-04-2012 , 04:58 PM
CAPTCHAS blow, don't ever use them on websites imo
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote
03-04-2012 , 05:13 PM
Quote:
Originally Posted by greg nice
what the hell is the internet coming to



took me six tries to complete a forum search
i've noticed the progression too. pattern recognition ai is just getting too good -- soon they'll be pointless.
** UnhandledExceptionEventHandler :: OFFICIAL LC / CHATTER THREAD ** Quote

      
m