- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 14
- Posts with Upvotes
- 12
- Upvoting Members
- 12
- Downvotes Received
- 4
- Posts with Downvotes
- 4
- Downvoting Members
- 4
- Interests
- Musician by trade, I enjoy PHP, Java, python, and C++. I'm open to possibly some Ruby on Rails, but…
- PC Specs
- Dell inspiron 1318 running Debian GNU/Linux
Re: It would be helpful if you could refactor your code to be Object Oriented. This would allow you to add more features and clean up the code layout a bit. Enemies would be capable of far more. And game logic like adding weapons, leveling up, entering a new area, and … | |
Re: um... do your project on how a CO switch works. Diagram the lines form the DMark to the CO. or do one on self healing SONET rings. or do one on IP V6. Do one on GSM. Do one on 802.11. Do one on socket programming. Do one on distributed … | |
Re: I started with C++ but fell in love with Java and Python. But with any language, the logic and problem solving skills needed to start programming are the same. You need to think about your assignment (or self started project) with a step by step approach. As you become a … | |
Re: option 2 sounds preferable to me. Once you know what something is in meters, it's just a matter of multiplying or dividing by units of 10. Knowing the relationship between all the metric units is fairly rudimentary since they all stand as units of 10s, but keeping US standard units … | |
Re: according to the documentation you can programmatically close the overlay with the scripting api close() http://jquerytools.org/documentation/overlay/index.html | |
Re: you want to make sure you have apache as well. run these at your terminal sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install libapache2-mod-php5 sudo /etc/init.d/apache2 restart | |
Re: are you viewing this in a browser or from Word? In some browsers the base64 encoded images to not render if they are being hosted locally. Just confused about where you are viewing this document. | |
Re: you can use the facebook graphAPI to extract that information. The first thing you want to do is read their documentation https://developers.facebook.com/docs/reference/api/, and chose an SDK (PHP: https://developers.facebook.com/docs/reference/php/) | |
Re: currently, the widget just scrolls an image with a fixed height, thus you will see that blank space unless you can offset the time at which it repeats. The reason it appears that they chose to do it that way was so it could disappear and reappear at the bottom … | |
Re: A lot is left vague... what is communicationQuery ? is that a SOAP call to WSDL or does it open a socket or cURL request? Seems like you're bottle neck is somewhere in communicationQuery, i'd check performance of that object. Also, how many servers are you calling? can you cache … | |
Re: <option value="some value" onclick="popMssg('some message');">some label</option> you may also need to escape quotes if you are doing this in PHP. | |
Re: It's in flash, so you need to get into the .FLA file(s) and change the speed values in there... saddly, you posted this under javascript... you may want to repost under Flash/Actionscript for help. | |
Re: not really a php question. you could try one of these answers... http://stackoverflow.com/questions/1219890/flash-document-viewer | |
Re: first check to see that you browser has full access to your javascript files. Then wrap your tabs method and other jquery in a $(document).ready(function () {/*code goes here*/}); so that the method is called after the DOM has attached itself and is loaded properly before running the method. You … | |
Re: perhaps you need to review syntax for insert? http://dev.mysql.com/doc/refman/5.5/en/insert.html | |
Re: http://phpexcel.codeplex.com/ is a fairly reliable library for handling excel format. You can also save as a csv file and parse it in a similar fashion. | |
Re: $_SESSION is a super-global array, so treat it as an array | |
Re: I don't know what your array looks like, but you could do an foreach and then embed a while loop that cuts after three photos foreach($array as $a) { while ($i<3) { print $a['photo'][$i]; } } | |
I found this article from the EFF quite disturbing. What do you say about a company that would want to do this? ... Thoughts? Comments? Scathing Rebuttals?? [url]http://www.eff.org/deeplinks/2010/08/steve-jobs-watching-you-apple-seeking-patent-0[/url] | |
Re: What issue is that? What kind of network environment are you on? What device are you sending packets to? What tools are you using to test this? | |
Re: running your program on g++ I get a return of NAN, indicating compiler treats the returning value as "Not a Number"... I'd check your array of ints... the context of your code indicates you really want to work with doubles. You aren't going to be able to cast to double … | |
Re: MAC address filtering on a switch sounds like a very plausible culprit... how many hops can you get on a trace route command? If it doesn't get to the devices beyond a known switch on your network, I'd be suspicious of that... I'm otherwise not familiar with your current software … | |
I have a class "Homework" that has a private attribute "int time" and I have set up a + operator to add the times of two Object instances. I have also created a Template "sum(T a, T b)" that takes two arguments and adds them together. I'm having difficulty using … | |
Re: Shaswat, create a chat page. Use Java. Create applet for use client. Use for server java socketServer. Multi thread. [I]Write more descriptive threads please.[/I] | |
Re: We don't distribute source code. write some code based on your requirements and we'd be more than happy to help you if you get stuck. I will provide a link that has a java implementation as well as a resource to understanding that algorithm in general so you can start … | |
Re: a double and an int are different data types, you can't use them together like that. | |
Re: Are you trying to write software to draw a graph of incoming and outgoing packets? The answer is yes, yes you do need algorithms for that... and probably openGL and C. No, I won't give you codes for it, but you are welcome to post that in the C++ or … | |
Re: The exceptions made recently in the DMCA only make exceptions for Professors and students under certain conditions. Under those conditions, to circumvent the iPhone's default OS or software is still in breach of the Apple EULA which voiding the warrantee could be the least of your worries even... The Apple … | |
Re: drjohn is right erin. You should accept database entries as they are without additional sorting, it would be inefficient and (as you probably have already come to find) ridiculous to do otherwise. The database is unconcerned with the names or types of entities you store in them. Selecting by the … |