Skip to content
Menu
codewing.de

codewing.de

  • Blog
  • Apps
    • ibash for Android
    • MapViewer
    • PlayPlease
  • Games
    • Abprallschuss (Ricochet)
    • Rabbitholes
    • Canyon Race
    • Time Fridge Ninja
    • PlusMinus
  • About
    • Privacy Policy
    • Disclaimer
  • Blog
  • Apps
    • ibash for Android
    • MapViewer
    • PlayPlease
  • Games
    • Abprallschuss (Ricochet)
    • Rabbitholes
    • Canyon Race
    • Time Fridge Ninja
    • PlusMinus
  • About
    • Privacy Policy
    • Disclaimer

Category: Programming

Programming, Snippets

Spiking Performance Evaluation with EWMA

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.

Posted on 27. June 201927. June 2019
Programming, Tutorials

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

Posted on 11. November 201811. November 2018
Programming, Snippets

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()

Posted on 17. March 20161. October 2018
Programming, Tutorials

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

Posted on 15. January 201627. September 2017
Android, Programming, Software-Showcase

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

Posted on 1. December 20151. October 2018
Programming, Snippets

[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.

Posted on 15. August 20151. October 2018
Programming, Snippets

[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

Posted on 3. May 201527. September 2017
Internet and Security, Programming, Snippets

[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

Posted on 13. March 201513. March 2015
Programming, Tutorials

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

Posted on 25. February 2015
Programming, Tutorials

[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

Posted on 26. September 2014

Posts navigation

1 2

Categories

  • Android
  • Android Games
  • Announcements
  • FotD
  • Free 2 Play
  • Games
  • Games
  • Internet and Security
  • Miscellaneous
  • Overheard
  • Politics
  • Portfolio
  • Programming
  • Snippets
  • Software-Showcase
  • Tutorials
Copyright © 2025 codewing.de. | Privacy Policy
  • Twitter
  • Github