Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
79% Quality Score
Upvotes Received
14
Posts with Upvotes
12
Upvoting Members
12
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
4
4 Commented Posts
1 Endorsement
Ranked #857
Ranked #818
~22.5K People Reached
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
Favorite Tags
Member Avatar for restrictment

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 …

Member Avatar for emeraldamerican
0
6K
Member Avatar for wolex

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 …

Member Avatar for afif.izzuddin
-2
727
Member Avatar for rayden150

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 …

Member Avatar for stultuske
0
253
Member Avatar for k9huey

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 …

Member Avatar for k9huey
0
128
Member Avatar for vizz

according to the documentation you can programmatically close the overlay with the scripting api close() http://jquerytools.org/documentation/overlay/index.html

Member Avatar for vizz
0
199
Member Avatar for lewashby

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

Member Avatar for cereal
0
379
Member Avatar for yashikagg

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.

Member Avatar for yashikagg
0
706
Member Avatar for Rizi004

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/)

Member Avatar for brandonrunyon
0
85
Member Avatar for umarmaqsood

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 …

Member Avatar for umarmaqsood
0
200
Member Avatar for mmcdonald

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 …

Member Avatar for brandonrunyon
0
216
Member Avatar for hlamster

<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.

Member Avatar for brandonrunyon
0
179
Member Avatar for davy_yg

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.

Member Avatar for brandonrunyon
0
136
Member Avatar for daniel36

not really a php question. you could try one of these answers... http://stackoverflow.com/questions/1219890/flash-document-viewer

Member Avatar for brandonrunyon
0
149
Member Avatar for akuvidz

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 …

Member Avatar for brandonrunyon
0
130
Member Avatar for Senyo

perhaps you need to review syntax for insert? http://dev.mysql.com/doc/refman/5.5/en/insert.html

Member Avatar for Senyo
0
108
Member Avatar for yhkesh

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.

Member Avatar for yhkesh
0
117
Member Avatar for Djmann1013
Member Avatar for Djmann1013
0
164
Member Avatar for DaveyMoyes

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]; } }

Member Avatar for brandonrunyon
0
173
Member Avatar for brandonrunyon

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]

Member Avatar for Pjieter
0
374
Member Avatar for Praveenvapn

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?

Member Avatar for smferoz
0
1K
Member Avatar for tKc

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 …

Member Avatar for tKc
0
151
Member Avatar for jcrutchvt10

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 …

Member Avatar for brandonrunyon
0
128
Member Avatar for brandonrunyon

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 …

Member Avatar for brandonrunyon
0
259
Member Avatar for Praveenvapn
Member Avatar for Shaswat

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]

Member Avatar for justiceigwe
-1
142
Member Avatar for diyes05

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 …

Member Avatar for brandonrunyon
0
146
Member Avatar for dpirtle83

a double and an int are different data types, you can't use them together like that.

Member Avatar for brandonrunyon
0
124
Member Avatar for pinky.shet

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 …

Member Avatar for BradleyScott
0
88
Member Avatar for GuyClapperton

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 …

Member Avatar for brandonrunyon
0
242
Member Avatar for erin2010

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 …

Member Avatar for brandonrunyon
0
143