Thomas Trocha
Recent Blog Entries ![]() |
||
---|---|---|
1
|
Working via remote
MARKDOWN My appartement is under the roof and on really hot days I want to flee somewhere cold with access to my main-computer. Network access via dlan (with about 5-15MBit/s) As we are using Unity3D/Windows in my day-job,...using Remote Desktop ... |
Aug 2, 2020 |
2
|
Check what local application is blocking your tcp/ip port
MARKDOWN If you have the problem that starting a server (e.g. tomcat/8080) leads to an error because the port is already blocked. You can use this call: ``` sudo lsof -i -P -n | grep LISTEN ``` This will result into something like following output: ``` ... |
Jun 5, 2020 |
3
|
cmake: install files/directories
MARKDOWN If you want to put additional data to your exectuable when **'make install'** is called: ``` install(FILES ${CMAKE_BINARY_DIR}/... |
Jun 1, 2020 |
4
|
yocto-project: building an complete linux distribution (for urho3d)
MARKDOWN [urnenfeld from the urho3d-forums](https... |
May 30, 2020 |
5
|
Tomcat Logging
MARKDOWN I guess this is something pretty obvious for java users (except me). I have to admit that in development I did tend to use a System.out.println(.... |
May 29, 2020 |
6
|
Hibernate: override data from persistence.xml
MARKDOWN If you want to override data you defined in your java-application's jpa/hibernate **persistence.xml** file you can pass a Map to the persistence-api when creating the entityManagerFactory (in this case using an environment-variable to set the ... |
May 29, 2020 |
7
|
Android SSL-Connection <-> Tomcat Server with self-signed certificate
MARKDOWN Intro: *Still working on ['bringing back Wood Games 3D'](http://thomas.t... |
May 17, 2020 |
8
|
Working with old (Android 4) Eclipse-ADT based Android-Projects
MARKDOWN As I'm trying to [revive "Wood Games 3D"](http://thomas.t... |
May 16, 2020 |
9
|
old-school patching
MARKDOWN I actually can't remember when it was the last time I 'manually' patched a file. But it was quite common in the pre git-days. A patch basically is the same as a git-commit, telling the code where to insert what and where to remove what... *As ... |
May 15, 2020 |
10
|
Docker: mysql5
MARKDOWN In order to create a local mysql5 server with adminer web-addon: 1) Create a file mysql.yaml: ``` # Use root/example as user/password credentials version: '3' services: db: image: mysql:5 command: ... |
May 15, 2020 |