Posts

Make a Simple Operating System

Image
Make a Simple Operating System Ever wanted to make an Operating System? Ever waned to know how command line operating systems work? Everything's here! So we'll make a basic Operating System in C#, don't worry, if you even know some basics of c++ or java, you'll understand the code :D By end of this tutorial, you'll be able to make your cool operating system! So lets begin with some ind Step 1: The Concept So, how actually a OS works? I'll explain from the level of a electric circuit. Most of you know logic gates in electric circuits. when many logic gates are connected, i.e. billions of transistors are connected together inside a chip, they can store 0s and 1s. Each gate could store either 0 or 1. Then the connected transistor forms a Micro-Controller or a Micro-Processor. Here we are going to program on the micro-processor which is in your computer. Did you know that your computer can also run with a operating system!? Wonder h...

5 Reasons Why Linux Mint is Better Than Ubuntu

Image
5 Reasons Why Linux Mint is Better Than Ubuntu Which one is better, Linux Mint or Ubuntu? This question has been there ever since Linux Mint came in the picture, and this article does not answer to this question. Well, not entirely. So, what is this about then? I have been an Ubuntu user for a long time. I stray to other Linux distributions but I keep coming back to Ubuntu, sooner or later. I occasionally try my hands on Linux Mint also, mostly for the purpose of writing articles about it. I must say using Linux Mint is quite a pleasant experience. As a die-hard Ubuntu fan, I come back from Mint to Ubuntu eventually but not before noticing that Linux Mint is better than Ubuntu for a beginner. It’s because there are a few things that Linux Mint handles better than Ubuntu, by default. And this ‘by default’ matters when we are talking about a Linux beginner. Because an experienced Linux user will find his/her way. It’s the beginners who struggle with even a seemingly obvious thing. Co...

15 Medical Robots That Are Changing the World

Image
15 Medical Robots That Are Changing the World Advancements in medical technology are creating a world where robots may play a bigger part in healing the sick than doctors, here are the top fifteen advancements in medical robotics that are going to change your life, and one day, just maybe… put your doctor out of a job!  1. daVinci We begin with perhaps the most ubiquitous of medical robots, and the standard for Robot Assisted Surgery. This is a machine that blurs the line between “robot” and “medical tool” since the device is always under the full control of the surgeon, but the advancements it has fostered are astounding.  Source: da Vinci Surgery/YouTube Using the daVinci system, operations can be done with just a few tiny incisions and with the utmost precision, which means less bleeding, faster healing, and a reduced risk of infection. And while daVinci has been around for almost eighteen years now, it has continued to get more and more advanced, but with big te...

How to Create a Credit Card UI using HTML and CSS3

Image
In this tutorial, we are going to  create a simple Credit Card Form using HTML and CSS3 . We’ll work with Google Fonts to use the custom font (Roboto) for this form. You are free to integrate this form into your website. Let’s get started. HTML Let’s create our HTML structure. We will create a form with the class “credit-form.” Then we will divide our form in two sections. The first section is the form header where will have our form title, and the second is the form body where will have all the form elements and buttons. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 < form class = "credit-card" >    < div class = "form-header" >      < h4 class = "title" >Credit car...