Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
Member Avatar for arunpawar

I am trying to extend a script that opens a web browser and opens URL. I want to use that script and make it to search google for particular query. That's all. Here's the code that I got. I would appreciate, if you know how to extend it for the …

Member Avatar for arunpawar
0
255
Member Avatar for lara_

i just want to whether there is a replacement for getch() in C++. my friend said getch() is C function. thanks!

Member Avatar for nootan.ghimire_1
0
7K
Member Avatar for rmad17

I've been trying out python codes looking at the python tutorials at python.org. I've been getting a better idea of it now and the tutorials are very good at teaching practical programming. However, I also want to apply for Python jobs so what a little bit of theoritical information on …

Member Avatar for rmad17
0
307
Member Avatar for arunpawar

Hi, I am trying to get the top navigation of zurb foundation to work but for some reason it is not working for me. Here's my code. What seems to be issue? <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <link rel="stylesheet" href="css/normalize.css" /> <link rel="stylesheet" href="css/foundation.css" …

Member Avatar for arunpawar
0
186
Member Avatar for LaxLoafer

In case you've missed the news, Google finished rolling out Penguin 2.0 yesterday. They're expecting the algorithm change to have a noticeable affect on 2.3% of US English queries. Further info on Google's Webmaster Central Blog: [Another step to reward high-quality sites](http://googlewebmastercentral.blogspot.hk/2012/04/another-step-to-reward-high-quality.html) Do we have any winners and losers here?

Member Avatar for alviataylor
0
314
Member Avatar for arunpawar

So I am trying to create a blog in php and mysql. I am not sure how this is going to work out there. Just let me know if i am on the right track with the DB. Let's say i have database called blog with table user and posts. …

Member Avatar for pritaeas
0
199
Member Avatar for arunpawar

Here, I have created a php mysql login page. I am a newbie so please also comment on my code too. I have this login page where after entering the correct data i am getting welcome "id" instead of "username". I want to know what i am doing wrong here. …

Member Avatar for arunpawar
0
176
Member Avatar for arunpawar

Hi, I am trying to create a simple form submission using php and mysql. I am stuck at very basic level of mysql and php code. Here is what i am trying to do. 1. index page where name and email data is shown. 2. add-data.php page where i am …

Member Avatar for arunpawar
0
216
Member Avatar for arunpawar

I tried to run this code on xampp and also on codepad and it seems it is not compiling at all. <?php class MyName{ public $name="johnh"; public $lastname="doe"; public function setProperty($var_name,$var_lastname){ $this->name=$var_name; $this->lastname=$var_lastname; } public function getProperty(){ return $this->name. " ". $this->lastname; } } $obj=new MyName(); $obj->setProperty("jane","doe"); $obj->getProperty(); ?> Is …

Member Avatar for masterjiraya
0
131
Member Avatar for arunpawar

I am trying to get into php object oriented programming. <?php class myClass{ public $myVar="this is demo"; public function myTextdemo(){ echo $myVar; } } $obj= new myClass; echo $obj->$myVar; ?> It says > Fatal error: Cannot access empty property on line 11 What's wrong with my code?

Member Avatar for arunpawar
0
169
Member Avatar for arunpawar

I am trying to build a simple app that calculates the farenhit to celsius converter. Here is my code.. from gi.repository import Gtk, GObject class DemoWindow(Gtk.Window): def __init__(self): Gtk.Window.__init__(self, title="Demo Example") self.set_size_request(300, 400) vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6) self.add(vbox) self.entry = Gtk.Entry() self.entry.set_text("Enter Farenhit") self.button1 = Gtk.Button(label="Calculate") self.button1.connect("clicked", self.on_button1_clicked) vbox.pack_start(self.entry, True, …

Member Avatar for arunpawar
0
248
Member Avatar for arunpawar

Hi, I am trying my hands on lambda function and here is my code. [CODE]>>> a = [1,2,3,4] >>> b = [17,12,11,10] >>> map(lambda x,y:x+y, a,b)[/CODE] And the output is : [CODE] < map object at 0xb7540eec >[/CODE] So my question is why this map object output? Why not actual …

Member Avatar for Gribouillis
0
93
Member Avatar for arunpawar

HI, i have written a bookmarking page that lets me add urls to database. as i have placed both database results and new url button code in same page. i have a bit conflict. whenever i refresh the page, dot entry goes in database and table gets populated which is …

Member Avatar for arunpawar
0
92
Member Avatar for arunpawar

I am trying to create a url bookmark script for my own use. Here's the code. [CODE]<?php mysql_connect("localhost", "root", "") or die(mysql_error()); mysql_select_db("delicious") or die(mysql_error()); $data = mysql_query("SELECT * FROM stacks") or die(mysql_error()); if(mysql_num_rows($data)) { echo '<table cellpadding="0" cellspacing="0" class="db-table">'; echo '<tr><th>No</th><th>Name</th><th>URL</th></tr>'; while($row2 = mysql_fetch_row($data)) { echo '<tr>'; foreach($row2 as …

Member Avatar for broj1
0
102
Member Avatar for rubai

I want to learn PHP CSS. If you have any good reference or books(free) plz inform me.

Member Avatar for cigoL..:)
0
298
Member Avatar for arunpawar

