Fixing GradleVersion for class: JetGradlePlugin
Recently I came across this message while opening an android project. After some searches I found that this was being caused by an incompatible gradle version. So, here's what I…
Recently I came across this message while opening an android project. After some searches I found that this was being caused by an incompatible gradle version. So, here's what I…
This is something that affects many iOS developers and it's caused by missing device support files for your iOS device, mostly because you updated your phone to a more iOS recent…
If you are reading this article that's because you want a quick answer. Let's go straight to it. How much as Kw/h costs in your region? Power is priced in…
Html: <input type="file" id="file" multiple> <div id="container"></div> JS: var app = {}; var container = app.container = document.getElementById('container'); var f = app.file = document.getElementById('file'); // jQuery alternative: $('#file')[0].files[0]; app.file.addEventListener('change', function(){…
I recently came across and article by Ludovic Rousseau where he explains how he managed intercept USB traffic using Wireshark. Since he was using Linux "usbmon" in his example and I'm…
Hello there, Probably you just acquired a Smart Card Reader and now you are looking for to handle the communication. Smart Card Reader requires us to implement the CCID protocol. There's an…
JIRA is quiet complex but it's an amazing tool. Recently, a requirement come up at my company. This requirements consists of making two custom fields that are visible only for…
(This is a work in progress) Are you wondering how to could you improve your projects user experience? Here's a list of libraries that will probably help you having some…
(Work in progress) Assuming you have your project created and you are ready to publish it. You have npm installed, a package.json, git and all those things ready. Here's what…
Basic // Initialises a repo on current directory $ git init // Lists modifications git status // Stage modifications $ git add {file1} {file2} {filex} $ git add . or…