- Feed Me Seymour - Find the closest vegan-friendly restaurant open near you, anywhere in the world (Happy Cow API?)
- Casual Care Pool - swap dogsitting with your neighbors
- Pixels Clone - mood-tracking app
- Clip-a-roo - clipboard manager that lets you pin certain things you use all the time, like your Zoom URL
- Firefox Add-On that lets you always open certain URls in container tabs, e.g. always open GitHub in Work container
- Amazon Ipsum - lorem ipsum generator that uses Amazon business speak. Bias for 6-pagers!
- One Line a Day - a digital version of Chronicle Book's Line-a-Day Journal
- Throwback - Finds some good photos in your archives every Thursday to suggest you to post for #ThrowbackThursday
- Calendly Clone - they charge way too much
- Super Lean TODO App - items age and expire if you don't complete them. Forces you to keep a WIP limit and be re
This file contains hidden or 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
require 'open3' | |
module Mjml | |
class Parser | |
class ParseError < StandardError; end | |
attr_reader :input | |
# Create new parser | |
# |
This file contains hidden or 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
{ | |
"profile_id": 8762, | |
"first_name": "Jane", | |
"last_name": "Doe", | |
"security_data": { | |
"last_login_at": "2015-06-05T18:53:10.197Z", | |
"lost_password_token": null | |
}, | |
"favorite_genres": [ | |
{ |
This file contains hidden or 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
$ = jQuery; | |
$('#variables').find('tr').each(function(idx, tr) { console.log("export " + $(tr).find('.environment_variable_name').val() + "=" + $(tr).find('.environment_variable_value').val()); }); |