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 | |
# | |
# Script to install Postgrey and SpamAssassin with ZPanel | |
# | |
# Tested on: | |
# - Centos 6.4 and ZPanel 10.1.0 | |
# - Centos 6.5 and ZPanel 10.1.1 | |
# | |
# Original post: http://goo.gl/5iG3LN | |
# |
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
cinst fiddler4 | |
cinst git-credential-winstore | |
cinst console-devel | |
cinst sublimetext3 | |
#cinst poshgit | |
#cinst dotpeek |
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
echo off | |
REM Replace [[[USER]]] with your local user account name | |
REM Clean Libraries | |
del /Q /S "C:\Users\[[[USER]]]\Contacts\*.*" > nul | |
del /Q /S "C:\Users\[[[USER]]]\Downloads\*.*" > nul | |
del /Q /S "C:\Users\[[[USER]]]\Music\*.*" > nul | |
del /Q /S "C:\Users\[[[USER]]]\Pictures\*.*" > nul | |
del /Q /S "C:\Users\[[[USER]]]\Videos\*.*" > nul |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Quick start: | |
# - vagrant plugin install vagrant-digitalocean | |
# - Set-up ~/.digital_ocean.rb like this: | |
# module DigitalOceanKeys | |
# CLIENT_ID = 'foooooooo' | |
# API_KEY = 'fabada' | |
# end |
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
mysqldump -p -u username -h hostname database_name > dbname.sql |