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
From: http://www.webupd8.org/2013/07/sublime-text-3-ubuntu-ppa-now-available.html (with modifications) | |
Before proceeding, if you've already installed Sublime Text, make sure the application is not running or else there might be some visual glitches (that's because the package in our PPA will replace any already existing Sublime Text deb packages). This only occurs when switching from the Sublime Text 3 debs downloaded from its website to the packages in our PPA. | |
Also, using the instructions below, the old Sublime Text 2 package (if you've used our Sublime Text 2 PPA) will be replaced with the new Sublime Text 3. | |
To add the WebUpd8 Sublime Text 3 (beta) PPA and install the application in Ubuntu 13.10, 13.04, 12.10 or 12.04 (and derivatives), use the following commands: | |
sudo add-apt-repository ppa:webupd8team/sublime-text-3 |
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/perl -wp | |
# clean up control characters and other non-text detritus that shows up | |
# when you run the "script" command. | |
# From http://impson.tzo.com/~jdimpson/bin/script-declutter | |
# Copyright Jeremy Impson - http://impson.tzo.com/~jdimpson/ | |
# Also see http://jdimpson.livejournal.com/7040.html | |
BEGIN { |
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
http://support.microsoft.com/kb/192806 | |
english: | |
Accessibility Options | access.cpl | |
Add/Remove Programs | appwiz.cpl | |
Add Hardware Wizard | hdwwiz.cpl | |
Automatic Updates | wuaucpl.cpl | |
Bluetooth Properties | bthprops.cpl | |
Display Properties | desk.cpl |
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/sh | |
export GEO=1024x570 | |
#export GEO=1024x1000 | |
#export GEO=1024x600 | |
#export GEO=1024x740 | |
#export GEO=1152x844 | |
#export GEO=1280x740 | |
#export GEO=1280x1000 | |
#export GEO=1440x840 |
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
This will result in 3 log files: the access log, the error log | |
and another one for the remaining console_output. Even | |
after configuring the access and the error log still | |
a lot of output only gos to the console, so it is necessary | |
to catch it. On windows it could be done like this: | |
serve.cmd: | |
--------- | |
cd %~dp0 |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>Hello</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
Hello World | |
</body> |
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/perl | |
use strict; | |
use warnings; | |
use VMware::VIRuntime; | |
# Default Variablen | |
my $exit_code = 0; |
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
Show hidden characters
[ | |
{ | |
"keys": ["alt+w"], | |
"command": "toggle_setting", | |
"args": | |
{ | |
"setting": "word_wrap" | |
} | |
} | |
] |
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
byobu new-session -d -s name; byobu new-window -t name:1 -n 'window-1-title' 'command-1'; byobu new-window -t name:2 -n 'window-2-title' 'command-2'; byobu select-window -t name:1; byobu -2 attach-session -t name |
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/sh | |
# Move a directory tree with rsync over the network. | |
# Will remove each file immedeateley from the source after transfer! | |
# Run this on the source machine: | |
SRC=/src/folder-to-move-away | |
[email protected] | |
TARGET=/target/containing-folder/ |