Skip to content

Instantly share code, notes, and snippets.

View bnvk's full-sized avatar

Brennan Novak bnvk

View GitHub Profile
import email
import json
import sys
import random
from matrix_client.api import MatrixHttpApi
html_template = (
"<b>From</b>: %(from)s\n"
"<b>To</b>: %(to)s\n"

Sass/Less Comparison

In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.

For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.

Variables

### Keybase proof
I hereby claim:
* I am bnvk on github.
* I am bnvk (https://keybase.io/bnvk) on keybase.
* I have a public key whose fingerprint is 01AE EADB 9EED 1B5B 4280 E5B6 C4CA A23B 0F8C 68B2
To claim this, I am signing this object:
Verifying myself: My Bitcoin username is +bnvk. https://onename.io/bnvk
@bnvk
bnvk / gist:c5e158cb4d9f0e54edda
Created June 29, 2014 14:49
IndieMark 1 (author h-card)
<div class="vcard h-card">
<img class="u-photo photo" src="https://brennannovak.com/uploads/sites/1/Me_Train_Tracks_200.jpg">
<p class="p-note">
<a rel="me" href="https://brennannovak.com" class="u-url url p-name fn">
<span class="p-given-name given-name">Brennan</span>
<span class="p-family-name family-name">Novak</span>
</a>
<span class="p-job-title">internet builder</span>
<span class="p-job-title">co-founder</span>
<span class="p-job-title">software engineer</span>
@bnvk
bnvk / indie-store-project-snippet-rough
Created March 17, 2014 17:41
IndieStore Project Snippet (rough)
{
"description": "A modern, fast web-mail client with user-friendly encryption and privacy features",
"license_url": "https://raw.github.com/pagekite/Mailpile/master/LICENSE-2.0.txt",
"logo": "mailpile.png",
"notes": "",
"privacy_url": "",
"source_url": "https://github.com/pagekite/mailpile",
"name": "Mailpile",
"tos_url": "",
"url": "https://mailpile.is",
on GET /notes
fetch the 20 most recent notes filtered by tag
show as h-feed
on GET /notes/new
the user must be an admin
show autofilled note-form
on GET /notes/{id}
fetch note
@bnvk
bnvk / cs3_panorama.html
Created May 4, 2013 22:11
Nifty CSS3 + JS panorama code by @barnabywalters
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>CSS3 Panorama by Barnaby Walters</title>
<style type="text/css">
.panorama-container {
width: 750px;
}
<?php
class ServiceHelper {
// @text is the full tweet text
// @shortCode is the code part of the shortlink, like nXXX0
public function shortenForTwitter($text, $shortCode=FALSE, $shortDomain=FALSE) {
$placeholders = array();
$rawTweet = $text;
@bnvk
bnvk / more-mute-regex.md
Created July 24, 2012 05:29 — forked from jimmynotjim/more-mute-regex.md
Tweetbot can use regular expressions to mute tweets in your timeline and mentions.

##Simply annoying Tweets

Annoyingly extended words (4+ of the same letter in a phrase): OOOOHHHHMMMMYYYYGGGGOOOODDDD

([a-z])/1{4}

Tweet w/ just a single hashtag: #omgthissucks

^ *#[^ ]+$