lloyd (Lloyd Hilaiel)

Name
Lloyd Hilaiel
Email
Company
Yahoo!
Location
Denver, Colorado
Member Since
Dec 09, 2008 (11 months)

Following 37 githubbers and watching 87 repositories view all →

Public Repositories (29)

  • py-yajl

    py-yajl provides Python bindings for the Yajl JSON encoder/decoder library

    legend

    Forked from rtyler/py-yajl Wed Nov 25 06:50:09 -0800 2009

    Last updated Wed Nov 25 11:14:58 -0800 2009

  • bp-imagealter

    The BrowserPlus "ImageAlter" service (v4 and beyond), based on GraphicsMagick.

    legend

    Last updated Fri Nov 20 22:16:58 -0800 2009

  • bakery

    A ports system for software projects. Add software by adding "recipes". Build software by placi...

    legend

    Last updated Wed Nov 18 15:53:13 -0800 2009

  • orderly

    An ergonomic micro-language that can represent a subset of JSONSchema

    legend

    Last updated Sun Nov 15 16:38:44 -0800 2009

  • borg

    The BrowserPlus.org website

    legend

    Forked from sspencer/borg Tue Nov 10 22:02:50 -0800 2009

    Last updated Tue Nov 10 22:03:18 -0800 2009

  • bp-service-tools

    Tools and Frameworks to make building BrowserPlus services easier

    legend

    Last updated Mon Nov 09 08:13:37 -0800 2009

  • yajl

    Yet Another JSON Library - A Portable JSON parsing and serialization library in ANSI C

    legend

    Last updated Thu Oct 29 16:38:55 -0700 2009

  • bp-lzma

    An LZMA service for BrowserPlus to allow in-browser LZMA compression of files the user selects.

    legend

    Last updated Thu Oct 22 11:41:52 -0700 2009

  • using_submodules

    a simple repository that documents how to use submodules

    legend

    Last updated Tue Oct 20 11:38:33 -0700 2009

  • bp-docdb

    bplus document search code in progress

    legend

    Forked from vargon/bp-docdb Tue Oct 06 16:23:19 -0700 2009

    Last updated Fri Oct 09 10:20:30 -0700 2009

  • persist-js

    A clone of persist.js from mercurial

    legend

    Last updated Fri Oct 09 10:08:58 -0700 2009

  • jsonschemaproposal

    A repository to collect editorial review & suggested changes to the json schema proposal

    legend

    Last updated Mon Oct 05 09:56:56 -0700 2009

  • github-gem

    The official `github` command line helper for simplifying your GitHub experience.

    legend

    Forked from defunkt/github-gem Thu Sep 24 16:28:47 -0700 2009

    Last updated Thu Sep 24 17:02:30 -0700 2009

  • sup

    A clone of the sup git repo (with patches)

    legend

    Last updated Thu Sep 24 13:54:17 -0700 2009

  • bp-pubsub

    BrowserPlus Publish/Subscribe service (implemented in C++)

    legend

    Forked from browserplus/bp-pubsub Tue Sep 15 16:39:23 -0700 2009

    Last updated Tue Sep 15 17:40:08 -0700 2009

  • bp-ruby

    The BrowserPlus ruby service, a BrowserPlus service that allows dependent services to be written ...

    legend

    Last updated Tue Sep 15 16:24:39 -0700 2009

  • fakeplus

    a server for browserplus corelets

    legend

    Forked from whymirror/fakeplus Mon Aug 24 12:40:44 -0700 2009

    Last updated Fri Aug 21 03:30:47 -0700 2009

  • jsondb

    A specification and reference implementation of natural and efficient client side storage for Jav...

    legend

    Last updated Sat May 02 11:47:48 -0700 2009

  • learning_erlang

    My playground as I learn erlang

    legend

    Last updated Thu Apr 30 16:16:12 -0700 2009

  • easylzma

    An easy to use, tiny, public domain, C wrapper library around Igor Pavlov's work that can be used...

    legend

    Last updated Wed Apr 01 11:04:25 -0700 2009

  • bp-fileaccess

    A BrowserPlus service that enables a webpage to access to local files that the user has selected

    legend

    Last updated Mon Mar 16 17:48:14 -0700 2009

  • bp-bloopsaphone

    A BrowserPlus service that wraps why's bloopsaphone to expose arcade style music to browser based...

    legend

    Last updated Thu Mar 12 13:47:09 -0700 2009

  • bp-jsonrequest

    The BrowserPlus jsonrequest service, which implements "secure" cross domain JSON requests as spec...

    legend

    Last updated Thu Mar 12 11:58:34 -0700 2009

  • bloopsaphone

    arcade sounds and chiptunes for ruby and c

    legend

    Forked from mental/bloopsaphone Thu Mar 12 09:38:41 -0700 2009

    Last updated Thu Mar 12 10:19:52 -0700 2009

  • ydn-github-post

    This is a work in progress blog post for the yahoo! developer network about git and github.

    legend

    Last updated Sun Feb 15 08:54:19 -0800 2009

  • bp-prompting-sample

    A sample BrowserPlus service that demonstrates how to render custom HTML prompts from within serv...

    legend

    Last updated Wed Jan 14 08:53:41 -0800 2009

  • bp-photos

    BrowserPlus service for accessing user photos

    legend

    Last updated Wed Dec 24 14:35:20 -0800 2008

  • bp-profiler

    BrowserPlus based Javascript Profiler

    legend

    Forked from davglass/bp-profiler Fri Dec 12 17:56:52 -0800 2008

    Last updated Mon Dec 22 10:16:01 -0800 2008

  • lloyd.github.com

    my page

    legend

    Last updated Tue Dec 16 21:57:23 -0800 2008

