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 bash | |
# a bash script (need imagemagick >6.8.3-10, zip, unzip, unrar) who will convert pictures for pocketbook with an inteligent minimal weight | |
# create UNARCHIVED folder | |
# create TRANSFORMED folder | |
# create OUTPUT folder | |
# | |
# for archive file | |
# unarchive in new folder in UNARCHIVED with name file - ext |
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
-- AutoComplete v0.8 by Lexikos | |
--[[ | |
Tested on SciTE4AutoHotkey 3.0.06.01; may also work on SciTE 3.1.0 or later. | |
To use this script with SciTE4AutoHotkey: | |
- Place this file in your SciTE user settings folder. | |
- Add the following to UserLuaScript.lua: | |
dofile(props['SciteUserHome'].."/AutoComplete.lua") | |
- Restart SciTE. | |
]] |
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
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# exit on error | |
set -e | |
TMUX_VERSION=1.8 |