Privacy and social media buttons
See https://github.com/heiseonline/shariff for a two click like/tweet/+1 button implementation to share less data with the data crawlers.
Privacy and social media buttons Read More »
See https://github.com/heiseonline/shariff for a two click like/tweet/+1 button implementation to share less data with the data crawlers.
Privacy and social media buttons Read More »
See and install SOGo plugin as file. Download from http://www.sogo.nu/downloads/frontends.html. After installation there is a point to add a new remote address book.
Synchronize contacts – Carddav for Thunderbird Read More »
Here is what can be found under push.default in the documentation: current – push the current branch to update a branch with the same name on the receiving end. Works in both central and non-central workflows. upstream – push the current branch back to the branch whose changes are usually integrated into the current branch (which
Warning: push.default is unset; its implicit value is changing in Git 2.0 Read More »
I’m using ShellEd to edit Bash-Scripts in eclipse. Works quite good and brings syntax highlighting! =) Update site: http://sourceforge.net/projects/shelled/files/shelled/update/
Eclipse Bash Editor – ShellEd Read More »
See the following link from msdn. There you find commands to cleanup the WinSxS folder: http://msdn.microsoft.com/de-de/library/dn251565.aspx You will need admin rights for doing this ;-)
Windows 8.1 WinSxS Cleanup Read More »
I got a new mainboard with Realtek ALC1150 onboard sound. First I was thinking it doesn’t work, but it only was very silent. Here is how to fix this: sudo apt-add-repository ppa:ubuntu-audio-dev/alsa-daily sudo apt-get update sudo apt-get install oem-audio-hda-daily-dkms sudo reboot
Ubuntu Realtek ALC1150 Read More »
There is a simple way to start/stop postgresql without any need to open the services dialogue: NET START postgresql-x64-9.3 NET STOP postgresql-x64-9.3 Just replace the version in the statements (you only need major and minor). Just skip the -x64 if you still have a 32bit version.
Start/Stop PostgreSQL under Windows Read More »
JBoss provides a simple mechanism to encrypt database passwords with blowfish. So the standalone.xml does not include our database passwords in plaintext anymore. First you have to encrypt your password with org.picketbox.datasource.security.SecureIdentityLoginModule. This class includes a main method so you can run it with a single argument which has to be your plaintext password. The result will look like
Encrypted Database Passwords in JBoss Read More »
Simply use the following with an example port offset of 100: ./jboss-cli.sh –connect –controller=<BindIP>:10099
Connect to JBoss CLI with port offset Read More »
To disable the source body in a stacktrace you have to add the following configuration to your web subsystem in standalone.xml: <configuration> <jsp-configuration display-source-fragment=”false”/> </configuration> Or with cli: /subsystem=web/configuration=jsp-configuration:write-attribute(name=display-source-fragment, value=false)
Disable Stacktrace in Response of JBoss Read More »