
ghost
pebble blog-> ghost cms
How to migrate from pebble-blog to ghost-cms
ghost
How to migrate from pebble-blog to ghost-cms
eclipse
We are using an Eclipse xText based Editor to generate some code in our projects but for some reason eclipse is generating .gitignore files for generated code by default. I understand the idea behind it that generated should not be part of version control but instead generated locally but in
linux
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 (win-host <-> win-client) makes quite a
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: ... apache2 3085 www-data 4u IPv6 42617 0t0
If you want to put additional data to your exectuable when 'make install' is called: install(FILES ${CMAKE_BINARY_DIR}/bin/CoreData.pak DESTINATION bin) # also multiple files are alllowed: install(FILES ${CMAKE_BINARY_DIR}/bin/CoreData.pak ${CMAKE_BINARY_DIR}/bin/Data.pak ${CMAKE_BINARY_DIR}/bin/
urnenfeld from the urho3d-forums has created a setup to create a complete linux distro for something like an urho3d-console called urhobox aka the fin,... The one he created is for the rpi0 and I try to create an rpi3 setup. All of this works with a project called yocto. It
java
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(..) logging. And everytime at a late time when it comes to deployment you realize (again) that syso-logging is not optimal. Switching to
database
If you want to override data you defined in your java-application's jpa/hibernate persistence.xml file you can pass a Map<String,Object> to the persistence-api when creating the entityManagerFactory (in this case using an environment-variable to set the connection url) Map<String, Object>
android
Intro: Still working on 'bringing back Wood Games 3D' which have a rest-server in the background that handles leaderboards and some competition (the daily world championship). On android I was relying (in 2010/11) on scoreloop-service that handled this for me (but got taken down sometime). I later
android
As I'm trying to revive "Wood Games 3D" I obviously need to debug at some point on the device. But how to build it at all? Here the step I took: 1. Install eclipse photon (newer versions might not work with the ADT-plugin) 2. Go to
linux
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
docker
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: --default-authentication-plugin=mysql_native_password restart: always volumes: - ./data:/var/lib/mysql ports: - 3306:3306