Skip to content

Instantly share code, notes, and snippets.

View mcapodici's full-sized avatar
🤖

Martin Capodici mcapodici

🤖
View GitHub Profile
@mcapodici
mcapodici / FreeCheapBS.md
Last active June 20, 2019 05:07
Excellent Free or V.Cheap tools ans services for bootstrapping a side project

This is a braindump of excellent tools & services that are free or really cheap that you can use to bootstrap something on the side.

I only include services with a generous enough free-tier plan that you can probably use it for a long time before needing to ugrade, reducing the pressure to make money from the beginning.

Email Services

Regular Email Service

  • Zoho: https://www.zoho.com/mail/ - offers a generious free tier that allows you to connect a single domain name, and a pretty decent user interface. They provide a catchall facility so you can receive emails on many different aliases.
1. Install user CSS extension (or similar): https://chrome.google.com/webstore/detail/user-css/okpjlejfhacmgjkmknjhadmkdbcldfcb?hl=en
2. Apply the following style to news.ycombinator.com
.c00, .c00 a:link { color:#000000; }
.c5a, .c5a a:link, .c5a a:visited { color:#000000; }
.c73, .c73 a:link, .c73 a:visited { color:#000000; }
.c82, .c82 a:link, .c82 a:visited { color:#000000; }
.c88, .c88 a:link, .c88 a:visited { color:#000000; }
.c9c, .c9c a:link, .c9c a:visited { color:#000000; }
.cae, .cae a:link, .cae a:visited { color:#000000; }
@mcapodici
mcapodici / Program.cs
Created July 26, 2015 21:00
List Monad implemented in C#
using System;
using System.Collections.Generic;
using System.Linq;
namespace Monad
{
class Program
{
static void Main(string[] args)
{