There're a lot of combinations to manage your email with emacs, but this works for me. I've a backup and I can manage my daily email.
The stack:
- emacs
- offlineimap
- mu
- mu4e
| (ns sudoku | |
| (:refer-clojure :exclude [==]) | |
| (:use [clojure.core.logic]) | |
| (:require [clojure.core.logic.fd :as fd])) | |
| (defn init-board [vars puzzle] | |
| (matche [vars puzzle] | |
| ([[] []] | |
| succeed) |
| I am now able to insert test-image.png in other.md file using  as opposed to  | |
| content | |
| ├── pages | |
| │ ├── otherpage | |
| │ │ ├── test-image.png | |
| │ │ └── other.md | |
| │ └── project | |
| │ ├── another-image.png | |
| │ └── project.md |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="author" content="Martin Bean" /> | |
| <title>Twitter’s Bootstrap with Ryan Fait’s Sticky Footer</title> | |
| <link rel="stylesheet" href="css/bootstrap.min.css" /> | |
| <style> | |
| html, body { | |
| height: 100%; |
| (defn solve | |
| [grid] | |
| (remove nil? | |
| (run* [q] | |
| (macro/symbol-macrolet [_ (lvar)] | |
| (== q grid) | |
| (conde | |
| ((== grid [[q _ _] | |
| [_ q _] | |
| [_ _ q]])) |
| #!/bin/sh | |
| ## Script to patch up diff reated by `repo diff` | |
| # from https://groups.google.com/d/msg/repo-discuss/43juvD1qGIQ/7maptZVcEjsJ | |
| if [ -z "$1" ] || [ ! -e "$1" ]; then | |
| echo "Usages: $0 <repo_diff_file>"; | |
| exit 0; | |
| fi | |
| rm -fr _tmp_splits* |
| #!/bin/bash | |
| # Capture current date as a variable | |
| DATE=`date +"%Y%m%d-%H:%M:%S"` # example output format: 20110925-21:10:36 | |
| echo -e "\nRecursively snapshotting storage pool with tag @BACKUP_$DATE" | |
| echo "Running 'zfs snapshot -r storage@BACKUP_$DATE'" | |
| time zfs snapshot -r storage@BACKUP_$DATE | |
| echo -e "\n\nDeleting backups pool to make way for new backup (usually takes a few minutes)." |
(based on this pastebin i've found via Google, markdownified and adjusted to work with the official Yosemite release)
Yosemite's first developer preview was released right after Monday's WWDC opening keynote. For the general public, an open beta will be available to download later this summer. However, for those who want a sneak peek at the new hotness, there is a way to safely install it without risking your machine, using the free and powerful VirtualBox application from Oracle.
(LEGAL DISCLAIMER: This guide aims to explain how to create a virtual machine on a regularly purchased Apple computer, running a genuine Mac OS X operating system, for testing purposes only.)
| angular.module('yourModule') | |
| .directive('tabsSwipable', ['$ionicGesture', function($ionicGesture){ | |
| // | |
| // make ionTabs swipable. leftswipe -> nextTab, rightswipe -> prevTab | |
| // Usage: just add this as an attribute in the ionTabs tag | |
| // <ion-tabs tabs-swipable> ... </ion-tabs> | |
| // | |
| return { | |
| restrict: 'A', | |
| require: 'ionTabs', |
| From 4a3bb99fe5eecd06e77f4fedb5729466df09750f Mon Sep 17 00:00:00 2001 | |
| From: Ilya Grigorik <ilya@igvita.com> | |
| Date: Fri, 18 May 2012 06:41:34 +0800 | |
| Subject: [PATCH] add outbound click tracking + time on slide analytics | |
| plugins for GA | |
| --- | |
| js/analytics/outbound-clicks.js | 102 +++++++++++++++++++++++++++++++++++++++ | |
| js/analytics/time-on-slide.js | 25 ++++++++++ | |
| js/slide-deck.js | 5 ++ |