Corporates invite startups during Launchpad Meetups On December 1st, the second edition of Launchpad Meetups will take place, hosted by Amsterdam’s leading corporates. Corporates like KLM, Oracle, Achmea, KPMG, VIVAT verzekeringen and USGPeople invite ...
StexFibers: making clothes from hemp The Arnhem region is a fertile ground for bio-based and cleantech startups, such as StexFibers. The young company, part of Greenhouse incubator, uses a technique to soften hemp fibres to fabricate tex...
How To Use Rsync to Sync Local and Remote Directories on a VPS Introduction Rsync , which stands for “remote sync”, is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions of files...
Netherlands scores as one of Europe’s top scale-up nations Every startup wants to be a scale-up someday. According to research done by the Rotterdam School of Management, Erasmus University (RSM) and the Erasmus Centre for Entrepreneurship (ECE), the path to ...
Hardening Ubuntu 14.04 Server Hardening is the process of reducing vulnerabilities and securing a system from possible attack points. Reducing vulnerabilities includes the removal of unnecessary services, usernames and logins and ...
Odoo DarkroomJS Widget This module provides a DarkroomJS web widget for use with images fields. This widget will allow you to perform the following actions on images: Zoom Rotate Crop Step back in history client-side (befor...
Automatically start your LXC containers Automatically start your containers To automatically start your containers at boot, all you have to do is to put symlinks to your containers config files in the /etc/lxc/auto/ directory. For example f...
Odoo install 8.0 / 9.0 / 10.0 wget -O – https://nightly.odoo.com/odoo.key | apt-key add – echo “deb http://nightly.odoo.com/8.0/nightly/deb/ ./” >> /etc/apt/sources.list apt-get update && apt-get install odoo wget -O – https://nig...
How can I recursively delete all files of a specific extension in the current directory? You don’t even need to use rm in this case if you are afraid. Use find : find . -name "*.bak" -type f -delete But use it with precaution. Run first: find . -name "*.bak" -type f to see exactly which f...
“Hardware is hard!” development lessons from Gotoky Gotoky is an international startup based in Slovenia and Netherlands focused on hardware. It is developing an off-grid communication device, an advanced “walkie-talkie” for active outdoor people. The ...
WP-CLI Installing (And Upgrading) First, download wp-cli.phar using wget or curl . For example: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar Then, check if it works: php ...