When evaluating the performance of an application it makes sense to run the code several times to get better view on how it performs. But getting a good look at the performance is still hard.
Creating dotfiles in Windows
Due to the fact that Windows enforces you to use a file name you cannot create a file .gitignore, or can you? Turns out actuallyRead More
Python: Overwrite file with text (utf-8)
def overwriteFile(file_path, text): f = codecs.open(file_path, ‘r+’, “utf-8-sig”) f.seek(0) f.write(text) f.truncate() f.close()
Hidden word list | Bulls and Cows Game – UnrealCourse on Udemy
I’m currently learning c++ for ue on udemy. In this course we are currently writing a game named Bulls and Cows with lowercase words only.Read More
ibash – Update auf Version 3.0
In den letzten 2 Jahren hat sich viel im Android-Universum getan. Die alten Libs, welche ich beim Erstellen der App benutzt habe, sind obsolet geworden,Read More
[Java] String zu File mit Encoding
Hier ein kleines Snippet, welches einen Text bekommt und ihn mit dem gewünschten Charset in eine Datei schreibt.
[C#] Generic Circular Buffer
Circular buffers are awesome! For those who don’t know them: It’s basically a list where the end is connected to the start.. like a circle..Read More
[Java] SSLContext with client certificate
If you want to connect somewhere using an ssl-connection you will need an SSLContext object. I had some trouble creating one with a client certificateRead More
Log Parser Plugin – Tutorial [Hudson/Jenkins]
Prologue: – Install the plugin (plugin site). – Make sure you have access to the master server Part 1 – create a rule file: MakeRead More
[Eclipse] Attach javadoc to jar file
Today I started to use JavaFX and encountered a little problem while trying to get descriptions for the methods: Note: This element has no attachedRead More