Browsing all 29 posts in Tutorials.

0

Build Git from source on Ubuntu

Snippet for building Git from source on Ubuntu Linux:

9

Tutorial: iPhone App with compiled OpenSSL 1.0.0a Library

This is a tutorial for using self-compiled builds of the OpenSSL-library on the iPhone. You can build apps with XCode and the official SDK from Apple with this. I also made a small example-app for using the libraries with XCode and the iPhone/iPhone-Simulator. You can also download the precompiled OpenSSL-library (1.0.0a).

0

Update: OpenSSL 1.0.0a Libraries for iPhone iPod Touch iPad with iOS4

OpenSSL 1.0.0a is released and i updated the OpenSSL-Libraries for iPhone/iPod Touch. Now the Library is build with the iOS4.0 base SDK and Xcode 3.2.3. You can use it now with the iPad too. You can get it at http://github.com/x2on/OpenSSL-for-iPhone

21

Tutorial: iPhone App with compiled OpenSSL Library

This is a tutorial for using self-compiled builds of  the OpenSSL-library on the iPhone. You can build apps with XCode and the official SDK from Apple with this. I also made a small example-app for using the libraries with XCode and the iPhone/iPhone-Simulator. You can also download the precompiled OpenSSL-library (1.0.0a).

0

Tutorial: Building SuperTux 0.3.2 SVN on Mac OS X Snow Leopard

Building SuperTux 0.3.2 SVN is different then building SuperTux 0.3.1 on Mac OS X. Prerequisites Installing MacPorts Update MacPorts: sudo port selfupdate -d Install libraries from Macports: sudo port install libsdl libsdl_image cmake libvorbis physfs glew boost

29

1&1 Surf-Stick (ZTE MF110) unter Ubuntu 9.10

Um den 1&1 Surf-Stick (ZTE MF110) auch unter Ubuntu 9.10 benutzen zu können, muss der USB-Modus des Sticks umgeschaltet werden. Dieser läuft standardmäßig als Filesystem und nicht als UMTS-Stick. Ein Tool namens “USB_Modeswitch” schafft hierbei Abhilfe. UPDATE 01.02.2010 – 13:20: Durch eine neue Version von usb_modeswitch haben sich die Befehle leicht verändert. Die Anleitung habe [...]

0

Snow Leopard: Terminal Tricks

Auch für Snow Leopard gibt es ein paar Terminal-Befehle, die nützliche Funktionen freischalten können. Das ausgewählte Element im Dock highlighten: defaults write com.apple.dock mouse-over-hilite-stack -boolean YES; killall Dock Die neue Stack-Ansicht freischalten: defaults write com.apple.dock use-new-list-stack -boolean yes; killall Dock

0

Eee-PC 1005HA Ubuntu Karmic Sondertasten + Perfomance

Ubuntu 9.10 Karmic läuft auf dem Eee-PC 1005HA “out of the box” ziemlich rund. Um die letzten Feinheiten zum laufen zu bekommen (Sondertasten, Performance/Laufzeit-Tunning) gibt es Tool eee-control. Abhilfe schafft hier ein neues Freeware-Tool namens Eee-Control. Über die Task-Leiste anwählbar, ermöglicht es das Untertakten der CPU zur Akku-Schonung ebenso wie die Belegung der Hotkeys, eine [...]

4

Tutorial: GnuPG 2.0.13 unter Mac OS X 10.6

Die neue Version GnuPG 2 ist schwieriger zu kompilieren als die alte 1.4er Version. Desweiteren wird ein Pinentry Programm benötigt, um die Passphrase des verwendeten PGP-Schlüssels abzufragen. Ich verwende hierfür eine angepasste Version aus dem MacGPG-Bundle (basierend auf pinentry 0.7.6) Um GnuPG2 kompilieren zu können, muss XCode installiert sein. UPDATE: Libcrypt 1.4.5 wurde veröffentlicht und [...]

0

Shell-Skripte in ANT-Build Datei einbinden

Ein kleiner Tip für alle die in einem Projekt Apache ANT benutzen und ein Shell-Skript einbinden wollen. Hierbei gibt es eine Möglichkeit zwischen verschiedenen Betriebssystemen zu unterscheiden, und so unterschiedliche Scripte auszuführen. <target name="examplescript"> <exec dir="." executable="/bin/bash" os="Mac OS X"> <arg line="./examplescript-mac.sh" /> </exec> <exec dir="." executable="/bin/bash" os="Linux"> <arg line="./examplescript-linux.sh" /> </exec> <exec dir="." executable="cmd" [...]

Page 1 of 3123