Category: General

How to create a countdown clock?

I was looking at a countdown clock of an email of a renowned company and tracked back the source. I came across the website https://countingdownto.com/create-countdown Some of the good things I found: Creating a title Changing size and various parameters Smooth animation Embed or Share Email Countdown Feel free to check the site and let me

Android USB Driver for Windows for Samsung

If you are an android developer and using a Samsung phone, you might face a problem to connect to your phone using USB from Android Studio. It will be helpful if you download the below driver and install it on your system. https://developer.samsung.com/galaxy/others/android-usb-driver-for-windows If you are still facing problem, write in the comments.

How to read JSON data and display in HTML

<!DOCTYPE html> <html> <body> <script> var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { // document.write(this.responseText+”<hr>”); var myObj = JSON.parse(this.responseText); for(var i = 0 ; i < myObj.score.length ; i++) { document.write(myObj.score[i].user_name + ” ” + myObj.score[i].total_score + “<br />”); } } }; xmlhttp.open(“GET”, “all-time-json.php”, true);

Discount Calculator App for Android

Do you want a quick solution to know the final price after a discount? Do you want to see the change in price by changing the discount percentage or fixed discount price? This app will help you achieve your goal and help you to calculate discount in a fraction of a second. Download now: https://play.google.com/store/apps/details?id=com.zakasoft.discountcalculator

How to create a text with a gradient background in html using a div?

We all love those gradients when we want to show a text in the background. With the below simple css snippet, you can create a simple text with a gradient background.   <!DOCTYPE html> <html lang="en"> <head> <title>Hell</title> <style> .gradientbackground { color: white; font-size: 40px; font-family: Arial; text-align: center; background: #21314b; background: linear-gradient(to right, #21314b