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
| #!python | |
| import os | |
| import re | |
| import sys | |
| import subprocess | |
| ''' | |
| svn_revert_clean.py - script to remove unversioned files and perform svn revert |
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
| Sub Insert_x_rows() | |
| ' | |
| ' Insert a given number of rows into a MS Word Table | |
| ' | |
| ' | |
| Dim n_rows As Integer | |
| n_rows = InputBox("How many rows shall be inserted?", "Insert Rows") | |
| Selection.InsertRowsBelow n_rows |
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
| REM !IMPORTANT: May not work with Lotus Notes 8.5.x on Windows 7! | |
| @echo off | |
| c: | |
| cd \ | |
| mkdir Backup_notes\data | |
| cd Program Files | |
| cd IBM | |
| cd lotus/notes | |
| @echo on |
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
| #!perl | |
| #--------------------------------------------------------------------------------------------- | |
| #-------------------------- Prerequisites ---------------------------------------------------- | |
| #--------------------------------------------------------------------------------------------- | |
| # This Perl script is using Imagemagick to compress the pictures. | |
| # This tool shall be downloaded and installed first. | |
| #--------------------------------------------------------------------------------------------- | |
| #--------------------------------------------------------------------------------------------- |
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 ---------------------- | |
| REM ----- ARGUMENTS ------ | |
| REM ---------------------- | |
| set PATH=%~1 | |
| set FILE=%~n1 | |
| set DIR=%~dp1 | |
| set EXTENSION=%~x1 | |
| REM ---------------------- |
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
| #!perl | |
| $|=1; | |
| eval { | |
| #- Access the Clipboard -# | |
| use Win32::Clipboard; | |
| my $CLIP = Win32::Clipboard(); | |
| my $input; | |
| if ($CLIP->IsText()) { |
NewerOlder