
Around the holidays I created an image gallery with NextJS. It turned out I had to handle a lot of images (almost 1000!). I wanted to avoid any existing bloated image gallery with a lot of configuration options. A simple…

Last weekend I took the opportunity to visit the TYPO3 Camp Mallorca 2015. Since I moved to Palma just two months ago, I didn’t hestitate to register for the event. It was packed with more than 100 TYPO3 enthusiasts. Beside…

I have been developing a TYPO3 Flow application for some time now. The app uses widgets for displaying financial data, e.g. stock prices and currency rates. I was curious about how to move my existing package to Neos and of…

In March I had the chance to join a hackathon at Level39, Canary Wharf in London. My friend and I have been invited by Simon Redfern of the OpenBankProject. They already had participated in the FinTech Innovation Lab program there….
Logging in FLOW3 can be easily done by following the Aspect Oriented Programming (AOP) principle. You do not want to code the actual calls to your logging service into each of your functions which you want to log. In this…
When it comes to performance optimizing, caching is quite an effective way to boost the speed of your site. In this example we want to cache tweets from Twitter. We do not want to fetch data from Twitter every time…

I had the opportunity to attend the 1st Swiss New Finance Conference at the UniS in Bern, Switzerland. It is amazing to see the spirit in the start-up scene around New Finance, Next Finance or Finance 2.0. Crowdfunding and peer-to-peer…
Think about two objects. One of them we want to call Income and the other one Spending. Both of them share the very same properties: They have an amount They are based on a currency Probably they also have a…
First we want to initialize a new repository on our local machine and then commit the source.
1 2 3 4 5 |
$ git init $ git add . $ git commit -m 'Initial commit of the blog.' [master (root-commit) 87f3b95] Initial commit of the blog. 1034 files changed, 262684 insertions(+), 0 deletions(-) |
After that we create a so called bare repository to be able to copy it to our server.
1 2 3 4 |
$ cd .. $ git clone blog blog.git --bare Cloning into bare repository blog.git... done. |
Let’s make a…