Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
This re-styles your sublime text sidebar to be dark, it fits default Monokai theme.
Save the Default.sublime-theme file into packages/Theme - Default, make a backup of your original if you want to be able to go back easily.
Based on:
| /* Flatten das boostrap */ | |
| .well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid { | |
| -moz-box-shadow: none !important; | |
| -webkit-box-shadow: none !important; | |
| box-shadow: none !important; | |
| -webkit-border-radius: 0px !important; | |
| -moz-border-radius: 0px !important; | |
| border-radius: 0px !important; | |
| border-collapse: collapse !important; | |
| background-image: none !important; |
| # -*- coding: utf8 -*- | |
| import json | |
| import urllib2 | |
| import urllib | |
| import sys | |
| import os | |
| from argparse import ArgumentParser | |
| from collections import defaultdict |
| " Lets me know how much time I've spent editing a file | |
| " Keyboard shortcut -> \dt | |
| augroup TimeSpentEditing | |
| au! | |
| au BufWinEnter * if !exists('b:tstart')|let b:tstart=reltime()|en | |
| augroup END | |
| function! TimeSpentEditing() | |
| let secs = str2nr(reltimestr(reltime(b:tstart))) | |
| let hours = secs / 3600 |
Prerequisites:
Software components used:
| // | |
| // CJCAnonymousFacesFilter.h | |
| // CJC.FaceMaskingDemo | |
| // | |
| // Created by Chris Cavanagh on 11/9/13. | |
| // Copyright (c) 2013 Chris Cavanagh. All rights reserved. | |
| // | |
| #import <CoreImage/CoreImage.h> |
| # This hosts file is brought to you by Dan Pollock and can be found at | |
| # http://someonewhocares.org/hosts/ | |
| # You are free to copy and distribute this file for non-commercial uses, | |
| # as long the original URL and attribution is included. | |
| #<localhost> | |
| 127.0.0.1 localhost | |
| 127.0.0.1 localhost.localdomain | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"