Skip to content

Instantly share code, notes, and snippets.

View jorilallo's full-sized avatar

Jori Lallo jorilallo

View GitHub Profile
### Keybase proof
I hereby claim:
* I am jorilallo on github.
* I am jorilallo (https://keybase.io/jorilallo) on keybase.
* I have a public key whose fingerprint is 29CA 092E A5DB 817C 54BC 8D7E CEC7 EB2B 9E18 792D
To claim this, I am signing this object:
{
"name": "Twitter Userstyle",
"version": "1.0.0",
"manifest_version": 2,
"description": "Unofficial Twitter theme created by Mark Otto (@mdo)",
"homepage_url": "https://github.com/mdo/twitter-userstyle",
"content_scripts": [
{
"matches": ["https://twitter.com/*"],
"css": ["twitter.css"]

Hasbro Hackathon

Problem: Hasbro wanted to brand themselves better to the developer community, recruit, and seek out external innovations from their biggest tech fans.

Solution: AngelHack set up the Hasbro-a-thon at Hasbro HQ, where we held pre-hackathon innovation talks at Hasbro the week before and concluded things with a 24-hr hackathon at Hasbro HQ. In order to complete Hasbro's goals, we created a custom website (http://www.hasbroathon.com/) to hype the event and worked with localized developer and college groups in DC, New York, and Providence to promote the event and start the discussion. AngelHack handled all promotions, facilitation, social media, website creation, and worked with Hasbro's PR / Communication teams to ensure everything was in-line with their Communications strategy. AngelHack also held weekly calls with Hasbro to discuss updates and help Hasbro employees to garner the necessary internal support to make the event a GO.

Outcome: In total, we had over 40,000 views on our event and w

<!DOCTYPE NETSCAPE-Bookmark-file-1>
<!--This is an automatically generated file.
It will be read and overwritten.
Do Not Edit! -->
<Title>Kippt Bookmarks</Title>
<H1>Bookmarks</H1>
<DL>
{% for clip in clips %}
<DT><A HREF="{{ clip.url }}" ADD_DATE="{{ clip.created|date:'U' }}" LIST="{{ clip.list.title }}">{{ clip.title }}</A>
{% if clip.notes %}<DD>{{ clip.notes }}{% endif %}
COMPRESS_PRECOMPILERS = (
('text/coffeescript', 'coffee --compile --stdio'),
('text/x-scss', 'python manage.py template_filter {infile} | sass --scss --stdin {outfile}'),
)
COMPRESS_CSS_FILTERS = ['compressor.filters.cssmin.CSSMinFilter']
var downloads = [];
var downloadSong = function(url, tabid){
if( chrome.webRequest.onBeforeRequest.hasListeners() )
chrome.webRequest.onBeforeRequest.removeListener(findmp3);
chrome.tabs.sendMessage( tabid , {action: "getSong", url : url} );
setTimeout(function(){ startListener(); },500)
}
@jorilallo
jorilallo / gist:5513720
Created May 3, 2013 20:22
Sad news: Lookmark is closing down

Hey Jori,

We've got sad news to share with you—we'll be closing the Lookmark service as of June 15th, 2013.

This hasn't been an easy decision, but we haven't been able to reach our goals for growth. We sincerely appreciate your support over the last year; we're deeply sorry we couldn't turn Lookmark into a sustainable service.

We've stopped accepting new signups, and you'll have until June 1st to export your data by visiting the Export Data page. If you'd like access to anything that isn't included in your data export, please let us know by emailing help@lookmark.com.

If you'd like to use a similar service, you can try Reading.am or Kippt.

@jorilallo
jorilallo / gist:5295822
Created April 2, 2013 20:20
Shuttle Manifesto: Space Dice order #1XXX
Hailing Jori Lallo,
Space Dice HQ are happy to report the items from order #1037 have now been loaded into a Cargo Shuttle on course to your location.
Shuttle Manifesto:
3x Spacedice for $20.00 each
@jorilallo
jorilallo / gist:4658236
Last active December 11, 2015 20:49
Kippt list embed
<script>(function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//s3.amazonaws.com/addons.kippt.com/embed.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","kippt-embed-js"));</script><iframe width="100%" height="1600" frameborder="0" allowtransparency="true" src="https://kippt.com/karrisaarinen/kippt-press/embed/" id="kippt-embed"></iframe>
@jorilallo
jorilallo / UTC Timezones in Django
Last active January 3, 2018 17:10
How to create, store and return timestamps in UTC with Django
from django.utils.timezone import now as utcnow
from calendar import timegm as epoch
# Store in model
created = models.DateTimeField(default=utcnow())
# Get in UTC Epoch
epoch(created.timetuple())