Skip to content

Instantly share code, notes, and snippets.

@lucifr
lucifr / resize.scpt
Created April 20, 2013 08:18
Batch resize batch images in OS X with Applescript
tell application "System Events"
activate
set theWidth to display dialog "Enter the width" default answer "650"
set theWidth to the text returned of theWidth as real
end tell
global theWidth
tell application "Finder"
set some_items to selection as list
repeat with aItem in some_items
set contents of aItem to aItem as alias
@lucifr
lucifr / AOL Reader Compact.css
Created June 29, 2013 06:17
Ads removed. More compact layout.
.header {
height:49px!important
}
.profile {
margin-top:5px!important
}
.app-logo {
margin-top:14px!important
@lucifr
lucifr / wubi_pinyin.emoji.dict.yaml
Last active March 18, 2021 16:45
Wubi Pinyin Extended Dictionary(emoji) for Rime
# Rime dictionary
# encoding: utf-8
#
# Wubi Pinyin Extended Dictionary(emoji) - 五笔拼音擴充詞庫(表情)
#
# by @lucifr
# based on https://gist.github.com/lembacon/4593540 & http://www.jianshu.com/p/ef2d9442fb0c
#
# 部署位置:
# ~/.config/ibus/rime (Linux)
@lucifr
lucifr / QuickViewer.py
Created November 7, 2015 14:13
QuickViewer.py
# coding: utf-8
from objc_util import *
import appex
SFSafariViewController = ObjCClass('SFSafariViewController')
def open_in_safari_vc(url):
vc = SFSafariViewController.alloc().initWithURL_entersReaderIfAvailable_(nsurl(url), True)
@lucifr
lucifr / 115fullwindowmod.user.js
Last active January 29, 2016 06:04
100% width and height in 115.com player
// ==UserScript==
// @name 115 Player Full-Window-Mod
// @namespace http://lucifr.com/
// @version 0.1
// @description 100% width and height in 115.com player
// @author Lucifr
// @include http://*.115.com/*
// @include http://115.com/*
// @grant GM_addStyle
// ==/UserScript==
@lucifr
lucifr / init.lua
Last active June 4, 2022 19:21
My Hammerspoon config file
-- -------------------------------
-- Watcher for changes of init.lua
-- -------------------------------
function reloadConfig(files)
doReload = false
for _,file in pairs(files) do
if file:sub(-4) == ".lua" then
doReload = true
end
end