Posts
 
Reputation
Joined
Last Seen
Ranked #962
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
21
Posts with Upvotes
17
Upvoting Members
19
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
4 Commented Posts
4 Endorsements
Ranked #396
Ranked #914
~46.6K People Reached
About Me

I write software.

Favorite Tags
Member Avatar for dotspiders

That's just the nature of social media promotions, you will always have followers and unfollowers. If people find no value in your posts, they will unfollow you. As a rule, people do not like it if they get spammed with advertisements or promotions all the time. Also, if you keep …

Member Avatar for Caitlyn_1
0
220
Member Avatar for jessecasey

Live chat creates a sense of community and makes websites appear more personnel. It's all fine and dandy to be able to send a support mail, but having the opportunity to chat to an expert, and recieve realtime feedback is of tremendous value. People have come to expect fast results, …

Member Avatar for Juliya15
0
197
Member Avatar for Jayen_1
Member Avatar for valestrom

Hi. You are referencing R.id.container - but none of your components are called that. It looks like you are missing something from whatever tutorial you are using. I can assure you that everything is not as it is in the tutorial :) - that code won't compile, thre's nothing with …

Member Avatar for Junaid123
0
1K
Member Avatar for ramsiva

You can try this window.setTimeout(function() { $("#myweb").load("webcamsnap.php"); }, 2000); Inside your function. It will make the load wait 2 seconds before actually executing it.

Member Avatar for ramsiva
0
167
Member Avatar for sahar.97

