tomcat WAR 404 not found

Problem: A functional and well tested WAR was not reachable on a new tomcat instance. Solution: The new tomcat was for java 1.7 apps and the WAR was a 1.8 java compiled app, so the tomcat deployed the war without errors and the app was showing 404 not found. In the...

jQuery UI simplest possible modal

Example: <li class=“sibling“ id=“id“><a>Text</a></li> $( „#id“ ).click(function() { $.getScript(‚https://code.jquery.com/ui/1.12.0/jquery-ui.min.js‘, function() { $(‚<link/>‘, {...

XCODE: ERROR ITMS-90534 Invalid Tool Chain

I was building an app via ionic and cordova, when it comes to release I got this error in the upload phase in xcode. Solution: That means that you simply have to update your xcode, even if you are not be notified via apple app store, that you have to...

iso image auf usb stick schreiben in linux / mac os

Linux sudo lsblk Mac OS sudo diskutil list Gerät aussuchen Der Name des Geräts sieht so aus /dev/disk1 Jetzt kommt das dd Kommando, was als Parameter ein if für InputFile und ein of für OutputFile erwartet. Der InputFile ist euer Image und der OutputFile euer Device....

Search or grep docker logs

Normal grep and piping seems not to work for docker: docker logs target_container | grep include_term   That is normal, because docker logs internally to the standard error out, so we have to redirect the standard error output (2) to the standard output (1):...

yarn or npm or node install error

I got an error while using npm or yarn which is based on node js. Error: dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.58.dylib   Referenced from: /usr/local/bin/node   Reason: image not found Fix: Reinstall node js...

hashcat on OS X

git clone https://github.com/hashcat/hashcat.git mkdir -p hashcat/deps git clone https://github.com/KhronosGroup/OpenCL-Headers.git hashcat/deps/OpenCL cd hashcat/ make ./example0.sh  
de_DEDeutsch