Snake Game in Python

Snake, is a Classic 2-D game which I attempt to code in Python using PyGame. But first a bit about the game! The Game Snake is the common name for a video game concept where the player maneuvers a line which grows in length, with the line itself being a primary obstacle. The concept originated in…

#CodingOf208 – Ends!

WOW!! Finally #CodingOf208 has come to an end! This is really exciting! Congratulations to all who joined me! #CodingOf208 was my New Year’s resolution, i.e., to code for 208 days in the year 2017 with skipping as less days as possible. I skipped around 10 days through this process because I had my exams in…

Music Player – #CodingOf208

This is exciting, I am just a couple of days away from completing my New Year’s resolution, #CodingOf208, congratulations to all how were also a part of this! So here I am ready with my last project under #CodingOf208, “Music Player”, Windows Application. Watch the Player working on YouTube : Music Player (Video) I started making this…

Weird Websites

Today internet is hosting more than a billion websites on almost any topic you interest. Taking from technology, gadgets, business, games, dating, lifestyle and a lot lot more! But in this topics which help people with increasing knowledge or helping them, there exists some websites over the internet which you can’t imagine why are they…

Blue Screen Of Death

Blue Screen of Death or BSoD or Stop Error are always an unwelcome guest. BSoDs occur when Windows encounter a critical error that it cannot recover from and it can no longer operate safely (or simply crashes) And if you have encountered it you would know how frustrating it can be, and if you haven’t,…

Art Of Debugging ! !

Debugging , Before I start, you might wanna give a look at this video. You must have got the feeling, well I know you already would have experienced it before, this must have refreshed those “magical time” when you find bugs! First some history, The terms “bug” and “debugging” are popularly attributed to Admiral Grace Hopper in the…

Edit Files Using C . . .

What’s going on guys ?? Here is a new topic , well you must have guessed I think, yeah File Handling! So can do we do with files using C? Well, there are a plenty of things you can do using file handling, which might make your project or game or stuff look cooler.. Like…

More on Pointers……

With continuity to pointers and as requested by Ms. Yashi Kesarwani through comments, let’s give a quick look on applications of pointers….. Pointers is used for different purposes. Pointer is low level construct in programming which is used to perform high level task. Passing parameters by Reference: Yes, I am talking about the swapping variables problem where…

Mandav.h – #CodingOf208

Here is mandav.h header file which contains 10 functions as per date.. The functions which are available are : square cube  greet  binary  octal  hex  bin2dec  oct2dec  in_string  in_int Let’s take a look at each function and how to use them! Square() :  To use this you need to directly declare a variable in which…

Pointers!!!

Hello guys! ready for some new topic? We have pointers on the table this time! Pointers are fundamental part of C. If you do not have command on pointers, then you are basically loosing all the power and control C gives through pointers! Pointers are another variable whose value is another variable’s address. Pointers can…