Nice to meet you!
We're a Dutch software company that builds apps, websites and cloud platforms. The main focus of our products is simplicity and friendliness, although we know everything about complex business logic, working with APIs, SaaS platforms and integration with information systems.
Over the years we've worked on a lot of different projects. Live streaming, tutorial and video platforms, project management software and automation of business processes including ordering products at third parties, fully automated management of hardware, invoicing and payment processing.
Open source
We are big fans of open source software, in fact we use it a lot in our projects. Some of our favorites are Laravel, Vue.js, Tailwind CSS and Node.js. Whenever we see an opportunity to open source a project where others could benefit from, we do it! Over time we've made a few package ourselves and these are some of them:
Laravel FFMpeg
We use this package ourselves in three different production environments. It provides an integration with FFMpeg for Laravel, including support for filters, HLS and other advanced features. It integrates with Laravel's Filesystem, configuration system and logging handling. As of March 2019, we've already converted more than 8000 videos with it!
Code example
FFMpeg::fromDisk('videos')
->open('steve_howe.mp4')
->addFilter(function ($filters) {
$filters->resize(new Dimension(640, 480));
})
->export()
->toDisk('converted_videos')
->inFormat(new X264)
->save('small_steve.mkv');
View project on GitHub
Laravel API Health
Want to keep an eye on third party services your app uses? This is a package to monitor your own services and those from third parties. It can send a notification if a service goes down (or up!) and supports scheduling. You can create checkers for whatever API or service you want to monitor but it also comes with some built-in checkers so you can fire up some checkers really quickly.
View project on GitHub
Laravel Single Session
This package prevents a user from being logged in more than once. It destroys the previous session when a User logs in and thereby allowing only one session per user. End result: deny multiple people from logging in with the same account (some users of this package use it in SaaS projects like Laravel Spark).
View project on GitHub