Tags

Tag: android

Android and Ubuntu

June 12, 2014
The easiest way to flash your Smartphone: First install the android tools sudo apt-get install android-tools-adb android-tools-fastboot reboot your phone into recovery For my nexus 4 it is holding down the powerbutton and the volume down key since the recovery appears. plug the phone into your computer and sideload your android image adb sideload cm-11-*.zip adb sideload gapps-*.zip have fun! :)

How to enable sshd on Android

April 28, 2014
If you love android as much as me for it’s customizing capabilities you will love this tutorial. I try to do much on the commandline and use as many automation as possible for this purpose. I got the Code references from the CM Wiki. So here it is, my sshd on Android Tutorial. Why use this long tutorial when there is an app for it? Because there is an APP for it.

Tag: blog

New Blog in da House 2

May 12, 2023

Der neue Blog, mit vielen kleinen aber feinen CSS und HTML Zutaten. Und all das mit Versionierungstricks bis hin zur Auslieferung per Github-Agenten.

New Blog in da House

February 6, 2014
Welcome here in my little Blogging experience. Since the last try’s to blog more in the future failed i stumbled upon github-pages. Here you got For a long time i wanted to get some cheat-sheets and tutorials up that i would not always have to look up in the web for little things like bash programming etc. Through the design of static pages and the ability to take your blog everywhere you go i couldn’t resist to take a tour in the all new jekyll.

Tag: coding

VIM Tutorial 01

September 4, 2023

Lasst uns doch mal ein bisschen über VIM reden. Ich möchte hier einmal aufzeigen das VIM mehr als nur ein Texteditor ist und es viele versteckte Funktionen gibt die nicht jeder auf die, vielleicht sogar ersten Jahre, erkennt.

Tag: config

my best vim config dip's

