Showing posts with label Coding Scripts. Show all posts
Showing posts with label Coding Scripts. 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...

Interesting !!! Google Vs Bing , Unbelievable Trick try it yourself.

Interesting !!! Google Vs Bing , Unbelievable Trick try it yourself.Have you ever tried Automattic currency Conversion in Google or Bing search, There lies this interesting fact.Just have a look at it.. perhaps wait! how about Exploring this interesting crazy fact on your own with the help of following steps.Step 1: Open your favourite Web browser twice (two windows or two...

Finding IP Via Javascript - PHP - ASP

Computer tips - To Get And Show The Ip Via Javascript - PHP - ASP1. To show the ip via JavaScriptvar ip= '';document.write("Your IP Address is :"+ip+" ");2. To show IP via ASPrequest.ServerVariables("REMOTE_ADDR")3. TO SHOW IP VIA PHP$remote_address = getenv("REMOTE_ADDR");echo "Your IP address is $remote_address.";$browser_type = getenv("HTTP_USER_AGENT");echo "You are using $browser_type.";?&...