Archive for the ‘Uncategorized’ Category
Wenn MP3 stirbt..
Das Fraunhofer-Institut für Integrierte Schaltungen (IIS) als Lizenzinhaber hat am 23.04.2017 die Lizenzvergabe für MP3 eingestellt. Das beliebte MP3-Format wird daher ab dem 01.07.2018 endgültig von diversen MP3-Abspielprogramme nicht mehr unterstützt.
Es gibt jedoch Alternative um MP3-Format kostenfrei in AAC-Format umzuwandeln.
free audio converter (free:ac) ist z.B. eine Möglichkeit. Das Programm ist außerdem kostenlos und open source.
Ich freue mich auf Eure weiteren Tipps und Bewertung zu den Programmen im Kommentarfeld.
Kostenloses E-Book über Produktfotografie
Es ist schon ungewöhnlich, dass man ein kostenloses E-Book ohne eine E-Mail-Registrierung bekommen kann. Falls ihr Interesse an Produktfotografie habt, könnt ihr gerne das kostenlose E-Book herunterladen:
Ich habe selber das Buch noch nicht durchgelesen, falls ihr Euch damit schon beschäftigt habt, freue ich mich über Eure Bewertung zum Buch im Kommentarfeld.
How to install Sentry on Google Cloud Platform with Nginx as proxy
Running on Debian 3.16.0-4-amd64 on Google Cloud Platform
Install Docker
https://docs.docker.com/engine/installation/linux/debian/
Install docker-compose
https://docs.docker.com/compose/install/
- curl -L „https://github.com/docker/compose/releases/download/1.11.2/docker-compose-$(uname -s)-$(uname -m)“ -o /usr/local/bin/docker-compose
- chmod +x /usr/local/bin/docker-compose
Install Sentry
- git clone https://github.com/getsentry/onpremise.git
- cd onpremise
- https://github.com/getsentry/onpremise
You reach your fresh installed Sentry under
Sentry, SSL and Nginx
If you’re using SSL, you’ll also need to set the following in sentry.conf.py
:
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
Ansible and MacOS
As of 2.0 ansible uses a few more file handles to manage its forks, OS X has a very low setting so if you want to use 15 or more forks you’ll need to raise the ulimit, like so
sudo launchctl limit maxfiles 1024 unlimited
.
Or just any time you see a “Too many open files” error.
Source: http://docs.ansible.com/ansible/intro_installation.html
wichtige Befehle für Docker (Spickzettel)
Stop all docker containers:
$ docker stop $(docker ps -a -q)
remove all container
$ docker rm -v $(docker ps -a -q)