This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Based on: http://pastebin.com/ZBq7euid | |
import email, email.utils, fnmatch, os, re, sys, time | |
for a, b, c in os.walk("/home/imap-email/store"): | |
if "tmp" not in a: | |
for d in fnmatch.filter(c, '[0123456789]*'): | |
if int(time.time() - (24*60*60)) < os.path.getmtime(os.path.join(a,d)): | |
e = os.path.join(a, d) | |
f = email.message_from_file(open(e, "r")) | |
g = re.sub("\.", "", f.get("Date")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Test. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cask :v1 => 'bbedit' do | |
version '10.5.13' | |
url "https://s3.amazonaws.com/BBSW-download/BBEdit_#{version}.dmg" | |
name 'BBEdit' | |
homepage 'http://www.barebones.com/products/bbedit/' | |
license :commercial | |
app 'BBEdit.app' | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
layout: false | |
--- | |
sass: | |
nav[role='tablist'] | |
text-align: center | |
background-color: #f00 | |
label[role='tab'] | |
font-weight: 300 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.Trash | |
.cache | |
.ccache | |
.dropbox | |
.dvdcss | |
.fontconfig | |
.zcompdump | |
Library/Caches | |
Library/Logs | |
Library/Saved Application State |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
background: -webkit-linear-gradient(0, #000 50%, transparent 50%) 0 0 / 1px 100%, -webkit-linear-gradient(90deg, #000 50%, transparent 50%) 0 100% / 100% 1px, -webkit-linear-gradient(180deg, #000 50%, transparent 50%) 100% 0 / 1px 100%, -webkit-linear-gradient(270deg, #000 50%, transparent 50%) 0 0 / 100% 1px | |
background-repeat: no-repeat |