Author: FastBikri Team

Robi Single Digit USSD Code

Robi Single Digit USSD Codes: Single Digit USSD is a breakthrough by which you can easily able the most widely used services of Robi. So let’s know which USSD number is applicable for which service. Single Digit USSD Service Names *0# Minutes Bundle *1# Balance Check / Due bill check *2# Show own mobile number

CSS Button | Hover Animation

<style> @media (max-width: 480px) .entry-footer a { font-size: 10px; } body, input, button, select, textarea { font-family: "Lato",sans-serif; } @media (max-width: 767px) .entry-footer a { font-size: 11px; } body { font-style: normal; font-weight: 400; /* color: hsl(0,0%,25%); */ background-color: #f3f3f3; } .entry-footer a:hover { border-color: rgba(0,0,0,0.25); background-color: #fff; } .entry-footer a:active { border-color: rgba(0,0,0,0.25); background-color:

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);