Just a test for slogger
This file contains 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 script downloads and builds QtCore and QtXML libraries only on Win :: | |
wget ftp://ftp.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.3.tar.gz | |
7za x -y qt-everywhere-opensource-src-4.6.3.tar.gz | |
del qt-everywhere-opensource-src-4.6.3.tar.gz | |
7za x -y qt-everywhere-opensource-src-4.6.3.tar | |
del qt-everywhere-opensource-src-4.6.3.tar | |
cd qt-everywhere-opensource-src-4.6.3 | |
wget ftp://ftp.qt.nokia.com/jom/jom093.zip | |
7za x -y jom093.zip | |
del jom093.zip |
This file contains 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 y | configure.exe -opensource -qt-sql-oci -I "%cd%/../instantclient_11_1/sdk/include" -L "%cd%/../instantclient_11_1/sdk/lib/msvc" | |
jom sub-tools-bootstrap sub-moc sub-rcc sub-uic sub-corelib sub-xml sub-network sub-gui sub-sql sub-opengl sub-xmlpatterns sub-tools |
This file contains 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
exec cmake $@ -DCMAKE_CMD_ARGS:STRING="${@}" |
This file contains 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
import os, glob, errno, sys, time | |
if os.name == 'nt': | |
# Eingabepfad | |
path = '.\\' | |
# Ausgabepfad | |
outPath = path + 'out\\' | |
else: | |
path = './' | |
outPath = path + 'out/' |
This file contains 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/env python | |
import os, glob, errno, sys, time, re | |
if len(sys.argv) > 1: | |
fin_filename = sys.argv[1] | |
else: | |
fin_filename = 'druck_orig.txt' | |
This file contains 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
# | |
# Typically the only thing that needs to be changed are the paths to the | |
# TIFF tree. Note that we expect an existing build tree, in part because we | |
# need private include files from libtiff, but also we need access to getopt.h. | |
# in the ports directory. | |
# | |
# You may want to add optimization options to the CFLAGS macro as well. | |
# | |
# This should point to an installed vtk |
This file contains 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 | |
cd ~/repos > /dev/null 2>&1 | |
cd ogs_sources_svn > /dev/null 2>&1 | |
REBASE_OUTPUT=`git svn rebase` > /dev/null 2>&1 | |
if [ "$REBASE_OUTPUT" != 'is up to date' ]; then | |
exit 0 | |
fi | |
cd ../ogs_sources > /dev/null 2>&1 |
This file contains 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
tell application "Xcode" | |
tell front project | |
-- The project root | |
set root_group to root group | |
-- The first folder in the project root | |
-- (Sources folder in CMake generated projects) | |
set first_item to first item reference of root_group | |
-- Get the file path | |
set my_sources_path to full path of first_item | |
-- Open with peepopen |
This file contains 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
cd mywebsite | |
git clone git://github.com/twitter/bootstrap.git |
OlderNewer