Software Engineering Idea behind HTTPS HTTPS is a protocol which is an improvement over HTTP and is the shortform of HyperText Transfer Protocol Secure. In this article, we will look at the short comings of HTTP which lead to the development of HTTPS and some basic ideas behind HTTPS.
Software Engineering Get details of a place and nearby places using Geo API of Twitter In this article, we will use the Geo API of Twitter API and use it to get details of a place and find out nearby places (co-ordinates) to it. This is interesting as one may think that Twitter is all about Tweets but classifying data across Geography is a major feature of Twitter.
Software Engineering HTML <span> tag explained Span tag in HTML is an inline element which can be used to apply special styling (using CSS) or behaviour (using JavaScript) to a specific component in a div, p and other tags.
Software Engineering Basics of Web-VR using A-frame A-frame is an open-source web framework for building Virtual Reality(VR) applications. It is used for a well-known javascript library known as Three.js. It allows developers to create 3D and virtual reality experiences using HTML.
Software Engineering A Deeper Look at HTTP Requests In this article, we looked in how HTTP requests like GET, PUT and others are formed, how websites interact with them and the response send back.
Software Engineering XMLHttpRequest to make HTTP requests XMLHttpRequest can be defined as an API in the form of an object which is used to transfer data between the web browser and the web server. It gives us the ability to update parts of a web page without reloading the whole page
Software Engineering Post a tweet with video using Twitter API We demonstrated how you can tweet a video along with text and subtitles using the Twitter API using Requests library (native) for HTTP calls. It uses the Media Upload API of Twitter to accomplish this.
Software Engineering Post a tweet with image using Twitter API In this article, we will demonstrate how you can tweet an image using the Twitter API using two approaches: Tweepy (simple) and Requests library (native). It uses the media upload API of Twitter to accomplish this.
Software Engineering HEAD Tag in HTML The tag in HTML contains all the header elements. The tag is written after the tag and before the tag. Any text written under the tag is not shown on the webpage.
Software Engineering Post a tweet using Twitter API In this article, we have explored how to post a text as a tweet in Twitter using Twitter API in Python. We have used to approaches: using tweepy and requests library
Software Engineering Audio Fingerprinting using the AudioContext API Audio fingerprinting takes advantage of device performance specs to build up an identifying fingerprint of a user. It uses the AudioContext API for this
Software Engineering Canvas Fingerprinting Canvas Fingerprinting is the most commonly used method of fingerprinting. It's one of the techniques that identify users based on device performance.
Software Engineering Methods to track users on the Web In this article, we have discussed some of the most powerful methods used to track users on the web which includes caching, cookies, fingerprinting and more
Software Engineering Working with Navigator property of DOM In this article, we will look into navigator property of window object of a web document and use it to get information about the browser and load different code depending on browser.
Software Engineering Uploading a File to server in Node.JS In this article, we will learn how to upload any file from the client side to a folder in the server by buidling a Node.js app.
Software Engineering Fullscreen API in JavaScript The full screen API allows an element on a page to be viewed in full screen. It makes it convenient for users to view web content in full pixel width and height.
Software Engineering A Simple Introduction to Fetch API The fetch() API in JavaScript allows programmers to retrieve data from a certain endpoint following which the data can be used in any way
Software Engineering Introduction to Mongoose and how to work with MongoDb with Mongoose In this article, we will explore Mongoose and get an idea of using it with MongoDB through a demo. We will learn how to create, update, delete and read documents in MongoDB.
Software Engineering Let us set up a basic Laravel App In this article, we go through the process of setting up a basic Laravel application and serve it at localhost
Software Engineering Introduction to MongoDb In this article, we will understand the basic concepts in MongoDB and go through an example of creating and updating a document as well.
Software Engineering Learn about sending Push notification using Push API The Push API gives web applications the ability to receive messages pushed to them from a server on a user agent
Software Engineering Learn to work with files on the Web using File API With HTML5 file API it is possible for JavaScript to process a file locally, e.g. compress, encode or encrypt it
Software Engineering Use Media queries to fix rendering on mobile devices In this article we will be using media queries to implement responsive design. It presents the same content differently on different size screens
Software Engineering Using MathML (math tag) in HTML In this article, we will explore MathML and see how we can use it to render Mathematical equations on our HTML pages.
Software Engineering Introduction to use Sass Sass is a CSS preprocessor that helps developers to write cleaner and easier to understand CSS code. In this article, we introduce Sass with an example