This file contains 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
Sub CreateAppointmentFromMail() | |
Const mailItem_c As String = "MailItem" | |
Dim OE As Outlook.Explorer | |
Dim MI As Outlook.MailItem | |
Dim AI As Outlook.AppointmentItem | |
Dim TI As Outlook.TaskItem | |
Set OE = Application.ActiveExplorer | |
'Abort sub if no item selected: |
This file contains 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
asdf |
This file contains 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
package ch.isageek.tyderion.habittracker.settings; | |
import android.content.Context; | |
import android.preference.TwoStatePreference; | |
import android.util.AttributeSet; | |
import ch.isageek.tyderion.habittracker.R; | |
/** | |
* Created by tzhnaga1 on 24/04/14. |
This file contains 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
import time | |
import re | |
from calibre.web.feeds.recipes import BasicNewsRecipe | |
from calibre.web.feeds import Feed | |
from calibre.constants import config_dir, CONFIG_DIR_MODE | |
import os, os.path, urllib | |
from hashlib import md5 | |
class PactRecipe(BasicNewsRecipe): |
https://github.com/sindresorhus/quick-look-plugins
Enable Textselection in Quicklook: defaults write com.apple.finder QLEnableTextSelection -bool true && killall Finder
This file contains 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
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: archiemount | |
# Required-Start: $local_fs | |
# Required-Stop: $local_fs | |
# Should-Start: | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Mount my partitions in /var/nfs/ for use in nfs sharing |
This file contains 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
for i=5,0,-1 do | |
print("waiting to start... " .. i) | |
sleep(1) | |
end | |
shell.run("order") |
This file contains 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
rednet.open("back") | |
local master = 0 | |
term.clear() | |
local commandkeys = { | |
keys.leftCtrl, | |
keys.rightControl, | |
keys.leftShift, | |
keys.rightShift, | |
keys.leftAlt, | |
keys.rightAlt |
This file contains 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
local modemside = "right" | |
local dirt = "dirt" | |
local registered = false | |
local master = 0 | |
function checkModem() | |
if (not rednet.isOpen(modemside)) then rednet.open(modemside) end | |
end |
NewerOlder