Since May 2024 Claude from Anthropic is available in Europe. I’m not sure how well known this is, in any case I want to invite you to give Claude a spin, specifically as the latest model is said to be superior in some tasks (such as coding) compared to GPT-4 according to some articles I… Continue reading AI assisted coding with Claude 3.5 Sonnet
Category: JavaScript
The Future is Here: Exploring the Possibilities of Doing Business with AI (Part 13) – More SEO
Unfortunately, we are still not able to show ads on our website. Our assumption is, that we first need to get the website properly indexed again by Google. In the meantime, we have created a few new coloring pages, especially the mandala style looks pretty cool. Thank you for the tipp with the mandalas, you… Continue reading The Future is Here: Exploring the Possibilities of Doing Business with AI (Part 13) – More SEO
The Future is Here: Exploring the Possibilities of Doing Business with AI (Part 11) – Adding Ads & Refactoring
Welcome back to our micro business experiment, where we are using a lot of AI to help us coding, generate content and more! Ads First of all an update on the ads. The review process took longer than I would have expected and the result is negative. Unfortunately, there isn’t much information on what is… Continue reading The Future is Here: Exploring the Possibilities of Doing Business with AI (Part 11) – Adding Ads & Refactoring
The Future is Here: Exploring the Possibilities of Doing Business with AI (Part 9)
Today, we assessed the current engagement with our website, and it comes as no surprise that we don’t have a significant amount of traffic yet. We will need to employ more SEO techniques. However, one issue we noticed is the lack of an overview of image downloads. Currently, our website only provides a direct download… Continue reading The Future is Here: Exploring the Possibilities of Doing Business with AI (Part 9)
Typolino – Adding Features (one year later)
Coming back to a side project after a year can be pretty painful. I actually wanted to see how it goes with Typolino. Is the CI/CD pipeline still working? Can I easily upgrade my dependencies and add new features? A product should grow with your clients and Typolino is no different. My kids get older… Continue reading Typolino – Adding Features (one year later)
Develop a game with p5.js (part 3)
In this third and last part of the series on how to develop a game with p5.js we will implement the actual game logic: eat enemies, get bigger and faster and game over handling. You will find the full code at the end of the article and you can play the game here. New state… Continue reading Develop a game with p5.js (part 3)
Develop a game with p5.js (part 2)
Welcome back to the second part on how to develop a game with p5.js. Today we are going to add some interactions to our game. Wouldn’t be a real game if we couldn’t move around something, right? Now that we already have setup most variables that we need and the scene is set, the rest… Continue reading Develop a game with p5.js (part 2)
Develop a game with p5.js (part 1)
p5.js is a great JavaScript library to create little games that run directly in your browser. They even offer an online editor, so you can really just get started. Find out more about p5.js here: https://p5js.org/Or directly access the online editor: https://editor.p5js.org/ In this article I will show you a game we implemented as part… Continue reading Develop a game with p5.js (part 1)
JavaScript und Physik
Gerade kürzlich ist mir die Formelsammlung der Physik in die Hände gefallen und ich hatte irgendwie Lust, ein Pendel zu programmieren. Ich habe früher bereits einen Artikel geschrieben, wie man mit JavaScript physikalische “Experimente” durchführen kann und bin nach wie vor der Überzeugung, dass dies eine ideale Tätigkeit ist, um das Programmieren zu erlernen. Man braucht… Continue reading JavaScript und Physik
AngularJS allow invalid values to be set on the model
The default behavior of AngularJS when you have a validator on an input field is to set the model to undefined if the validation failed. This might be convenient for most cases, but sometimes you want to have the invalid value in your model. It is really easy to tell Angular to allow invalid values on your… Continue reading AngularJS allow invalid values to be set on the model