Skip to main content

Posts

My Toolkit

Every developer needs a nice set of tools to help him to be more productive and focused towards his work. It may not be very easy for everyone to find a good set of tools. In this post, I am listing the tools that I have used and which may be very useful for you. IDEs IDEs are one of the most important tools that every developer needs. Some of the awesome IDEs that I have used and would recommend you are- 1) Adobe Brackets Brackets is a very lightweight IDE with many extensions giving it superpowers. If you are working on a small scale project and need speed, then Brackets is for you. It has awesome support for HTML, CSS and JS including smart autocomplete suggestions. Support for more languages can be extended via numerous extensions. Smart live preview gives more to programmers as they can see the changes as they code. This IDE is absolutely free of cost and available for downloading at  http://brackets.io/  . 2) VS Code Visual Studio Code gives the power of Microsoft's Visual S
Recent posts

Playing with CSS Cards

New design trends are coming everyday. Card layout in CSS has been a very popular layout type in the recent times and many companies like Google are using card layout in their designs. We will try to create a card layout in this short tutorial. - Prerequisites : Basic knowledge of HTML and CSS. Flexbox will be our friend in layout. 1) Basic file structure - The basic project structure will go as below : Project Directory     |-index.html     |-style.css 2)Basic html - <!--index.html--> <!DOCTYPE html> <html> <head> <title>CSS Cards</title> <link rel="stylesheet" href="style.css"> <!--CSS link--> </head> <body> <div id="container"> <div class="card one"> Card 1 </div> <div class="card two"> Card 2 </div> <div class="card

A coin toss program in Python and JS

Today, we will increase our confidence in programming by making a coin toss program in two popular languages : Python and JavaScript. Starting from Python: Python is a very popular and readable language. Python developers have a large demand in the industry. So keeping this in mind, we will start with python. First of all, we will make an algorithm on which we will work. 1)Make two choices. 2)Have random computer input and human input. 3)Check if both inputs are same. 4)Print the result of the toss. These are the basic steps. We will add additional features afterwards. So let's go... 1)Importing packages First ly, we will import a package which will help us to generate random computer choice. import random 2)Creating choices For creating two choices to select, we will make a list as follows- options = ['heads', 'tails'] 3)Selection We can get user's choice using input() - userchoice = input("Enter your choice - heads/tails ->") For

Let's get Sassy.

Have you ever tried Sass in your StyleSheets? If not, then you will start using it from today. Sass is a CSS Preprocessor. Although, I am not going to explain what is Sass etc, but I am going to share some of the most useful features of Sass which I use a lot. So without wasting a single minute let's get started. 1)Variables: We would have used variables in programming languages like JavaScript, Python, C etc. But we can use variables in Sass also. Variables in Sass are mostly used to store colors, font size, etc. When we are dealing with many colors like #ffc000  or #ffff00  etc and our Sty leSheets become very large it becomes very difficult for us to remember each color's hex code and we mess up. We can overcome this problem by using variables. We can save #ffff00 as $yellow and use the color by the variable name wherever we want. You can see this in action in the below embed -  See the Pen Sass Variables by PraneetDixit ( @PraneetDixit ) on CodePen 2)Ne

My Journey in Coding

Hi, my name is Praneet Dixit and I am from Rajasthan, India. I love coding and worked on three websites till now. I am a front-end web developer and build sites with basic HTML, CSS and JavaScript. In this blog, I will provide my opinions on coding and what are the different factors that affect code. I will also try to provide short tutorials on suggestions given by my lovely audience in comments. I will also be giving updates on technology and many tools which can save your time and make you more productive. Your suggestions are always welcome to me and I will always try to implement them whereas possible. It's all till now, but I am leaving you with my websites to look around and also waiting for your kind suggestions. I will be back after some time with new updates and opinions. Till then, goodbye and Happy Coding! Day to Dayz Solutions Day to Dayz Solutions Pro

Popular posts from this blog

Playing with CSS Cards

New design trends are coming everyday. Card layout in CSS has been a very popular layout type in the recent times and many companies like Google are using card layout in their designs. We will try to create a card layout in this short tutorial. - Prerequisites : Basic knowledge of HTML and CSS. Flexbox will be our friend in layout. 1) Basic file structure - The basic project structure will go as below : Project Directory     |-index.html     |-style.css 2)Basic html - <!--index.html--> <!DOCTYPE html> <html> <head> <title>CSS Cards</title> <link rel="stylesheet" href="style.css"> <!--CSS link--> </head> <body> <div id="container"> <div class="card one"> Card 1 </div> <div class="card two"> Card 2 </div> <div class="card

My Toolkit

Every developer needs a nice set of tools to help him to be more productive and focused towards his work. It may not be very easy for everyone to find a good set of tools. In this post, I am listing the tools that I have used and which may be very useful for you. IDEs IDEs are one of the most important tools that every developer needs. Some of the awesome IDEs that I have used and would recommend you are- 1) Adobe Brackets Brackets is a very lightweight IDE with many extensions giving it superpowers. If you are working on a small scale project and need speed, then Brackets is for you. It has awesome support for HTML, CSS and JS including smart autocomplete suggestions. Support for more languages can be extended via numerous extensions. Smart live preview gives more to programmers as they can see the changes as they code. This IDE is absolutely free of cost and available for downloading at  http://brackets.io/  . 2) VS Code Visual Studio Code gives the power of Microsoft's Visual S

My Journey in Coding

Hi, my name is Praneet Dixit and I am from Rajasthan, India. I love coding and worked on three websites till now. I am a front-end web developer and build sites with basic HTML, CSS and JavaScript. In this blog, I will provide my opinions on coding and what are the different factors that affect code. I will also try to provide short tutorials on suggestions given by my lovely audience in comments. I will also be giving updates on technology and many tools which can save your time and make you more productive. Your suggestions are always welcome to me and I will always try to implement them whereas possible. It's all till now, but I am leaving you with my websites to look around and also waiting for your kind suggestions. I will be back after some time with new updates and opinions. Till then, goodbye and Happy Coding! Day to Dayz Solutions Day to Dayz Solutions Pro