Public Activity feed

lloyd pushed to master at lloyd/py-yajl Wed Nov 25 11:16:23 -0800 2009
HEAD is 0267ae8f6d91de65174459419dc646f1c8807840
  • lloyd committed 0267ae8f:
    return an object with a refcnt of 1 from py_yajldecoder_decode(). because decode() may be called multiple times, we cannot delay refcnt decrement until dealloc() (lest we leak objects)
lloyd pushed to master at lloyd/py-yajl Wed Nov 25 10:11:26 -0800 2009
HEAD is 37f38d8b982e4c4c78ee0b31932004d58bd21e80
  • lloyd committed 37f38d8b:
    implement a custom pointer stack rather than resuing heavyweight python lists for a 30-40%ish perf improvement. WARNING: memory/ownership semantics ought to be audited before pulling this patch
lloyd created gist: 242769 Wed Nov 25 07:09:37 -0800 2009
#!/usr/bin/env python from datetime import datetime import os, sys
lloyd pushed to master at lloyd/py-yajl Wed Nov 25 07:00:56 -0800 2009
HEAD is 65487b292931eac4f5ce79ade95a4b09d6e75a63

3 commits »

lloyd forked rtyler/py-yajl Wed Nov 25 06:50:12 -0800 2009
Forked repository is at lloyd/py-yajl
lloyd commented on rtyler/py-yajl Wed Nov 25 06:05:57 -0800 2009
Comment in bf6503c:

yep. that would certainly do it!

lloyd started watching sspencer/bp-imagealter Tue Nov 24 21:07:31 -0800 2009
bp-imagealter's description:
The BrowserPlus "ImageAlter" service (v4 and beyond), based on GraphicsMagick.
lloyd commented on mikeal/lazyjson Tue Nov 24 21:04:34 -0800 2009
Comment in b830e3d:

say more about your idea. what problems does this apply to? What exactly does "selective" mean?

(methinks an event driven parser can help...)

