Find a Class in a bunch of JAR Files
for j in *.jar; do echo $j:; jar -tvf “$j” | grep -Hsi ClassName; done Iterate over every jar in your folder. Output every...
my personal Site of Things
for j in *.jar; do echo $j:; jar -tvf “$j” | grep -Hsi ClassName; done Iterate over every jar in your folder. Output every...
Let’s say you want to tunnel an RDP connection via SSH.User: phausSSH-Server: ssh.example.comRDP-Server: win2k8.example.com You need to run that script and keep your session...
If you installing cocoapods on a vanilla MacOS System you might get some error like this: The important error is make: /opt/local/bin/gmkdir: No such...
Deploy your JAR to your local (file) Repository. You shold also commit this to your CVM System. You can also add JARs as Javadoc...
Sometimes, you would like to have Mapping Char to Int ( A = 0, B = 1, etc.)One easy way to do this is...
Once in a while – and especially if you have a System with an uptime > 300d – HW tends to fail. Good thing,...
Some words before we start… Hello Blog, it’s been a while. I still have to deliver the last part of the Munin Plugin Development...
In a project where we had the need for VMs being capable of doing CI for Java and also doing CI for iOS Application...
If you want to create nifty Graphics and Animation in the web, you cannot avoid d3.js. D3.js uses SVG as the basic Displaying Technologie....