Don't wanna be here? Send us removal request.
Text
How learning happens, and Evidence-Informed Learning Design - New knowledge acquired
When trying to master a new field it is difficult to find the right direction and resources from which to learn. I set out to learn more about the science of learning and teaching in order to create a tool (Naabu) for teachers and researchers. I read a few books [1]; dived into the scientific literature (e.g. Koedinger and Molenaar); and watched videos of online courses (Instructional Design…

View On WordPress
0 notes
Text
What can we learn from "Peak"? A book review
What can we learn from “Peak”? A book review
This post is aimed to learn lessons from the “Peak: Secrets from the New Science Of Expertise” by Anders Ericsson and Robert Pool that we can apply to improve an education tool that I am building for the last year. Building mental representations According to “Peak” the goal of deliberate practice is to build mental representations. The most skillful people in a domain are the ones with the…
View On WordPress
0 notes
Text
Remote development with Docker and Visual Studio Code in a breeze
Remote development with Docker and Visual Studio Code in a breeze
My old setup was a dual boot desktop with Ubuntu 20.04 and Windows 10. Ubuntu is mainly for the great support for development tools like Docker and I used it because my production systems run in Linux. As a gamer and hobby game developer, Windows is a must. Recently, I decided to work in a shared office space and bought a Macbook Air with the new M1 chip. Docker for Mac is supported and the…

View On WordPress
0 notes
Text
Maximize the number of people that are content
An article about morality: Maximize the number of people that are content
For some people, it is important to have an explicit moral compass and have a set of heuristics that can guide you through life. They want to do things that are good and that have meaning. Thinking is hard work and the need for each person to finds their own meaning in life is not practical and can lead to outcomes that are not morally optimal. I hope that publishing my moral compass and thought…

View On WordPress
0 notes
Text
Interreflections a movie review and my thoughts on Peter Joseph
Interreflections a movie review and my thoughts on Peter Joseph - Niels van der Molen #InterReflections #PeterJoseph #RevolutionNow
To review Interreflections we need to understand Peter Joseph. He is a filmmaker but also the creator of the zeitgeist movement.For better or worse, Peter has played a major influence on the way I look at society. In hindsight, Peter clearly followed the spirit of the times from being an early adopter of the most popular conspiracy theories to being an early critic of the current capitalistic…
View On WordPress
0 notes
Text
Uploading files using Node.js as an API Gateway to an external API using Svelte/Sapper
Blog article: uploading files using Node.js as an API Gateway to an external API using Svelte/Sapper - nielsvandermolen.com
Following the documentation of API Platform, we start with an API that accepts the multipart/form-data format.
curl -X POST "http://127.0.0.1:8001/api/media_objects" -H "accept: application/ld+json" -H "Content-Type: multipart/form-data" -F "[email protected];type=image/png"
We use Sapper (Node.js+Express) as an API gateway. First, we need to send a local file from Svelte to the Sapper server.…
View On WordPress
0 notes
Text
Thesis emotion detection Chapter 1. Introduction
Thesis emotion detection Chapter 1. Introduction
This research investigates the use of sentiment analysis technologies to extract affective states of users from text. A dataset of text annotated on affect by human raters was needed to test the affect detection algorithms. No such dataset was available, therefore data from the e-community Greenwire was annotated on affect which gave us insights into the agreement between human raters for affect…
View On WordPress
0 notes
Text
Publishing my thesis work - Emotion detection using sentiment analysis
Publishing my thesis work – Emotion detection using sentiment analysis
For my master thesis in “human media interaction” at the University of Twente, I worked on applying sentiment analysis technologies to emotion detection in online communities.
I am proud of this work which took 10 months of programming and writing and I felt it deserved to be digitalized from PDF to HTML. After graduating I also gave a lectureto other HMI students and there was some interest…
View On WordPress
0 notes
Text
Exploring reactivity in Svelte JS with real-world examples
Exploring reactivity in Svelte JS with real-world examples #svelte #sveltejs #reactivity
So, we all saw the presentation by Rich Harris, the creator of the Svelte Javascript compiler, and are excited about implementing spreadsheet reactivity in our projects. However, even though the concept is easy to grasp when looking at simple examples implementing reactivity is sometimes not obvious when working with real data.
In the last months, I have worked hard on Wisvidsan online math…
View On WordPress
0 notes
Text
How to get Davinci Resolve 16 to work in Linux Ubuntu 18.04
How to get Davinci Resolve 16 to work in Linux Ubuntu 18.04 ##davinciresolve #ubuntu
Davinci Resolve has official support for Linux since version 15. However, when trying to install it I ran into a few issues. I have an AMD video card so I can not give instructions for the NVIDIA drivers but the concepts are the same. I hope this article helps in fixing your issues to get Resolve running smoothly. Note, that there is always a risk when installing drivers. When you continue it is…
View On WordPress
0 notes
Text
Why can Andrew Yang win the 2020 presidency?
Why can Andrew Yang win the 2020 presidency? #AndrewYang #YangGang
Even though I do come from the Netherlands I am an enthusiastic follower of the presidential elections. Furthermore, when a tech-minded startup guy runs on the platform based on a universal basic income (Freedom dividend) policy it is difficult to not to watch every interview, debate, and rally he conducts.
I first became aware of Andrew Yang from an interview with Sam Harris(unfortunately…
View On WordPress
0 notes
Text
How to use external Javascript libraries (e.g. Stripe.js) in SvelteJS
How to use external Javascript libraries (e.g. #Stripe) in #SvelteJS
There are many javascript libraries that give a lot of functionality out of the box which we normally include with a http://âurlâ <form id="payment-form"> Name iDEAL Bank </div> <button>Submit Payment</button> <!-- Used to display form errors. --> </form>
It contains quite a bit of lines of Javascript code that…
View On WordPress
0 notes
Text
A good authentication example, Sapper sessions, Svelte Store
A good authentication example, #SapperJS sessions, #svelte #sveltejs Stores
For my new architecture with microservices and Svelte, a vital implementation detail is the authentication and authorization mechanisms. In the last article, there was an example of how to build the signup component and in this example, we take a look at sessions. The final result is basic account creation and authentication support with a JWT token for upstream services.
A quick glance at the…
View On WordPress
0 notes
Text
Signup Form with HTML5 Validation in Svelte
A Signup Form with HTML5 Validation example in #Svelte #Sapper #HTML
There is a learning curve associated with my transition from Drupal to a microservice architecture with the front-end application in Svelte / Sapper. This article explains shows some of the structure of Svelte components and explains some of the issues I ran into when using Svelte.
Finding my way around Svelte
The Svelte technology stack is new and changes frequently, this often included…
View On WordPress
0 notes
Text
How to implement custom pathfinding A* & CC in Unreal Engine 4
How to implement custom pathfinding A* & CC in Unreal Engine 4 #GameDev #IndieDev #UnrealEngine #MassMonsterMaze
In this article, we see how our team implemented pathfinding in the Unreal Engine 4 for the upcoming tower defense game MassMonsterMaze. Besides using the default navigation meshes of the Unreal engine we implemented an A* algorithm in blueprints and a connected components(island detection) algorithm in C++. The hope is that the article gives a headstart to other game developers trying to…
View On WordPress
0 notes
Text
My new web application architecture: A Svelte front-end using API Platform (micro)services
My new web application architecture: A #Svelte front-end using #ApiPlatform (micro)services
For a new project, I decided to upgrade my architecture. My previous architecture ran with single-instance SaaS build in Drupal. Meaning that every new customer would get its own Drupal installation with its own database. As I learn more about APIs with by building services with API Platform the advantages of a big monolithic application like Drupal is diminishing. Currently, I developed the…
View On WordPress
0 notes
Text
A co-op tower defense game on the Unreal Engine - intro
A co-op tower defense game on the Unreal Engine – intro

As a life long video game enthusiast me and a friend decided to build a tower defense game together. I have some previous experience in an internship building games for the Nintendo DS and he (Sander Vereecken) is an environment artist involved in level design for Killzone Shadow Fall, Horizon Zero Dawn and, Renegade-X. We want it to be a multiplayer game that is fun to play at a LAN-party, the…
View On WordPress
0 notes