I hereby claim:
- I am slogsdon on github.
- I am slogsdon (https://keybase.io/slogsdon) on keybase.
- I have a public key whose fingerprint is 5D1B B50F 4AF7 EDAB B55E D1CB D0B3 E6E9 83C9 6A22
To claim this, I am signing this object:
<?php | |
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die('Failed to create socket!'); | |
socket_bind($socket, 0, 3000); | |
socket_listen($socket); | |
$msg = '<html><head><title>Hello, world!</title></head><body>Hello, world!</body></html>'; | |
for (;;) { | |
if ($client = socket_accept($socket)) { |
I hereby claim:
To claim this, I am signing this object:
implementing user authentication with bcrypt in ChicagoBoss.
see http://shanelogsdon.com/erlang/implementing-user-authentication-with-bcrypt-in-chicagoboss
<?php | |
/** | |
* Ranking Library | |
* contains alogrithms for story ranking | |
* Basically a PHP Implementation of reddits algorithms | |
* | |
* @author Lucas Nolte <[email protected]> | |
* @since 0.1 | |
* @package Polska Wiadomosc | |
* @subpackage Libraries |