Is there any particular reason you are not using the Java Stack collection? See [Java Stac](http://docs.oracle.com/javase/7/docs/api/java/util/Stack.html) for some help. I don't see the value in building your own stack collection, unless it's a homework exercise, in which case you need to struggle with it :)

Member Avatar for stultuske
0
230
Member Avatar for anandhachandru

Well, 400 means your request is bad. Have you traced your POST and taken a look at the actual request that is sent? Using [Charles Proxy](http://www.charlesproxy.com/), you can easily see what request are being sent, and then see where the problem is.

Member Avatar for Ewald Horn
0
332
Member Avatar for Mr.M

The VX670 runs an ARM 32bit chip, and, according to the data sheet, has about 6mb of RAM. There are some mention in the reference manual of writing your own applications, but they are quite vague and it does seem to be C / C++ related, not Java. Look at …

Member Avatar for Mr.M
0
1K
Member Avatar for 9tontruck

Hi, by default, the Android WebView opens links in the system browser. You need to override this (see [Click Here](http://developer.android.com/guide/webapps/webview.html)) to change the behaviour. Use this code: webView.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { return false; } }); Basically, returning false on this request tells the …

Member Avatar for Ewald Horn
0
319
Member Avatar for IndyItMan

Your JavaScripts are over-writing each other. Wrap them in anynomous functions, like so : http://plnkr.co/edit/B6265864pZhZOsXGkBqL?p=preview Basically, you want to wrap your entire JS in (function(){ ..... your code ..... })(); This will protect the methods from each other. When I do that, I have two working canvas elements.

Member Avatar for Ewald Horn
0
287
Member Avatar for jalpesh_007

This is actually a very rarely used feature, so finding documentation on it is difficult. I, for one, believe that sending a username and a password this way is risky, but, if you really need to do so, you can modify the SOAP header request. The trick is to create …

Member Avatar for Ewald Horn
0
3K
Member Avatar for sk8ergirl

The best way is to expose some kind of web service or API that your Android app can talk to. Directly connecting a mobile application to a database is not a good idea, you have so many connectivity issues to deal with that it becomes a nightmare to ensure data …

Member Avatar for orochiwolf
0
121
Member Avatar for pooja28

Ah, you want the two applets to be able to communicate with each other. You can do it with JavaScript, there's a very nice tutorial here : http://docs.oracle.com/javase/tutorial/deployment/applet/iac.html The basic idea is to use the parent page's JavaScript context to pass messages between the two applets, because the page can …

Member Avatar for pooja28
0
349
Member Avatar for kronos2

You will need to take measurements as to the current disk consumption over a period of a month, every day, more or less at the same time. That will give you a daily disk consumption rate. Then work on an average of 125% of that rate and you'll have a …

Member Avatar for Ewald Horn
0
123
Member Avatar for Siphokazi_F

There's no easy way to answer this without knowing how complicated an application you are referring to. Which platform are you targetting? Is this a mobile application for Android, iPhone, Windows Phone, Nokia S60, Blackberry... Does the mobile site already exist? Do you need the mobile app to interact with …

Member Avatar for Siphokazi_F
0
162
Member Avatar for idmaporg
Member Avatar for Ewald Horn
0
938
Member Avatar for ThandekaN

There's a great explanation athttp://www.cems.uwe.ac.uk/~jsa/UMLJavaShortCourse09/CGOutput/Unit9/unit9%280809%29/page_03.htm with a good example as well.

Member Avatar for Ewald Horn
0
105
Member Avatar for cguan_77

Ah, the Google Play store has a once-off cost, which means that once you've registered, you never pay again, even if you publish 1000 applications. Please visit http://developer.android.com/tools/publishing/publishing_overview.html and http://developer.android.com/distribute/googleplay/publish/preparing.html to get the most recent and relevant information. The current cost to register is $25 (twenty five US Dollars). This …

Member Avatar for Ewald Horn
0
197
Member Avatar for napninjanx

Depending on what you wish to do, you might make use of technologies like PhoneGap or Titanium Appcelerator to write a single program that works on both iOS or Android. As RubberMan pointed out, these two platforms have applications that are built using a different technology stack, but for high-performance …

Member Avatar for Moran_1
0
258
Member Avatar for JimN

Ah, this sounds like quite the conundrum - "Here type this - oh wait, no keyboard" seems to be what I keep running into. Can you boot into command-prompt mode only? And does the keyboard work from there? I've had a machine with a very similar issue, and it turned …

Member Avatar for gerbil
0
772
Member Avatar for kgizo

I use "php" when I try to run php commands using the xampp distribution. For example, ignoring the path : C:\xampp\php\php.exe myphpfile.php would execute the myphpfile.php script.

Member Avatar for Ewald Horn
0
166
Member Avatar for twisty_toes

You'll need a build a basic API on the server side that handles all calls and provides a RESTful interface for the Android app. That's one way to do it - and I'd certainly recommend going this route. You can then use a simple Android client to make REST calls …

Member Avatar for Ewald Horn
0
123
Member Avatar for Doogledude123

The most likely reason is that there's still a thread that is running in the background. In Java, all GUI applications have at least two threads - the application itself and the GUI. In Swing, for example, you must specify the EXIT_ON_CLOSE flag for your top-level frame, otherwise the GUI …

Member Avatar for JamesCherrill
0
1K
Member Avatar for anisha.silva

Hi. Sorry I only saw this now. Let's take it line by line: 1. create a static method called analyAPI that takes a single parameter, pkgname. In Groovy, you do not have to specify the variable type, just the name, very much like in JavaScript. 3. Define a variable called …

Member Avatar for anisha.silva
0
217
Member Avatar for Pyler

Apart from the fact that the above code won't compile, nor run, you neglected to show HOW the append() method works, so we can't really help you there. I'd have to venture a guess and say that you do not grow the linked list correctly, but that's impossible to be …

Member Avatar for Pyler
0
197
Member Avatar for azgold472

You are correct. A live wallpaper is just an application, just with special privileges. You can certainly build in date-driven behaviour. I've found Java to be the best language for doing this kind of development for Android.

Member Avatar for Ewald Horn
0
145
Member Avatar for Shree1234
Member Avatar for pravien
0
136
Member Avatar for martinmax3

Are you running through every pixel at a time? How about using a scaling algorithm rather? Let's say, each entry in your grid equals 4 real pixels. Then you already have 1/4 of the number of calculations to do. I don't think that on a game like that, you really …

Member Avatar for martinmax3
0
2K
Member Avatar for kalel29x

Hi. Even while using a cloud solution, you will have some data on your machine that is sensitive. The best approach, even with a cloud host, is to encrypt your hard drive. Under Windows, you can use something like Check Point (http://www.checkpoint.com/products/full-disk-encryption/index.html) that will encrypt the entire drive. I know …

Member Avatar for kalel29x
0
236
Member Avatar for napninjanx

If you end up selling to a company like Google, they will definitely have a nice contract they want you to sign. That contract will, amongst other things : - Transfer all intellectual property (code, design, names etc.) to them. - Have a restraint of trade in place to prevent …

Member Avatar for napninjanx
0
174