Showing posts with label Programming. Show all posts
Showing posts with label Programming. Show all posts
Topics 1) Code your Server.js - Node.js main file         i) Importing libraries         ii) Create Server and Handle Request         iii) Play with Socket.io to do MultiChatting 2) Develop Webpage with Socket Javascript 3) Download Project here 1) Code your Server.js - Node.js main file i) Importing libraries  var...

Develop your first Android Game

How to develop android games? Developing android games is simpler than you think. Check out this android game. Which is built using this technique. Save Super Penguins https://play.google.com/store/apps/details?id=com.positivesthinking.parachutepenguinsfree Before starting the tutorial familiar yourself with android. 1. Set up the Android Workspace https://developer.android.com/training/basics/firstapp/index.html 2....

Are we trusting Google too much?

Are we trusting Google too much? 1. why should chrome warn us with a message when we clear browsing history? Whenever we try to clear browsing history, chromes tells that there is incognito mode to use, is Google worried if you clear your entire browsing history from chrome? What does Google do with your browsing history? Here's a clear evidence, "YouTube", Google's...

convert string to dictionary in python

Cool trick to convert strings into dictionary object in Python ProgrammingMethod 1: Using ast.literal_eval## Exampleimport aststrr = "{'a': 1, 'b': 2, 'c': 3}"strr_dict=ast.literal_eval(strr)Method 2: Using json## ExampleCheck here http://docs.python.org/library/json.h...