- Strength to Increase Rep
- +5
- Strength to Decrease Rep
- -1
- Upvotes Received
- 21
- Posts with Upvotes
- 17
- Upvoting Members
- 19
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
I write software.
Re: 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 … | |
Re: 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, … | |
Re: I don't see the file attachment, so it's difficult to answer. | |
Re: 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 … | |
Re: 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. | |
Re: 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 :) | |
Re: 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. | |
Re: 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 … | |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: Your subject and question are not the same, which one do you need answered? I'm not sure :) | |
Re: 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. | |
Re: 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 … | |
| Re: 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 … |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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. | |
Re: That's one of the things that most search engines look for to disqualify you with! | |
Re: 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 … | |
Re: 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 … | |
| Re: 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 … |