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
| /*************************************************************************** | |
| * Copyright (C) 2009 by Paul Lutus, Ian Clarke * | |
| * lutusp@arachnoid.com, ian.clarke@gmail.com * | |
| * * | |
| * This program is free software; you can redistribute it and/or modify * | |
| * it under the terms of the GNU General Public License as published by * | |
| * the Free Software Foundation; either version 2 of the License, or * | |
| * (at your option) any later version. * | |
| * * | |
| * This program is distributed in the hope that it will be useful, * |
| #!/usr/bin/env python | |
| # This is a simple Twitter bot which listens to a track stream for a comma delimited | |
| # list of terms/tags (PRIMARY_TRACK_LIST). From this stream, it will retweet any | |
| # tweet that matches the secondary regex (SECONDARY_REGEX_FILTER). | |
| # | |
| # This example is a #Haiti & #Chile Twitter stream listener for TweakTheTweet syntax. | |
| # | |
| # Requires Python 2.6 | |
| # Requires Tweepy http://github.com/joshthecoder/tweepy | |
| # |
| #!/usr/bin/python | |
| # Light painting / POV demo for Raspberry Pi using | |
| # Adafruit Digital Addressable RGB LED flex strip. | |
| # ----> http://adafruit.com/products/306 | |
| import RPi.GPIO as GPIO, Image, time | |
| # Configurable values | |
| filename = "hello.png" |
| ;; Keybonds | |
| (global-set-key [(hyper a)] 'mark-whole-buffer) | |
| (global-set-key [(hyper v)] 'yank) | |
| (global-set-key [(hyper c)] 'kill-ring-save) | |
| (global-set-key [(hyper s)] 'save-buffer) | |
| (global-set-key [(hyper l)] 'goto-line) | |
| (global-set-key [(hyper w)] | |
| (lambda () (interactive) (delete-window))) | |
| (global-set-key [(hyper z)] 'undo) |
| #!/usr/bin/perl | |
| # Emacs starter for Emacs mac port | |
| # Thanks to Aquamacs Project and David Reitter | |
| my $args = ""; | |
| my $tmpfiles = ""; | |
| for my $f (@ARGV) { |
| install_name_tool -change /Library/Frameworks/Python.framework/Versions/2.7/Python /opt/boxen/homebrew/Cellar/python/2.7.3-boxen2/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib /Users/ngs/Documents/LeapDeveloperKit/LeapSDK/lib/LeapPython.so |
| From 8ab91751069e391a95151c6716a546b1732ade92 Mon Sep 17 00:00:00 2001 | |
| From: JP <twitter:canoeberry> | |
| Date: Sun, 19 Jan 2014 11:58:54 +0000 | |
| Subject: [PATCH] partial memleak fix | |
| This patch was created by JP (twitter: @canoeberry) based on a memleak fix by Dirk (emacs committer) below: | |
| https://github.com/mirrors/emacs/commit/57ae6509a3b6a274f89b9caea0284c6156470625 | |
| This memory leak is fixed in the trunk as of now and will be in the next official release: 24.4. |
| ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
| ;; Terminal notifier | |
| ;; requires 'sudo gem install terminal-notifier' | |
| ;; stolen from erc-notifier | |
| (defvar terminal-notifier-command (executable-find "terminal-notifier") "The path to terminal-notifier.") | |
| ; (terminal-notifier-notify "Emacs notification" "Something amusing happened") | |
| (defun terminal-notifier-notify (title message) |
##VGG16 model for Keras
This is the Keras model of the 16-layer network used by the VGG team in the ILSVRC-2014 competition.
It has been obtained by directly converting the Caffe model provived by the authors.
Details about the network architecture can be found in the following arXiv paper:
Very Deep Convolutional Networks for Large-Scale Image Recognition
K. Simonyan, A. Zisserman