knipknap

- friends
30 link karma
74 comment karma
send messageredditor for
what's this?

TROPHY CASE


  • Two-Year Club

Determining relationships in data by grk1in MachineLearning

[–]knipknap 2 points3 points ago

A lot depends on your application.

This is an iteresting approach: Detecting Novel Associations in Large Data Sets

In practice, some of the better known alternatives may be better.

Tips on asking for a raise as a fast food emloyee. by pei_cubein SocialEngineering

[–]knipknap 5 points6 points ago*

Generic answer: Mindmap of How to Win Friends and Influence People.

How do I write a web frontend for a long running Python Script? by code-edocin Python

[–]knipknap 0 points1 point ago*

I had the same problem, before Celery existed. The hardest problem was, in my view, the fact that Python's built in HTTP daemon does not support authentication (HTTP digest), so if you want your web server to communicate with a daemon on another machine, it's not quite as simple as using HTTPDaemon and a pool of subprocesses.

My HTTP/digest enabled HTTP daemon is here.

To be used like so:

from Exscript.servers import HTTPd, RequestHandler
class MyHandler(RequestHandler):
    def handle_GET(self):
        if self.path == 'start':
            # Start subprocess here.
            self.send_response(200)
            self.end_headers()
            self.wfile.write('Script started!')
        elif self.path == 'status':
            # Status request goes here.
            self.send_response(200)
            self.end_headers()
            self.wfile.write('50%')
        else:
            self.send_response(404)
            self.end_headers()
server = HTTPd(('', 8080), MyHandler)
server.add_account('testuser', 'testpassword')
print 'started httpserver...'
server.serve_forever()

Top Floor 2 Bedroom Love Nest in Kensington Church Court, London by b0redin InteriorDesign

[–]knipknap 1 point2 points ago

Looks like the woman is the boss in this apartment.

A seven-year-old Indian girl was murdered in a tribal sacrifice and her liver offered to the gods to improve crop growth by CG10277in worldnews

[–]knipknap 5 points6 points ago

Some people believe that brain matter can have those properties.

[FR] First timer, getting close by knipknapin seddit

[–]knipknap[S] -1 points0 points ago

True, but that faux pas happened after she refused to let me take her home.

Online privacy leaks worsen; "Do not track" gains steam. "This isn’t a 1984-esque scaremongering hypothetical. This is what’s happening today." by jms1225in technology

[–]knipknap -1 points0 points ago

sorry, this has been archived and can no longer be voted on

Actually, Google provides an official Chrome extension that supposedly implements the "do not track" standard.

Samsung Unpacked Teaser - Nexus Prime picture at the end by OpenSOBin Android

[–]knipknap 6 points7 points ago

sorry, this has been archived and can no longer be voted on

While the curved shape looks nice, I wonder if that makes it a little impractical for one-finger use when the phone is lying on the table.

Can cargo pants (not shorts!) ever look nice? by Coloneljesusin malefashionadvice

[–]knipknap -1 points0 points ago

sorry, this has been archived and can no longer be voted on

Amazon.com: The Fraying of a Nation's Decency by texmexin technology

[–]knipknap 0 points1 point ago

sorry, this has been archived and can no longer be voted on

There is something hypocritical about blaming corporations for outsourcing. You can't complain about a widening gap between the rich and poor, while at the same time blaming others for giving jobs to poorer countries. The fact that you are using a computer means that you are very likely among the worlds richest 2%

Introducing bind -- a very new framework for writing Python web service API bindings by rafekettin Python

[–]knipknap 2 points3 points ago*

sorry, this has been archived and can no longer be voted on

Cool, I could have used something like this a year ago and ended up with a home cooked HTTP based API.

If you are planning to add HTTP Digest authentication (more secure), you may want to steal that part from me:

https://github.com/knipknap/exscript/blob/multiprocessing/src/Exscript/servers/HTTPd.py

[edit:] Ohhh, I see now that you are only implementing the client, not the server. In that case, disregard.

What is one thing that automaticly puts the opposite sex in the winner circle? by u1nosyfakkain AskReddit

[–]knipknap 1 point2 points ago

sorry, this has been archived and can no longer be voted on

She can sing and has a nice voice. Or she plays an instrument.

Holy Shit.... by krod3rin reddit.com

[–]knipknap -5 points-4 points ago

sorry, this has been archived and can no longer be voted on

Adding randoms heads to a photo isn't that impressive.

I'd spelunk that. by herpherp_derp_derpin reddit.com

[–]knipknap -1 points0 points ago

sorry, this has been archived and can no longer be voted on

Believe it or not, this is at the center of the earth.

I love Reddit because Redditors don't judge people based on their looks by AnWrootbeerin reddit.com

[–]knipknap 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Citation needed.

I love Reddit because Redditors don't judge people based on their looks by AnWrootbeerin reddit.com

[–]knipknap 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Thank you. I was crafting a response about how the human mind functions only based on probability, but I am sure you explained it much better than I would have.

I love Reddit because Redditors don't judge people based on their looks by AnWrootbeerin reddit.com

[–]knipknap 3 points4 points ago

sorry, this has been archived and can no longer be voted on

I'd say health has not much to do with it either, it's the carelessness and lack of pride or discipline that makes it harder to respect them. The very few who have an actual health issue causing it, I can respect them.

(former fatty here)

Giving out invites to Google+ by IoWn3rUin reddit.com

[–]knipknap 0 points1 point ago

sorry, this has been archived and can no longer be voted on

knipknap@gmail.com

Thank you very much.

Reddit, what's that one, awesome thing you found on the internet but could never find again? by tontyismynameyehin AskReddit

[–]knipknap 0 points1 point ago

sorry, this has been archived and can no longer be voted on

A short movie about some tiny animated characters in the real world who were creating the sound of everything. For example, they would sit on a drill, making screeching noises when it started to turn.

Running through the sprinkler. by DonHObagin pics

[–]knipknap 10 points11 points ago

sorry, this has been archived and can no longer be voted on

Fapped that for you?

Exscript 2.1 automates Telnet and SSH by knipknapin Python

[–]knipknap[S] 0 points1 point ago

sorry, this has been archived and can no longer be voted on

If anyone ever tests this on a Windows box, please let me know how it goes. It should, in theory, work, I just don't have a Windows machine to test with.

Exscript 2.1 automates Telnet and SSH by knipknapin Python

[–]knipknap[S] 0 points1 point ago

sorry, this has been archived and can no longer be voted on

Cool, also make sure to check the tutorial out, it shows some features that make your life even easier.

view more: next