Hi, I was writing the code for the class to test passing of values. Here's my code. [CODE] <?php class demo{ public function setMynum($a,$b){ $varA=$a; $varB=$b; return $varA; return $varB; } } $obj=new demo; echo $obj->setMynum(12,13); ?>[/CODE] Output is 12. What is wrong with the code? I guess i have …

Member Avatar for veedeoo
0
173
Member Avatar for arunpawar

I am learning regex in php but want to try out how the regex in python works. I have not yet moved to the code side of things and for the same reason, i am searching for the regex examples in both php and python. To start somewhere, i decided …

Member Avatar for TrustyTony
0
209
Member Avatar for draven07

...hello!!!...I need some help in python... ..Im new to Python programming and I need a window form builder that can script it into a python program....can you please give me suggestions.???..I have tried also searching on google but Im afraid the results might not help me well....unlike asking here at …

Member Avatar for vegaseat
0
2K
Member Avatar for arunpawar

This is very basic issue with me right now. I don't know how to write a function or class in python. I mean i know the syntax but i don't know how to escape from the indentation while typing on IDLE. For example [CODE]def sum(): var1=10; var2=20; sum=var1+var2; #how to …

Member Avatar for arunpawar
0
351
Member Avatar for hashif

10 tips on how to increase your website traffic!! hey, Here are the tips for how to increase your website traffic!!, 1.Advertise your website through Email marketing campaigns and Traffic campaigns! 2.using signature on forums,emails. 3.you can use newspaper ad to direct visitors to our site. 4.try to make a …

Member Avatar for qlipboard
-1
260
Member Avatar for smith09

With millions of people connecting through social media, advertisers and marketers are hustling to get in on the action. In the past year we’ve seen many companies and brands attempt to step into this new world only to fail miserably Using twitter as integrated part of your online reputation management …

Member Avatar for joelchrist
0
124
Member Avatar for jay84

hi people, In my hour of need I didnt know who to turn to, until I came across this forum. People I'm really stuck on a creating a project for my final year and I'm hoping someone will read this and offer their guru advice. I'm basically studying a Multimedia …

Member Avatar for peter_budo
0
489
Member Avatar for arunpawar

I'm in search of good folder locking software. Any good software in mind ? I've budget of 40$ max. Can't afford to put more than that. Also is there any freeware available to do this job ? My Config : OS : Windows XP SP2 Filesystem : FAT32

0
85
Member Avatar for arunpawar

I recently uninstalled visual studio 2005 professional and i had trouble withe the registry entries and files. so "just-in time debugger" is sowing up every now and then. and explorer refreshes when clicked on dialog that asks for OK. how to remove it?

Member Avatar for FlamingClaw
0
124
Member Avatar for arunpawar

Is there any CMS for knoledgebase and customer support? I tried google but not found any, but rather found CMS which uses this feature as complimentary and less effectively. any suggestions?

0
99
Member Avatar for arunpawar

I'm trying to create simpel notebook for me to take down classnotes, using java swing & SQLite. This will even help me to learn more about swing & SQL . (I'm not sure whether it is possible or SQLites usage is good or not). So anyway i decided to use …

0
83
Member Avatar for arunpawar

Is there any thread or resource which can list the books related to game developement? Be it any langauge (C++/Java/Flash/Directx) I tried google but results are satisfactory.Can anyone help with pointers. Thanks in advance.

Member Avatar for the_swan
0
111
Member Avatar for arunpawar

It's not homework it is just a play.If you have any simmilar tragic like this one with int and character or float then please discuss it here or explain how things happen.Let this thread be informative. I'm playing with int,floats and type casts but i have found that in following …

Member Avatar for dougy83
0
111
Member Avatar for arunpawar

I know it may sound weird or absurd question to you. I'm new to mac OSX and i'm looking for macintosh related resources. i know there are websites related to windows annoyances like activewin,annoyances etc. Is there any website that discuss the simmilar apple annoyances & tips and tricks. Actually …

0
94
Member Avatar for arunpawar

I'm working on VB.net(2005 studio) application that stores values.i'm using SQL server 2005 express.I dont know how to connect both of them.Is there any tutorial on the web for that? I have tried but most of the result are points to the pages of SQL server configuration,manipulation related information. One …

Member Avatar for arunpawar
0
135