Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
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

46 Posted Topics

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
261
Member Avatar for lara_

As far as i know getch() is deprecated and it was replaced. TurboC++ users miss getch() a lot.

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

You can learn from youtube videos. There are plenty of them for learning python. I suggest checking out [python4information](http://www.py4inf.com/book.php) page. Alternative follow [python tutorial](http://onecore.net/how-to-programming-in-python.htm) to learn some basic concepts. Google has [Python class](https://developers.google.com/edu/python/) but for intermediate programmers. Have fun learning python :)

Member Avatar for rmad17
0
312
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
187
Member Avatar for LaxLoafer

I am kinda focusing on the social networks and the traffic from the referrals like say forums and blogs. I prefer to get conversion via those type of the traffic instead of google.I know content based sites require google but relying on google for business is not a good idea …

Member Avatar for alviataylor
0
315
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
202
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
180
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
218
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
135
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
177
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
252
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
96
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
97
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
109
Member Avatar for rubai

I am learning too. Best way to learn better is write code and keep breaking stuff. You'll reach a point when you start creating things rather than breaking, only if you understand how things work. Watch video tutorials, write code, read tutorials. :) I suggest taking codecademy tutorial before you …

Member Avatar for cigoL..:)
0
310
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
278
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
215
Member Avatar for draven07

PyQT has commercial form builder for which you have to pay. Pyside which is open source implementation of QT like PyQT is new and yet to have a form builder. I guess it'll take time.

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
361
Member Avatar for hashif

Article submission and social bookmarking brings a lot of traffic to me. Other than that guest blogging works for me but not always.

Member Avatar for qlipboard
-1
262
Member Avatar for smith09

Providing real name will not always help cause i have seen many marketers who are branding their product or advice with pseudo name. There are some [URL="http://hubpages.com/hub/Twitter-Guide-for-Hubbers"]twitter tips[/URL] that your should follow if you're serious about promotion.

Member Avatar for joelchrist
0
126
Member Avatar for jay84

Most of the egg students in india are looking for ready made projects on internet or either purchasing one from the project shop lists in magazines or frm word of mouth in campus. If you need ready made project assistance then look at the [url]http://scribd.com[/url] ,you can postyour own project …

Member Avatar for peter_budo
0
495
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
102
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
129
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
100
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
86
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
113
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
116
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
140
Member Avatar for arunpawar

I've downloaded the HGE from the website.I have setted the compiler as per the help file suggests.I have used the Dev-C++ and Visual C++ to compile the project.It compiles the files successfully,but when .exe file is created it is not showing up.When i doubleclick the exe filethe error message appears. …

Member Avatar for mostafadotnet
0
128
Member Avatar for Dragongamer

Yes people are so cheap they cant even afford cheap hosting. asmallorange.com citrixhosting.com computinghost.com(i'm not afifilated just googled and found their plan better) have very cheap plans on yearly basis.why people dont buy hosting? i know there are some host who charge domain at 25$ and hosting prices at 60$ …

Member Avatar for roverfind
0
146
Member Avatar for arunpawar

I have downloaded the visual C++ express 2005.Actually i have no experience with the visual C++, i used to develop with Visual Basic earlier but i don't know some of the following thing: 1. How can i enable the line numbers in my source code? 2. Where can i find …

Member Avatar for Ancient Dragon
0
157
Member Avatar for arunpawar

The last version of DevC++ is released as beta 5.It is the only lightweight (comaprison to large download of VC++ express) IDE available for C++ with Stable release(Not like nightly build of Code::blocks).But,there are plenty of updates of mingw since then,so the outdated version inside the setup needs to be …

Member Avatar for Ancient Dragon
0
184
Member Avatar for arunpawar

We import the packages from java.somepackge.*; or javax.package.*;package can be anything from javas own api or other external api. My question is what is difference between java and javax?

Member Avatar for javaAddict
0
65
Member Avatar for arunpawar

I've found API Jfreechart for creating chart with java and Jcalendar for calendar purpose.I've downloaded them and i don't know how to use these external API packages into the program.I use Eclipse europa and sometime editpad as text editor. I want to know how to add such packages in my …

Member Avatar for jwenting
0
447
Member Avatar for arunpawar

What are command lIne options available for most operating system? For windows i know there was DOS,but it is abandoned and now there exists only command prompt that has capbility to run batch scripts and some DOS commands. What about Linux? Is there any command prompt or terminal/shell for apple …

Member Avatar for sarehu
0
105
Member Avatar for arunpawar

I've signed up with adsense to display the image ads on my site.I don't want to show text ads as it drives some of my traffic away.Also it looks as bad webpage even though my content is good.Can i place adbrite image ads along with google image ads,i don't want …

Member Avatar for JonathanD
0
290
Member Avatar for arunpawar

Hi I'm just trying to create an appliation in java that can hold my expenses and save it to review every month or end of the year.The problem with it is how can i hold the data of everyday expense into it.this could be with help of oracle or MS …

Member Avatar for ~s.o.s~
0
91
Member Avatar for Mr.UNOwen

YOu can get away with borders if you want.just look at the actionlistener interface in javadocs for keyborad and mouse event.

Member Avatar for ajaypatel
0
734
Member Avatar for arunpawar

This sounds absurd to some developers here cause you'll say just create jar file and distributre to usr but sometimes there is not possiblity of having runtime environment in windows computers.So if we can bundle the enviroment and the setup together then packing into exe and then distribute like most …

Member Avatar for masijade
0
209
Member Avatar for arunpawar

I have few questions which are annoying me a lot.As i'm from windows background,swithicng to linux let me with these questions: [QUOTE][B]1) Is there any thing like registry in linux? Where linux stores such information?[/B] [B]2) When application is uninstalled in linux,all the values and files related to applications are …

Member Avatar for jbennet
0
110
Member Avatar for arunpawar

is there any tutorial for creating simple windows programs which explains easy step by step . i'm looking for tutorial to create windows programs using this.

Member Avatar for Ancient Dragon
0
52
Member Avatar for arunpawar

If you're using cpanel on youyr linux server then yo know the fantastico script installer that install for you like wordpress,drupal,php-nuke etc. Actually i tried the Elephante Free installer(Which works same as fantastico) but that is lame it causes too much trouble,it failed wordpress installation 4 times before installig properly.Anyway …

0
28
Member Avatar for jobs

string concatination can b used if uwant.it works with most old borkland compilers.

Member Avatar for ssharish2005
0
116
Member Avatar for arunpawar

HI,i have downloaded the Turbo Explorer and i'm trying to learn the Event handling with it.The problem is i dont know the pre-made code for some actions like if i create some text editor as per the tutorial in the help file,how can i add action as per my own …

Member Avatar for arunpawar
0
114

The End.