
WELCOME TO SIMPLEÂ DEV
Complex is a bunch of simple stuff together
On PowerApps, how to fill a Combo box with a default value?
This is a quick, but tricky one. Suppose you have a Vertical Gallery to allows users to edit data from a table in the app's database. The...
How to include total in a bar chart?
Let's imagine you have a bar chart with the % of people that likes smashed potatoes by state. Something like this (fake data, off...
How can I create a measure that uses another based on the value selected of a field parameter?
So, here is the situation: a report with a bunch of visuals that uses a field parameter (let's call it FieldParameter), which groups two...
How to write a DAX measure equivalent to SQL select.. in?
I've worked with SQL for over twenty years, so it comes quite naturally to me. Sometimes it's easier to think in terms of SQL rather than...
How to update a Power BI published report using data from a local (on-premisses) Postgres database
So imagine you have, as a datasource, a Postgres database installed in a local server. You have a report that is published in Power BI...
How to create a simple UI project with login, session management and protected resources
Full code: https://github.com/aleksvp2017/login Using: Vue; Vuetify Vue-Router Vuex I'm assuming you do have node installed (if you...
How to create a simple UI project with routes using Vue / Vuetify / Vue-Router
Full code: https://github.com/aleksvp2017/simpleui Using: Vue; Vuetify Vue-Router I'm assuming you do have node installed (if you don't,...
How to protect Node server endpoints, checking for JSON Web Tokens
Full code: https://github.com/aleksvp2017/secureroutes Using: Node.js; Express; express-bearer-token; jsonwebtoken I'm assuming that you...
How to set a simple HTTP server with routes using Node and Express
Full code: https://github.com/aleksvp2017/simpleserver Using: Node.js; Express. Assuming that you have Node instaled (if you don't, you...
How to send a whatsapp message using Node.js and Twilio API
Full code: https://github.com/aleksvp2017/nodewhatsapp Using: Node.js; Twilio; Visual Studio Code. First things first. There are two ways...
How to communicate between components in a Vuetify app
Full code: https://github.com/aleksvp2017/infoflow Using: Vue/Vuetify: to construct de UI; Vuex: to share data between components; Visual...
How to debug webpack-dev-server UI app with VS Code and Chrome
Full code: https://github.com/aleksvp2017/debug Using: Vue: to construct de UI; Visual Studio Code: to write and debug the code; Chrome:...
How to make a heatmap using Vue/Vuetify and chroma-js
Full code: https://github.com/aleksvp2017/heatmap.git Using: Vue / Vuetify: to construct de UI; Scalable Vector Graphics (SGV) html-tag...
How to export a spreadsheet from a Vuetify data table using SheetJS js-xlsx module
Full code: https://github.com/aleksvp2017/exportspreadsheet.git Using: Vue / Vuetify: to construct de UI; SheetJS js-xlsx: generate xlsx...
How to process a spreadsheet using Node.js and SheetJS js-xlsx module
Full code: https://github.com/aleksvp2017/processspreadsheet Using: Node.js: the runtime environment; SheetJS js-xlsx: read and parse...
How to upload a file in a frontend Vue/Vuetify and receive it on Node.Js backend
First, the backend part. Full code: https://github.com/aleksvp2017/uploadfile Using: Node.js: the runtime environment; Express: HTTP...