lloyd updated gist: 242164 Tue Nov 24 12:12:55 -0800 2009
{"_id":"00f67c9ddb85fb7c0a16c2db6eab6687","_rev":"1-044b6aceccfb72c81a95ca9f74089081","type":"fai...
lloyd forked gist: 242164 Tue Nov 24 12:11:35 -0800 2009
{"_id":"00f67c9ddb85fb7c0a16c2db6eab6687","_rev":"1-044b6aceccfb72c81a95ca9f74089081","type":"fai...
lloyd commented on sspencer/bp-imagealter Fri Nov 20 22:18:50 -0800 2009
Comment in 82e5f7f:

better I think!

lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 22:16:59 -0800 2009
HEAD is 191833ec340f748d6388a86929021cc721d4c66a

3 commits »

lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 20:27:38 -0800 2009
HEAD is 0a92b85366146087968b9df93b55626a22073fda
  • lloyd committed 0a92b853:
    black_threshold implementation and test. neat effect!
lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 16:58:48 -0800 2009
HEAD is 191fcd35a32f4580845a71a67b5e61365e85c011

2 commits »

lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 16:38:36 -0800 2009
HEAD is 7fbdc17901705ba5e1e77ea8b7f6f194489af103

3 commits »

lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 16:23:41 -0800 2009
HEAD is 20e5e07767589844bcc242e383d33edaf22f8551
lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 16:21:43 -0800 2009
HEAD is 02f12e61152b91af95760cf8177e70e7588f4990

2 commits »

lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 16:03:51 -0800 2009
HEAD is ef8a21f08e020c4b71e4c25fb83022ce4ad99e72
  • lloyd committed ef8a21f0:
    improve error messages, making them specific to thumbnail or scale transformations despite the code sharing
lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 15:54:16 -0800 2009
HEAD is cbe95bae21fe732b2b4aef22e9703031fe34d182

2 commits »

lloyd created tag 4.0.4 at lloyd/bp-imagealter Fri Nov 20 13:01:09 -0800 2009
lloyd pushed to master at lloyd/bp-imagealter Fri Nov 20 12:58:45 -0800 2009
HEAD is ece5276741b60de69a011364090f1090e6d6ef55

2 commits »

lloyd updated gist: 239157 Thu Nov 19 17:52:49 -0800 2009
<html> <head> <title>The Image Manipulation Performance Comparator</title>
lloyd updated gist: 239157 Thu Nov 19 17:47:43 -0800 2009
<html> <head> <title>The Image Manipulation Performance Comparator</title>
lloyd updated gist: 239157 Thu Nov 19 17:47:19 -0800 2009
<html> <head> <title>The Image Manipulation Performance Comparator</title>
lloyd created gist: 239157 Thu Nov 19 15:52:33 -0800 2009
<html> <head> <title>The Image Manipulation Performance Comparator</title>
lloyd pushed to master at lloyd/bp-imagealter Thu Nov 19 14:32:44 -0800 2009
HEAD is 6e45d7c45cbd66fdc7b2816f5c5f85bb078aeb1d

3 commits »

lloyd created tag 4.0.3 at lloyd/bp-imagealter Thu Nov 19 14:30:35 -0800 2009
lloyd pushed to master at lloyd/bp-imagealter Thu Nov 19 14:16:50 -0800 2009
HEAD is 01456b612302869688a32e1b1417d54e114ee102
  • lloyd committed 01456b61:
    add dither, equalize, normalize, and sharpen
lloyd pushed to master at lloyd/bp-imagealter Thu Nov 19 14:14:05 -0800 2009
HEAD is d9fb80f9402af737830fc3456f98532530cfb973
lloyd pushed to master at lloyd/bakery Wed Nov 18 15:53:14 -0800 2009
HEAD is e9dd3f200b6a8054b748eb26b64bfe71945612f5
  • lloyd committed e9dd3f20:
    (icu) don't explicitly disable shared, it prevents binaries from building on linux
lloyd pushed to master at lloyd/bakery Wed Nov 18 15:39:56 -0800 2009
HEAD is 71f49c4e01f1a2b90e9566b7bebf95fd409f50de
  • lloyd committed 71f49c4e:
    (icu) first pass at a recipe for building ICU
lloyd pushed to master at lloyd/bakery Wed Nov 18 15:31:28 -0800 2009
HEAD is 405a3f2200add2f0834845ce31a0d17b051dfd68

2 commits »

lloyd pushed to master at lloyd/bakery Wed Nov 18 14:42:26 -0800 2009
HEAD is bba0fd98b54969a24b49fa64359979670c27eb2b
lloyd pushed to master at lloyd/bp-imagealter Mon Nov 16 14:22:16 -0800 2009
HEAD is 70c2eb1841908fff6c7b067fcfbad99195949ff3

3 commits »

lloyd created tag 4.0.2 at lloyd/bp-imagealter Mon Nov 16 14:22:12 -0800 2009