- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
24 Posted Topics
Re: Function of heart in the human body is to pump blood. | |
Re: For a free book you can try this book. It's very nice. Book- "How to think like a Computer Scientist:C++ Version" [URL="http://www.greenteapress.com/thinkcpp/index.html"]You Can find this book here![/URL] | |
Re: IDLE IDE is best in my opinion. It's open source and uses great color scheme and indention. It's also light in process and does not consume much memory and does not hang too often like Eclipse. If you have Windows, You can use PyScripter. | |
Hi, I am making a song player in java with playlist functionality. I got my mp3 songs running all right. What i basically do in my player is search a folder for mp3 files and then add all to the playlist. Till here, it's fine and doing good. But the … | |
My aim is to fill a 3x3 grid of Jtextfield in java swing with values and position of entry in that grid sourced from a text file.I made a file named aa.txt. Its contents are:- a1-3 b3-9 c2-4 a1,b3,c2,... are names of textfields in grid and numbers separated by hyphen … | |
I am attempting to make a TicTacToe in java using Swing. Instead of using buttons for mark(x and o) placing on 3x3 grid, i used textfield(variable name- pos) to specify position of mark entering and another textfield(var name- val) to take value to insert it into the position which i … | |
Recently, i am seeing some awkward behaviour of my windows pc (which is a vista sp2). It can be said as a problem of automatic scrolling.What happens is when i try to increase the volume from the sound option in right hand side menu in taskbar, it automatically gets lowered … | |
Re: If your computer is having so much problems which seem to be unidentifiable, you can consider a chance of formatting the system and then install or buy a good antivirus for you PC. | |
So, I have this filter at home which my parents installed so that i control my computer usage. The name of the software is "Blue Coat k9 web protection alert". I was ok with it for a few days but after observing for couple of weeks, it began to annoy … | |
I just made a small program to spell check a provided sentence and point errors in the sentence. Actually, the program creates a list by reading data from text file which contains dictionary words and from there it tells whether the inputted word/s are in dictionary or not. I would … | |
Re: I watch it daily and i enjoy it Will Justin Bieber ever hit puberty? | |
I am basically trying to make a TicTacToe game in Netbeans GUI builder. I have nine(3x3) buttons to show a grid for the game and that's where you mark X and O's. I want to make it one player game. I wanted to know how to make an array of … | |
Re: @Windiggy..code rewritten using elif. color = raw_input("Input a color component character: ") if color == "r": print "You have input a color component" elif color == "g": print "You have input a color component" elif color == "b": print "You have input a color component" else: print "You have not … | |
In Python, which is more of a pythonian style of writing between these two: 1. print 'Hello' or 2. print('Hello') If u have a link on basic outlines of pythonian style and which syntax is a more pythonic way to use, it would be very useful to me. Thank You! | |
Re: Why don't use IDLE's text editor? Its fairly nice and also auto-indents and follows a good color scheme to differentiate between functions,keywords,builtins,etc. In my opinion, IDLE's text editor is the best. | |
Suppose i have a list l=[1,2,3] i want to make this list as [2,3,4] i.e. add 1 to all the values in list l. I want to do it by the method of for loop.. Can someone help? | |
I wrote a simple program to take input till the char array is filled up. But i seem to be getting a problem during runtime that the program takes input continuously and never stops. Pls help in identifying the problem.(there were no errors during compiling) [CODE] #include<iostream> #include<string> using namespace … | |
I don't know which langauge code it is written(but i think it is python) but i am just posting to know what can happen by the following code snippet. Here is the code:- # # ms12-020 "chinese shit" PoC # # tested on winsp3 spanish, from localhost # # import … | |
I am a beginner in learning assembly language. I wanted to know which assembler would be best to use between NASM and MASM in today's context. Also, can you give a link to documentation on these assemblers?And tutorial specific for these assembler (as assembly is not standardized) | |
| |
I wanted to write a program to check if string entered is a palidrome. I wrote a program but i get errors while compiling. Can anyone help me identify errors in the program. [CODE] #include<iostream> #include<string> int main(){ string input;bool flag=false; cout<<"Enter String: "; cin>>input; cout<<"You Entered "<<input; int length= … | |
I am new to learning assembly language. I wanted to know if using HLA assembler by Randall Hyde would be a good option for a beginner like me? It seems good on documentation and educational material available on author's site but i wanted to take recommendations from you guys on … |
The End.