Thursday, November 3, 2016

Google Pixel (Quite Black, 128 GB)
Are you looking for buying a new phone? Sometimes we select a phone to buy and then come to know that the phone we were planning to purchase is not state of the art gadget considering our budget is high.Today we will talk about Google Pixel (Quite Black, 128 GB)The manufacturer has manufactured this phone keeping in mind all the aspects of customer satisfaction in mind.The all new phone comes in a beautifully designed box which contains aHandset, USB-C 18 W Adapter with USB-PD, USB-C to USB-C Cable, USB-C to USB Standard-A Plug Cable, SIM Tool, Headphones with Rubber Earbuds, OTG Dongle, Safety and Warranty Information, Quick Start Guide, Google Assistant Card, Google Social Promo CardTalking about the sim type of this phone its aSingle SimThe resolution of this phone is awesomely awesome with 1920 x 1080

Monday, October 31, 2016

Some important points about C++you might not know despite being a C++ Programmer!

However good programmer you might be, there are 90% chances that you don't know following things about C++
1. C++ follows Object oriented programming principles which can be explained by encapsulation, data hiding, polymorphism, abstraction and inheritance.

Wednesday, October 26, 2016

How to view all the values from a database in php and My Sql?

So you are having a Database and wants your users to view that data comfortably in a web browser.
In this post we will see how this is done along with an example.
Let us say that you have a database named "diwali" with a table which is also named "diwali" and you want to list all the fields in a suitable format in a web browser.


Let us say we have sno, name, email and phone no of a user stored in our database.
We can then use following code in our php to print the values of these fields :
<?php

// Connect to server and select database.
$host = "localhost";
$username = "root";
$password = "";
$db_name="diwali";

// Connect to server and select database.
$conn = new mysqli($host, $username, $password,$db_name);
$connectionHandle = mysqli_connect($host, $username, $password, $db_name);
$getQuery = "SELECT * FROM diwali ORDER BY sno ;";
$handle = mysqli_query($connectionHandle, $getQuery);
?>


<?php
while($row = mysqli_fetch_array($handle)){

echo '
<tr>
<td>'.$row['sno'].'</td>

                       <td>'.$row['name'].'</td>
<td>'.$row['email'].'</td>
<td>'.$row['phone'].'</td>
</tr>';
}
 ?>

Wednesday, September 7, 2016

Is learning to code worth your precious time?

Whatever background you come from, be it pure sciences, be it computer science, be it economics or any other trade of commerce. You often encounter problems that can be solved easily by coding and hence get encouraged to learn how to code.
In such circumstances you are forced to go into a deep thought of whether you should spend time to learn how to code or not. If you are reading this post, it is most likely that you are interested or associated with computer programming in some way or the other.
Before investing time on learning how to code, you should first ask your inner self whether you like to code or not. whether you will actually make use of it or not. If you are not too much in need of custom programs that are not easily available but often come across problems that are easily solvable using the tools already available online then you don't actually need learning to code for that.
But if you need tools that are not easily found/available for free too often, you should learn how to code.
Learning to code and becoming a pro-coder are two different things. If you want to get started with blogging, you can learn to code for customizing your blog. If you work with you shop's data, you might need codes to play with your data in Microsoft Excel VBA.
You may also need to change your website too often. In such cases you should at least learn to code so that you are capable enough to make some minor changes to your system that depends on some computer program.
If you want to lean coding for getting a job then you need to strictly be a pro in your field so that you are capable enough to complete the job assigned to you on time. But again you need to be interested in your job and not to run after money at the cost of your interest. All the very best
Whats going on in your mind? Drop us a comment below.

How to start a blog and make a lot of money?

So you want to start a blog and you don't know what to do and where to start with?
You ended up at a right place. Today I will cover all the essentials needed to start a blog.
Blogging is done by different people for different reasons. Some do it to share their knowledge, some do it to gain reputation in the online society, some do it to make money and some do it for fun!
If you want to start a blog, the first and the foremost thing you need is some online space or hosting to host a blog.
Online hosting for blogs is now a days provided as a free service by some of the companies like Wordpress and Blogger. Although there are some limitations but these are enough for you to at least get started with blogging.
I compare blogging to a painting exhibition where people come to see paintings but also end up seeing the ads that are placed near and beside the paintings and hence make money out of that. In blogging you rent some space(hosting which can be free or paid) and host your content (blog posts) which is read by people who also end up watching ads that appear beside your blog.
In this post I will specifically focus on Blogger. Blogger can be a great start just because it belongs to Google and not to forget that Google search belongs to Google too. If you start with Blogger you will end up getting attention at least by Google search if not by other search engines.
After you log in to your Google account and open  https://www.blogger.com you get an option to create a new blog.
Click that option and fill up the details like the name of the blog, appearance of the blog etc.
Finally click "New Post" to write a new blog post. Make sure to add an appealing (not misleading) heading to your blog post. Publish it and repeat.
I am pretty sure that you will end up getting thousands of viewers if you write awesome posts sharing your valuable knowledge with the entire world.
The biggest mistake most of the bloggers do is that they think too much without starting writing anything. My advise to such people is to create a new blog now and write at least 20 posts before worrying too much about the number of posts and/or the revenue they have made last day or last week out of their blog which is at an early stage of infancy.
Good luck and if you have any question, feel free to drop a comment below. I'd love to answer your queries.