I used PHP a lot in the past for our websites. I think its not the best programming language, but
WeiterlesenKategorie: Programmieren
Git – The remote end hung up unexpectedly
Recently I tried to push a bigger repository to Github. At some stage of the upload process failed: fatal: The
WeiterlesenDelphi XE4/Firemonkey – Taborder not working + Workaround
Firemonkey, the framework for cross plattform development, still seems to have some problems and bugs. 🙁 One of the problems
WeiterlesenEclipse/RCP: Overwrite a default handler in your view
In my RCP application CTRL + S is assigned to the save function of the current editor. Addional I wanted
WeiterlesenJava: Get IP and Mac address
A small code snippet that reads the computers IP and MAC address: try { InetAddress ip = InetAddress.getLocalHost(); NetworkInterface network;
WeiterlesenSet workspace location for RCP application
In my Eclipse / RCP application the .metadata directory was always created in the working directory. This worked fine when
WeiterlesenEclipse / RCP: Remove Quick Access from toolbar
After updating my RCP application from Eclipse 3.7 to Eclipse 4.x the toolbar always showed the quick access toolbar:
WeiterlesenAndroid Studio: Nach Update lässt sich das Projekt nicht starten
Heute wurde mir ein Update für Android Studio angezeigt. Also Update heruntergeladen und installiert. Wie immer erwartet man da natürlich
WeiterlesenJava: copy array to another
String[] stringArray = Arrays.copyOf(items.toArray(), items.size(), String[].class);
WeiterlesenJava: Convert String to InputStream
Some methods want an InputStream, converting a String into an InputStream is very easy: /** * Converts a string into
Weiterlesen