Home / marcinkawa - Aeguana - Make It Possible - Blog
News
26th December 2015 | By:

Manipulating the browser history [HTML5]

Since the introduction of HTML5 it’s been possible to manage the browser history using the history and history.pushState API. It allows us to change the URL in the browser without the page refreshing. There are a lot of frameworks that already support… Continue

News
12th December 2015 | By:

Writing a GUI using QML for a C++ project

As I mentioned before, QML provides a brand new approach to developing GUI applications for a range of different devices. This makes it really easy to write C++ apps for multiple operating systems. We can develop the same QML and QtQuick application… Continue

News
12th December 2015 | By:

How to export data as a CSV – Django model

I recently faced a new challenge where I had to generate large CSV files from the backend. The whole process can take a while and if done improperly can cause the server to stop responding or even crash in worst-case scenarios. Let’s… Continue

News
1st December 2015 | By:

Capture/manipulate video in canvas [HTML5]

With HTML5 it is now possible to directly capture video from the camera and stream it to the element. It is also possible to mirror the video to a element, you can do some really cool stuff like apply filters, take pictures… Continue

News
15th October 2015 | By:

How to run a single app instance in QT

Sometimes we don’t want to allow users to run multiple instances of the app at once. We might want to do it, to prevent memory leak, files corruption or we decided there is no practical need to run two instances… Continue

News
28th August 2015 | By:

Efficient SQL queries with Django

Creating/fetching/saving/deleting data from database is one of the most common tasks for the the web apps. Most of the time the web app is based on database and can not work without it. Therefore developers need to remember how important… Continue

News
18th August 2015 | By:

Implement cookies disclaimer in Javascript

If you don’t know exactly what cookies are please take a look in Introduction to cookies in our blog. The full example can be found here on JsFiddle. Please note, when you dismiss the notification it won’t be visible until… Continue

News
6th August 2015 | By:

Mac Installer adding app to the dock

Installing applications on Mac is a very simple task, all you have to do is drag and drop your application in a special folder named “Applications”, this tutorial will help you to create an installer for your application and the… Continue