- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I'd rather be programming than outside.
- Interests
- python, django, software development
- PC Specs
- AMD FX8350 - AMD Radeon HD 7970 - ASRock Extreme4 970
20 Posted Topics
Re: Best phone on the market right now in my eyes is the Samsung Galaxy S3 | |
Re: Create a class called request storing all the data on the flight ie number time in queue etc Create two queue collections [ queue<dataType> = new LinkedList(); ] Use that concept to build your program around. I like the idea of this program, sounds good. | |
So I'm starting to learn python as it's an awesome language from what I've already done in it. I came across an exercise to learn lists and it was basically as follows Create a list of first names and a list of second names and use a for loop to … | |
Ok so I have 2 String variables holding dates in the format dd/mm/yyyy and I need to find the difference in days between them. Ideas? Eg. String date1 = "dd/mm/yyyy"; String date2 = "dd/mm/yyyy"; int difference = (date1 - date2); EDIT: and unless *absolutely* necessary, I dont want to use … | |
What are the repercussions of having an odd number of RAM modules. E.g. 3 x 4GB I know it will work but I want to know exactly what damage it can do/problems it can create. Cheers EDIT: And also, why is it better to have more RAM modules (e.g 2x4GB … | |
I have this code so far #Add two digits def add(a,b): return a+b #Subtract two digits def sub(a,b): return a-b #Multiply two digits def mul(a,b): return a*b #Divide two digits def div(a,b): return a/b #returns an integer that the user enters def getCommand(): cmd = input("Choose: ") return cmd #Execute … | |
Re: If you can't implement the registry key back-up. On a different computer (obviously) download ubuntu and burn it to a CD. Boot your computer from the CD drive. Access C:\ and replace the damaged/missing registry files with your back ups. Avoid using regedit at all costs, there is usually a … | |
Re: At what point would the user be pressing Q to quite the program? Or is it at any point? | |
Re: It's generally classed as good or maintainable programming to initialise all global variables in the constructor rather than wait for them to be set using setters. | |
Re: VB, unlike Java, doesnt run on a virtual machine, the program needs to be installed so you will need a setup file. I'm assuming you're using visual studios in which case you need to export the program. To make the connection string editable, there needs to be a UI that … | |
I have tons of files in this project as I am programming an ARM board. Making a tilt snake game where the snake is controlled by an accelerometer. I am using a timer interupt (handled by timer0.c) to toggle a boolean variable `extern bool toMakeFood;` stored in "includes.h" that tells … | |
Re: For this I would use a key listener. This is basically an event that is triggered whenever a certain key is pressed. This is a really good tutorial for learning how to do it. http://docs.oracle.com/javase/tutorial/uiswing/events/keylistener.html | |
Re: Just in addition, obviously you would change the "#" in amirbwb's code with whatever you wanted to print. | |
Re: Not 100% about this, but check there aren't any jumpers on the clear CMOS pins that would make it clear...highly unlikely that this would be the problem but cant hurt to check. | |
Re: A VPN is a Virtual Private Network. [Read This](http://whatismyipaddress.com/vpn) | |
Re: Not 100% if this answers your question but I wrote this code for a car game in college. Pass the sql command to the function and it executes on the database it is set up to access. Hope it helps. Public Sub sqlCmd(ByVal SQLText As String) Dim retVal As Integer … | |
Re: Its because you're making a new instance of class B that is compeltely different to the one holding the data. That is why you're getting a null return. I would solve this by making a "control" class that works as a communication class between all of the classes you have. … | |
Re: I don't think there is any way to do what you're after. As far as I know, you can either have all the audio of a section or none. Maybe look for the soundtrack or look in the credits for the song titles and get them separately. | |
Re: If other devices are being affected with the same probelm, chances are it's a new router you need (I'd recommend a cisco or netgear) If it's just your laptop, you might want to get a USB wifi adapter as it could be the integrated WLAN card that's nackered. |
The End.