Knowledge in Programming

Android studio first app for beginners

Android studio first app for beginners available below with step by step explanation provided. Learn and understand better with the notes provided. Also, clear all your doubts by referring to the notes attatched below.

create a rounded corners Button

The topic discussed in the attatchments below is of the course computer science and subject programming. The content in the documents below comprises of the topic How to create a rounded corners Button in Android Studio.

Parse CSV file in Android studio

IT HAS VARIOUS STEPS TO BE FOLLOWED TO PARSE CSV OR MICROSOFT FILE IN ANDROID STUDIO WITH EXAMPLE. THE CLIP ALSO HAS A MAIN ACTIVITY AND A SAMPLE FOR THE SAME WHICH MAKES IT EASIER TO UNDERSTAND HOW THE STEPS ARE TO BE FOLLOWED AND A SAMPLE OF THE SAME IS ALSO GIVEN.

Read Existing SQLite Database in android studio

The document attatched below helps and supports you read Existing SQLite Database in Android Studio App. It happens to have certain relevant information that can be used for understanding and work purpose. The notes are for the course of computer science and subject is of programming.

Async and Await in Node.js

While writing your node js code you might encounter with problems of callback hell where multiple callbacks/ async function are chained together to do a particular task. The more functions it has more complicated it gets. Async and Awat is a life saver, it allows you to write async code synchronously. It is built on promises and behaves like sync code. Promises are a compelling alternative to callbacks when dealing with asynchronous code. Unfortunately, promises can be confusing and perhaps you’ve written them off. However, significant work has been done to bring out the essential beauty of promises in a way that is interoperable and verifiable. See this in action in this online video tutorial on youtube. https://goo.gl/HxxRRP

C++ complete

from basics to advanced programming in c++, collection of notes to help you understand the coding better.

All about NGINX

Nginx is a web server which can also be used as a reverse proxy, load balancer and HTTP cache. learn from basics to advanced level.

Teach yourself C++ in 21 days

Day to day learning of c++, want to excel in c++, learn everything in just 21 days. 21 lectures assigned to each day.

Arduino notes and tutorials

Arduino is an open source computer hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices and interactive objects that can sense and control objects in the physical world.

ASP.net MVC

The ASP.NET MVC is a web application framework developed by Microsoft, which implements the model–view–controller pattern. It is open-source software, apart from the ASP.NET Web Forms component which is proprietary.

ASP.net tutorials

getting started with asp.net. Basics of asp.net.

Poll App in Django

I learnt python in the first two weeks First week - basics( if else, loop etc) Second week - moderate ( dbms queries and servlets) After learning and getting a good grasp over the language, I moved on to django In django I learnt how to create a webapp. I used the help from the official Django documentation. This helped me create a polling app With different web pages, interacting dynamically with each other. The results to poll were stored in the back end.