May 18, 2014
Here are some of my favourite bindings in vim. The first thing to do in .vimrc: " Unmap the Arrow Keys \{\{\{ no <down> <Nop> no <left> <Nop> no <right> <Nop> no <up> <Nop> ino <down> <Nop> ino <left> <Nop> ino <right> <Nop> ino <up> <Nop> vno <down> <Nop> vno <left> <Nop> vno <right> <Nop> vno <up> <Nop> The following are my private favourites for now and evolving. " Jekyll Blog Bindings \{\{\{ let g:jekyll_path = "$HOME/git/blog" " Jekyll Bundle mappings map <Leader>jn :JekyllPost<CR> map <Leader>jl :JekyllList<CR> map <Leader>jc :JekyllCommit<CR> map <Leader>jp :JekyllPublish<CR> " Quickly edit/reload the vimrc file nmap <silent> <leader>ev :e $MYVIMRC<CR> nmap <silent> <leader>sv :so $MYVIMRC<CR> " Paste Mode for pasting more Text at once (use in insert mode) set pastetoggle=<F2> " Use sane regexes.

Tag: console

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Tag: css

New Blog in da House 2

May 12, 2023

Der neue Blog, mit vielen kleinen aber feinen CSS und HTML Zutaten. Und all das mit Versionierungstricks bis hin zur Auslieferung per Github-Agenten.

Tag: debian

Git für alle(s)

October 5, 2012

Git kann gut und gerne viele Daten verwalten. Der Vorteil von Git gegenüber “normalen” VCS (Version Control System) liegt klar auf der Hand.

Tag: firefox

Terminal Fun

March 7, 2014
My plan is to ban the mouse out of my daily use System’s and be productive too. In this Post i present some tools that can help me do that. Daily work, so what do i have to tweak? The Web Browser is startet with the login of course and then there is the Text Editing that has to be taken care of. Music and other tools have to be managed.

Tag: freebsd

Deleting ZFS Snapshots

August 14, 2014
If you are in the situation to deal with many zfs snapshots that are not needed anymore you can try this. !!! USE AT YOUR OWN RISK !!! #!/bin/bash for snapshot in `zfs list -H -t snapshot | cut -f 1` #add grep's here to limit #the amount of deletes do zfs destroy $snapshot done zfs list -H -t snapshot

Tag: games

Cannonball (the OutRun Engine)

February 7, 2014
How to install cannonball the outrun engine on your own PC for the ultimate Retro Experience on Ubuntu/Debian Derivates. With Windows the Process is defined on the github page. {% highlight bash %} DIRRECTORY=~/git mkdir $DIRRECTORY git clone https://github.com/djyt/cannonball.git $DIRRECTORY/cannonball cd $DIRRECTORY/cannonball could not get it to target debian cp cmake/debian.cmake cmake/default.cmake mkdir build cd build sudo apt-get install cmake libsdl1.2-dev libboost1.53-dev -yy cmake ../cmake make ln -s ../roms roms

Nethack 4

February 7, 2014
There are many clones in the Nethack Community. Here is one that i learned to love the most. dynahack is the way to go. Download the latest source or git clone it. git clone https://github.com/tung/DynaHack cd DynaHack sudo apt-get install gcc flex bison libncursesw5-dev libjansson-dev \ zlib1g-dev cmake cmake-curses-gui mkdir build cd build cmake .. ccmake . Set SHELLDIR and CMAKE_INSTALL_PREFIX to /home/username/dynahack/install. Set BINDIR, DATADIR and LIBDIR to /home/username/dynahack/install/dynahack-data.

Tag: git

Git für alle(s)

October 5, 2012

Git kann gut und gerne viele Daten verwalten. Der Vorteil von Git gegenüber “normalen” VCS (Version Control System) liegt klar auf der Hand.

Tag: github

New Blog in da House 2

May 12, 2023

Der neue Blog, mit vielen kleinen aber feinen CSS und HTML Zutaten. Und all das mit Versionierungstricks bis hin zur Auslieferung per Github-Agenten.

New Blog in da House

February 6, 2014
Welcome here in my little Blogging experience. Since the last try’s to blog more in the future failed i stumbled upon github-pages. Here you got For a long time i wanted to get some cheat-sheets and tutorials up that i would not always have to look up in the web for little things like bash programming etc. Through the design of static pages and the ability to take your blog everywhere you go i couldn’t resist to take a tour in the all new jekyll.

Tag: hugo

New Blog in da House 2

May 12, 2023

Der neue Blog, mit vielen kleinen aber feinen CSS und HTML Zutaten. Und all das mit Versionierungstricks bis hin zur Auslieferung per Github-Agenten.

Tag: jekyll

New Blog in da House

February 6, 2014
Welcome here in my little Blogging experience. Since the last try’s to blog more in the future failed i stumbled upon github-pages. Here you got For a long time i wanted to get some cheat-sheets and tutorials up that i would not always have to look up in the web for little things like bash programming etc. Through the design of static pages and the ability to take your blog everywhere you go i couldn’t resist to take a tour in the all new jekyll.

Tag: kennwort

Mac Kennwort vergessen

July 26, 2012
How to recreate an Admin Account on a MAC: hold CMD-S or WIN-S and power on the MAC. now some manual editing: fsck -y mount -uaw / rm /var/db/.AppleSetupDone reboot The System now thinks it is not even Set Up yet. Now you will be creating a new User and go through the Setup process. This user becomes an Administrator on the Mac after the setup. Have fun. After writing this i saw the Article from Dennis

Tag: linux

iPads befüllen in 2024

March 29, 2024

Es begab sich eines Tages da musste ein VPN auf einem iPad konfiguriert werden.

Die notwendige App für ein OpenVPN war schnell im App Store auf dem Gerät gefunden und installiert.

VIM Tutorial 01

September 4, 2023

Lasst uns doch mal ein bisschen über VIM reden. Ich möchte hier einmal aufzeigen das VIM mehr als nur ein Texteditor ist und es viele versteckte Funktionen gibt die nicht jeder auf die, vielleicht sogar ersten Jahre, erkennt.

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Music your home with linux

August 20, 2014
Musik zuhause. Das ist eigentlich das was man immer gern hat, aber sich nie Gedanken zu macht. Und die wichtigste Frage: Wie kann Linux dabei helfen? Im folgenden werde ich versuchen eine Übersicht über meine Erfahrung mit diesen beiden Themen zu geben. Die Idee Ich hatte die Idee Musik nicht nur im Wohnzimmer sondern auch gleichzeitig im Garten abzuspielen. Gleichzeitig ist hierbei technisch übersetzt natürlich das Wort Synchron. Man möchte nicht einen Beat verpassen beim Wechseln von Garten ins Wohnzimmer

Winy Wine

August 18, 2014
Getting things done with wine on linux is cool, but you have to seperate working directories if you want to be able to cleanly remove or install another application side by side. Here i have a few tips for you to make yout first steps into that. WINEPREFIX="$HOME/prefix32" WINEARCH='win32' wine 'wineboot' WINEPREFIX="$HOME/prefix32" WINEARCH='win32' winetricks vcredist2005

Deleting ZFS Snapshots

August 14, 2014
If you are in the situation to deal with many zfs snapshots that are not needed anymore you can try this. !!! USE AT YOUR OWN RISK !!! #!/bin/bash for snapshot in `zfs list -H -t snapshot | cut -f 1` #add grep's here to limit #the amount of deletes do zfs destroy $snapshot done zfs list -H -t snapshot

How to create an ISO in linux.

June 29, 2014
fastest way: Open a Terminal and type in: cat /dev/sr0 > $HOME/test.iso Or with dd isoinfo -d -i /dev/sr0 |grep -i -E 'block size|volume size' dd if=/dev/sr0 of=$HOME/test.iso bs=<blocksize> count=<volumesize> Test your Image against the CD/DVD cmp $HOME/test.iso /dev/sr0

Serial and USB Action with wine

June 29, 2014
First of all you have to add your user to the dialout group which is used in ubuntu for all serial or usb devices that can perform some kind of /dialouty/ activity. For the user to have access to that group it is better to logout and login again to get the GUI to receive the new Groups. In the next step you have to browse to your wineprefix directory that in my case resides in $HOME/.

Android and Ubuntu

June 12, 2014
The easiest way to flash your Smartphone: First install the android tools sudo apt-get install android-tools-adb android-tools-fastboot reboot your phone into recovery For my nexus 4 it is holding down the powerbutton and the volume down key since the recovery appears. plug the phone into your computer and sideload your android image adb sideload cm-11-*.zip adb sideload gapps-*.zip have fun! :)

How to enable sshd on Android

April 28, 2014
If you love android as much as me for it’s customizing capabilities you will love this tutorial. I try to do much on the commandline and use as many automation as possible for this purpose. I got the Code references from the CM Wiki. So here it is, my sshd on Android Tutorial. Why use this long tutorial when there is an app for it? Because there is an APP for it.

Terminal Fun

March 7, 2014
My plan is to ban the mouse out of my daily use System’s and be productive too. In this Post i present some tools that can help me do that. Daily work, so what do i have to tweak? The Web Browser is startet with the login of course and then there is the Text Editing that has to be taken care of. Music and other tools have to be managed.

Silverlight Videos on Linux

February 21, 2014
Silverlight and linux are not friends. This is the Tutorial from which i could watch movies for silverlight successfully on my Ubuntu Machine. Pipelight Installation So for Ubuntu you have to do some little things … For my personal recommends i added chromium to split the usage of a normal browser and a dedicated one. sudo add-apt-repository ppa:pipelight/stable sudo apt-get update sudo apt-get install --install-recommends pipelight-multi sudo pipelight-plugin --enable silverlight sudo apt-get install chromium-browser go out there and Happy Silverlighting…

Cannonball (the OutRun Engine)

February 7, 2014
How to install cannonball the outrun engine on your own PC for the ultimate Retro Experience on Ubuntu/Debian Derivates. With Windows the Process is defined on the github page. {% highlight bash %} DIRRECTORY=~/git mkdir $DIRRECTORY git clone https://github.com/djyt/cannonball.git $DIRRECTORY/cannonball cd $DIRRECTORY/cannonball could not get it to target debian cp cmake/debian.cmake cmake/default.cmake mkdir build cd build sudo apt-get install cmake libsdl1.2-dev libboost1.53-dev -yy cmake ../cmake make ln -s ../roms roms

Nethack 4

February 7, 2014
There are many clones in the Nethack Community. Here is one that i learned to love the most. dynahack is the way to go. Download the latest source or git clone it. git clone https://github.com/tung/DynaHack cd DynaHack sudo apt-get install gcc flex bison libncursesw5-dev libjansson-dev \ zlib1g-dev cmake cmake-curses-gui mkdir build cd build cmake .. ccmake . Set SHELLDIR and CMAKE_INSTALL_PREFIX to /home/username/dynahack/install. Set BINDIR, DATADIR and LIBDIR to /home/username/dynahack/install/dynahack-data.

New Blog in da House

February 6, 2014
Welcome here in my little Blogging experience. Since the last try’s to blog more in the future failed i stumbled upon github-pages. Here you got For a long time i wanted to get some cheat-sheets and tutorials up that i would not always have to look up in the web for little things like bash programming etc. Through the design of static pages and the ability to take your blog everywhere you go i couldn’t resist to take a tour in the all new jekyll.

Git für alle(s)

October 5, 2012

Git kann gut und gerne viele Daten verwalten. Der Vorteil von Git gegenüber “normalen” VCS (Version Control System) liegt klar auf der Hand.

Tag: mac

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Mac Kennwort vergessen

July 26, 2012
How to recreate an Admin Account on a MAC: hold CMD-S or WIN-S and power on the MAC. now some manual editing: fsck -y mount -uaw / rm /var/db/.AppleSetupDone reboot The System now thinks it is not even Set Up yet. Now you will be creating a new User and go through the Setup process. This user becomes an Administrator on the Mac after the setup. Have fun. After writing this i saw the Article from Dennis

Tag: monolight

Silverlight Videos on Linux

February 21, 2014
Silverlight and linux are not friends. This is the Tutorial from which i could watch movies for silverlight successfully on my Ubuntu Machine. Pipelight Installation So for Ubuntu you have to do some little things … For my personal recommends i added chromium to split the usage of a normal browser and a dedicated one. sudo add-apt-repository ppa:pipelight/stable sudo apt-get update sudo apt-get install --install-recommends pipelight-multi sudo pipelight-plugin --enable silverlight sudo apt-get install chromium-browser go out there and Happy Silverlighting…

Tag: mpd

Music your home with linux

August 20, 2014
Musik zuhause. Das ist eigentlich das was man immer gern hat, aber sich nie Gedanken zu macht. Und die wichtigste Frage: Wie kann Linux dabei helfen? Im folgenden werde ich versuchen eine Übersicht über meine Erfahrung mit diesen beiden Themen zu geben. Die Idee Ich hatte die Idee Musik nicht nur im Wohnzimmer sondern auch gleichzeitig im Garten abzuspielen. Gleichzeitig ist hierbei technisch übersetzt natürlich das Wort Synchron. Man möchte nicht einen Beat verpassen beim Wechseln von Garten ins Wohnzimmer

Tag: music

Music your home with linux

August 20, 2014
Musik zuhause. Das ist eigentlich das was man immer gern hat, aber sich nie Gedanken zu macht. Und die wichtigste Frage: Wie kann Linux dabei helfen? Im folgenden werde ich versuchen eine Übersicht über meine Erfahrung mit diesen beiden Themen zu geben. Die Idee Ich hatte die Idee Musik nicht nur im Wohnzimmer sondern auch gleichzeitig im Garten abzuspielen. Gleichzeitig ist hierbei technisch übersetzt natürlich das Wort Synchron. Man möchte nicht einen Beat verpassen beim Wechseln von Garten ins Wohnzimmer

Tag: osx

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Tag: passwort

Mac Kennwort vergessen

July 26, 2012
How to recreate an Admin Account on a MAC: hold CMD-S or WIN-S and power on the MAC. now some manual editing: fsck -y mount -uaw / rm /var/db/.AppleSetupDone reboot The System now thinks it is not even Set Up yet. Now you will be creating a new User and go through the Setup process. This user becomes an Administrator on the Mac after the setup. Have fun. After writing this i saw the Article from Dennis

Tag: pipelight

Silverlight Videos on Linux

February 21, 2014
Silverlight and linux are not friends. This is the Tutorial from which i could watch movies for silverlight successfully on my Ubuntu Machine. Pipelight Installation So for Ubuntu you have to do some little things … For my personal recommends i added chromium to split the usage of a normal browser and a dedicated one. sudo add-apt-repository ppa:pipelight/stable sudo apt-get update sudo apt-get install --install-recommends pipelight-multi sudo pipelight-plugin --enable silverlight sudo apt-get install chromium-browser go out there and Happy Silverlighting…

Tag: silverlight

Silverlight Videos on Linux

February 21, 2014
Silverlight and linux are not friends. This is the Tutorial from which i could watch movies for silverlight successfully on my Ubuntu Machine. Pipelight Installation So for Ubuntu you have to do some little things … For my personal recommends i added chromium to split the usage of a normal browser and a dedicated one. sudo add-apt-repository ppa:pipelight/stable sudo apt-get update sudo apt-get install --install-recommends pipelight-multi sudo pipelight-plugin --enable silverlight sudo apt-get install chromium-browser go out there and Happy Silverlighting…

Tag: story

iPads befüllen in 2024

March 29, 2024

Es begab sich eines Tages da musste ein VPN auf einem iPad konfiguriert werden.

Die notwendige App für ein OpenVPN war schnell im App Store auf dem Gerät gefunden und installiert.

Tag: terminal

Terminal Fun

March 7, 2014
My plan is to ban the mouse out of my daily use System’s and be productive too. In this Post i present some tools that can help me do that. Daily work, so what do i have to tweak? The Web Browser is startet with the login of course and then there is the Text Editing that has to be taken care of. Music and other tools have to be managed.

Tag: themes

New Blog in da House 2

May 12, 2023

Der neue Blog, mit vielen kleinen aber feinen CSS und HTML Zutaten. Und all das mit Versionierungstricks bis hin zur Auslieferung per Github-Agenten.

Tag: todo

Terminal Fun

March 7, 2014
My plan is to ban the mouse out of my daily use System’s and be productive too. In this Post i present some tools that can help me do that. Daily work, so what do i have to tweak? The Web Browser is startet with the login of course and then there is the Text Editing that has to be taken care of. Music and other tools have to be managed.

Tag: tutorial

VIM Tutorial 01

September 4, 2023

Lasst uns doch mal ein bisschen über VIM reden. Ich möchte hier einmal aufzeigen das VIM mehr als nur ein Texteditor ist und es viele versteckte Funktionen gibt die nicht jeder auf die, vielleicht sogar ersten Jahre, erkennt.

Tag: ubuntu

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Git für alle(s)

October 5, 2012

Git kann gut und gerne viele Daten verwalten. Der Vorteil von Git gegenüber “normalen” VCS (Version Control System) liegt klar auf der Hand.

Tag: unix

TMUX - TerminalMUltipleXer

May 13, 2023

TMUX, ein Terminal MUltipleXer.

Terminal? 
Das Schwarz weiße ding?
Ist das überhaupt interessant?

Tag: vcs

Git für alle(s)

October 5, 2012

Git kann gut und gerne viele Daten verwalten. Der Vorteil von Git gegenüber “normalen” VCS (Version Control System) liegt klar auf der Hand.

Tag: vim

VIM Tutorial 01

September 4, 2023

Lasst uns doch mal ein bisschen über VIM reden. Ich möchte hier einmal aufzeigen das VIM mehr als nur ein Texteditor ist und es viele versteckte Funktionen gibt die nicht jeder auf die, vielleicht sogar ersten Jahre, erkennt.

my best vim config dip's

May 18, 2014
Here are some of my favourite bindings in vim. The first thing to do in .vimrc: " Unmap the Arrow Keys \{\{\{ no <down> <Nop> no <left> <Nop> no <right> <Nop> no <up> <Nop> ino <down> <Nop> ino <left> <Nop> ino <right> <Nop> ino <up> <Nop> vno <down> <Nop> vno <left> <Nop> vno <right> <Nop> vno <up> <Nop> The following are my private favourites for now and evolving. " Jekyll Blog Bindings \{\{\{ let g:jekyll_path = "$HOME/git/blog" " Jekyll Bundle mappings map <Leader>jn :JekyllPost<CR> map <Leader>jl :JekyllList<CR> map <Leader>jc :JekyllCommit<CR> map <Leader>jp :JekyllPublish<CR> " Quickly edit/reload the vimrc file nmap <silent> <leader>ev :e $MYVIMRC<CR> nmap <silent> <leader>sv :so $MYVIMRC<CR> " Paste Mode for pasting more Text at once (use in insert mode) set pastetoggle=<F2> " Use sane regexes.

Tag: windows

Music your home with linux

August 20, 2014
Musik zuhause. Das ist eigentlich das was man immer gern hat, aber sich nie Gedanken zu macht. Und die wichtigste Frage: Wie kann Linux dabei helfen? Im folgenden werde ich versuchen eine Übersicht über meine Erfahrung mit diesen beiden Themen zu geben. Die Idee Ich hatte die Idee Musik nicht nur im Wohnzimmer sondern auch gleichzeitig im Garten abzuspielen. Gleichzeitig ist hierbei technisch übersetzt natürlich das Wort Synchron. Man möchte nicht einen Beat verpassen beim Wechseln von Garten ins Wohnzimmer

Cannonball (the OutRun Engine)

February 7, 2014
How to install cannonball the outrun engine on your own PC for the ultimate Retro Experience on Ubuntu/Debian Derivates. With Windows the Process is defined on the github page. {% highlight bash %} DIRRECTORY=~/git mkdir $DIRRECTORY git clone https://github.com/djyt/cannonball.git $DIRRECTORY/cannonball cd $DIRRECTORY/cannonball could not get it to target debian cp cmake/debian.cmake cmake/default.cmake mkdir build cd build sudo apt-get install cmake libsdl1.2-dev libboost1.53-dev -yy cmake ../cmake make ln -s ../roms roms

Nethack 4

February 7, 2014
There are many clones in the Nethack Community. Here is one that i learned to love the most. dynahack is the way to go. Download the latest source or git clone it. git clone https://github.com/tung/DynaHack cd DynaHack sudo apt-get install gcc flex bison libncursesw5-dev libjansson-dev \ zlib1g-dev cmake cmake-curses-gui mkdir build cd build cmake .. ccmake . Set SHELLDIR and CMAKE_INSTALL_PREFIX to /home/username/dynahack/install. Set BINDIR, DATADIR and LIBDIR to /home/username/dynahack/install/dynahack-data.

Tag: wine

Winy Wine

August 18, 2014
Getting things done with wine on linux is cool, but you have to seperate working directories if you want to be able to cleanly remove or install another application side by side. Here i have a few tips for you to make yout first steps into that. WINEPREFIX="$HOME/prefix32" WINEARCH='win32' wine 'wineboot' WINEPREFIX="$HOME/prefix32" WINEARCH='win32' winetricks vcredist2005

Serial and USB Action with wine

June 29, 2014
First of all you have to add your user to the dialout group which is used in ubuntu for all serial or usb devices that can perform some kind of /dialouty/ activity. For the user to have access to that group it is better to logout and login again to get the GUI to receive the new Groups. In the next step you have to browse to your wineprefix directory that in my case resides in $HOME/.

Tag: workflow

New Blog in da House 2

May 12, 2023

Der neue Blog, mit vielen kleinen aber feinen CSS und HTML Zutaten. Und all das mit Versionierungstricks bis hin zur Auslieferung per Github-Agenten.

Tag: zfs

Deleting ZFS Snapshots

August 14, 2014
If you are in the situation to deal with many zfs snapshots that are not needed anymore you can try this. !!! USE AT YOUR OWN RISK !!! #!/bin/bash for snapshot in `zfs list -H -t snapshot | cut -f 1` #add grep's here to limit #the amount of deletes do zfs destroy $snapshot done zfs list -H -t snapshot