Ctrl+KB | toggle side bar |
Ctrl+Shift+P | command palette |
Ctrl+` | python console |
Ctrl+N | new file |
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 | |
# Interactive PoPToP install script on a OpenVZ VPS | |
# Tested on Debian 5, 6, and Ubuntu 11.04 | |
# 2011 v1.1 | |
# Author: Commander Waffles | |
# http://www.putdispenserhere.com/pptp-debian-ubuntu-openvz-setup-script/ | |
# | |
# Serverd by: Asim Zeeshan via Gist | |
# https://gist.github.com/3799210 |
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
# Eight Ways to Convert Tabs to Spaces | |
# URL: http://mlawire.blogspot.com/2009/07/convert-tabs-to-spaces.html | |
# A collection of various ways to convert tabs to spaces in Unix/Linux with standard programs and utilities. | |
#1 expand/unexpand utilities | |
expand < input.txt > output.txt | |
#2 Sed | |
sed 's/\t/ /g' < input.txt > output.txt | |
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 | |
# Show motd on Ubuntu only because no such utility exists on Debian at the moment | |
# | |
# Tested on Ubuntu 12.04 | |
# Tested on Virtualization type: OpenVZ, KVM, XEN-PV | |
# | |
# By: Asim Zeeshan | |
# http://www.asim.pk/ | |
apt-get clean all |
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 | |
# Fix the notorious problem that shows the following | |
# | |
# -------------------------------------------------------- | |
# perl: warning: Setting locale failed. | |
# perl: warning: Please check that your locale settings: | |
# LANGUAGE = (unset), | |
# LC_ALL = (unset), | |
# LANG = "en_US.utf8" | |
# are supported and installed on your system. |
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 | |
# Install OpenVPN-AS Server | |
# | |
# Tested on Ubuntu 12.04 32bit | |
# Tested on Virtualization type: OpenVZ, XEN-PV and KVM | |
# | |
# By: Asim Zeeshan | |
# http://www.asim.pk/ | |
# | |
# P.S. Some routines taken from LowEndBox/LowEndScript |
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
FREE Codeweavers Crossover for Linux or Mac + 1 year paid support FREE | |
http://flock.codeweavers.com/ | |
Essentially, CrossOver includes a heavily modified version of WINE that has a lot of extra (proprietary) code for | |
increased compatibility, a nice GUI, and support by Codeweavers, rather than just the WINE community. But in the | |
end, it's just an enhanced version of WINE. Programs which run in WINE will run in CrossOver (possibly better), and | |
programs which don't usually won't - but not always. A program which runs semi-ok in WINE might run perfectly in | |
CrossOver. | |
================================================================================================================= |
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 | |
# Install and configure logwatch | |
# | |
# Tested on Ubuntu 12.04 | |
# Tested on Virtualization type: OpenVZ, KVM, XEN-PV | |
# | |
# By: Asim Zeeshan | |
# http://www.asim.pk/ | |
# | |
# Helpful hints from |
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 | |
# Install and configure utorrent (http://www.utorrent.com/) for Ubuntu Linux | |
# | |
# Tested on Ubuntu 12.04 | |
# Tested on Virtualization type: OpenVZ, KVM | |
# | |
# By: Asim Zeeshan | |
# http://www.asim.pk/ | |
# | |
# ----------------------------------------------------- |
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 | |
# Install and configure VNC for Ubuntu Linux | |
# | |
# Tested on Ubuntu 12.04 | |
# Tested on Virtualization type: OpenVZ, KVM | |
# | |
# Script by: Asim Zeeshan | |
# http://www.asim.pk/ | |
# | |
# Original Posted by VPS6.NET (https://vps6.net) |
OlderNewer