- http://brokeassgourmet.com/articles/parmesan-zucchini-fries
- http://brokeassgourmet.com/articles/spanakopita-burgers
- http://www.tasteandtellblog.com/taco-burgers/
- http://www.savorystyle.com/blog/food/mashed-potato-bacon-bombs
- http://www.jamieoliver.com/recipes/print/481/
- http://brokeassgourmet.com/articles/cauliflower-rice
- https://www.weekendbakery.com/posts/easy-frangipane-raspberry-tart/
- http://www.dailymail.co.uk/home/you/article-2335820/Mary-Berry-Special-Part-Two-Carrot-walnut-cake-cream-cheese-icing.html
- http://www.bbcgoodfood.com/recipes/cheese-tomato-macaroni-chipolatas
- http://www.bbcgoodfood.com/recipes/1897680/light-chicken-korma
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-12-02.log-[22:08:12] <g> but every modification you make has to be done immutably | |
2014-12-02.log-[22:08:25] <Riking> yeeeeeeah | |
2014-12-02.log-[22:08:31] <g> don't like it | |
2014-12-02.log-[22:08:32] <g> :P | |
2014-12-02.log-[22:08:37] <simon816> seems very memory inefficient | |
2014-12-02.log-[22:08:42] <g> yeah | |
2014-12-02.log-[22:08:50] <Riking> Going to need some other kind of value store | |
2014-12-02.log-[22:09:00] <g> I wrote a little wrapper for snakeyaml | |
2014-12-02.log-[22:09:00] <g> lol | |
2014-12-02.log-[22:09:26] <sk89q> gson is on class path I think |
This is a basic exploration of the Ello API. Completely unofficial, your mileage my vary, don't smash their servers as they are likely very busy.
Methods return HTML for their representation where appropriate which is a nice little pattern. Everything returns application/json.
Like this:
{
"id": ,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is proof-of-concept code, so it's rather messy and shit. | |
# It should however get the point across. | |
# If anyone has a better way to do this, let me know. | |
import time | |
# Time period per record in seconds | |
TIME_PERIOD = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns IAmDoingItWrong) | |
(defn main [args] | |
(println "Hello") | |
) |
I hereby claim:
- I am gdude2002 on github.
- I am gdude2002 (https://keybase.io/gdude2002) on keybase.
- I have a public key whose fingerprint is FDE9 31DA 44AC ABCD 0770 7325 3AD0 7AC1 CBBA 85D6
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id="content" class="body center"> | |
<?php | |
$socketdie = "No information avaliable"; | |
function runcmd($cmd, $data = NULL ){ | |
global $socket; | |
$jsondata = json_encode(array ('password'=>'bingy','command'=>$cmd, $data[0]=>$data[1]))."\r\n"; | |
socket_send($socket, $jsondata, strlen($jsondata),0); | |
if (($bytes = socket_recv($socket, $buf, 16384, NULL)) == false) die($socketdie); | |
//echo "raw data = ".$buf."<br>"; | |
return json_decode($buf); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import os | |
import datetime | |
import struct | |
import urllib | |
import urllib2 | |
import re | |
import socket | |
import cookielib | |
import threading |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import os | |
import datetime | |
import struct | |
import urllib | |
import urllib2 | |
import re | |
import socket | |
import cookielib | |
import threading |