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
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep); | |
begin | |
// warn the user, that his working folder is going to be deleted and projects might get lost | |
if (CurUninstallStep = usUninstall) then begin | |
if MsgBox('***WARNING***'#13#10#13#10 + | |
'The installation folder is [ '+ ExpandConstant('{app}') +' ].'#13#10 + | |
'You are about to delete this folder and all its subfolders,'#13#10 + | |
'including [ '+ ExpandConstant('{app}') +'\important_projects_folder ], which may contain your projects.'#13#10#13#10 + |
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
{ | |
Unzip Helper for executing 7zip without blocking the InnoSetup GUI | |
---- | |
The main procedure is the non-blocking Unzip(). | |
Your GUI will remain responsive during the unzip operation. | |
Written by Rik and Jens A. Koch (@jakoch) on StackOverflow: | |
http://stackoverflow.com/questions/32256432/how-to-execute-7zip-without-blocking-the-innosetup-ui |
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
# Some good standards, which are not used if the user | |
# creates his/her own .bashrc/.bash_profile | |
export PATH="$PATH:/c/cerver/bin/nodejs/:/c/server/bin/nodejs/node_modules/npm/:/c/server/bin/ruby/bin/" | |
# --show-control-chars: help showing Korean or accented characters | |
alias ls='ls -F --color=auto --show-control-chars' | |
alias ll='ls -l' | |
alias www='cd /c/server/www/' | |
alias st='cmd //c /d/#portable/Total\ Commander/Plugins/exe/SublimeText3/subl.exe' |
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 | |
# | |
# CLI Tool for checking the UTF-8 encoding of files in a directory tree. | |
# | |
function usage() { | |
echo -e "Usage: $0 <directory>" | |
} |
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
#----------------------------------------------------------------------------- | |
# | |
# Copyright (c) 2013, Thierry Lelegard | |
# All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without | |
# modification, are permitted provided that the following conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright notice, | |
# this list of conditions and the following disclaimer. |
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 | |
# | |
# ZNC Installation Script for Debian | |
# ---------------------------------- | |
# Author: Jens-Andre Koch | |
# Date: 14.03.2012 | |
# --------------------------------<3 | |
# fetch znc-version.tar.gz archive from github | |
wget --no-check-certificate https://github.com/znc/znc/archive/znc-1.2.tar.gz -O - | tar xz |
NewerOlder