Entries by Génesis

Create an universal React app

First of all read the whole post, secondly install Create React App globally and create an app using create-react-app my-app, then before any coding add packages to your app. As soon as you finish all package installations you can start coding using my basics code snippets if you need to 🙂 Add main React package to […]

We are hiring

We are hiring, looking for a Junior Full-Stack Developer in Málaga! Someone who loves open/free technologies/knowledge, willing to learn new things. In a first stage, tasks about Web/Phone apps with Javascript and Desktop apps with Qt in C++ The employee will be promoted to Senior Full-Stack Developer and she/he will be able to work with […]

Create a multilingual React website

First of all create a react app ready to go create-react-app MY-WEBSITE This will create a react app with everything configured. npm start Add i18next package npm i -S i18next This will let us do our website/app internationalization. Set up your I18next file Create a i18n.js file in the src folder with this code: import i18n […]

Dealing with keystores and passwords when building for Android with Cordova

Which is the easiest way of builing apps in Android with Cordova? Use a build.json file { “android”: { “release”: { “keystore”: “./your_keystore_file”, “storePassword”: “your_keystore_password”, “alias”: “your_alias_name”, “password” : “your_alias_password” } } } And type in your console: cordova build android –release If you already have a keystore and don’t know what alias to use, […]

Scroll into view

I have created n boxes (divs) with random colors to select one of them randomly and make it visible on the viewport. Every time you rerun the code you will see in your screen the selected box regardless of its position.