Posts
 
Reputation
Joined
Last Seen
Ranked #971
Strength to Increase Rep
+6
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 #397
Ranked #914
~47.2K People Reached
About Me

I write software.

78 Posted Topics

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
224
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
202
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
170
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
231
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
340
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
348
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
306
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
123
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
352
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
125
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
164
Member Avatar for idmaporg
Member Avatar for Ewald Horn
0
939
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
107
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
199
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
262
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
787
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
168
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
125
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
222
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
200
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
137
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
240
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
179
Member Avatar for kumararvind003

Hi. I've had good success opening XLS files with http://poi.apache.org/ - as for printing, that's entirely up to you. You will need to read the data and then send it to the printer.

Member Avatar for Ewald Horn
0
90
Member Avatar for Rina Richie

Ok Rina, I'm sure we can help when you get stuck, but you are going to have to do a lot of planning and put in some effort. Nobody's just going to do your homework for you. Show us what you've done, where you are stuck and where we can …

Member Avatar for Ewald Horn
0
147
Member Avatar for ram619

Do you have anything besides the Python script that can read the data? It might be worth your while to investigate whether the dataloss is related to your script or not, because right now, there are too many unknowns.

Member Avatar for Ewald Horn
0
2K
Member Avatar for pwolf

Hi, dont' worry, this is a common issue with learning Java : Monster.Java should be called Monster.java. Java is case sensitive, so when it tries to find the Monster.java file, it's failing due to the naming issue. Rename it to Monster.java and it should be fine. (You can right-click on …

Member Avatar for Ewald Horn
0
286
Member Avatar for maricar_1
Member Avatar for rowen_1

This service has been deprecated and is no longer available. The guys at http://www.xignite.com/ have a free trial you can use. What I've found with free sotck information services is that they are very slow and inaccurate, so for commercial use, they are not a good choice.

Member Avatar for Ewald Horn
0
97
Member Avatar for screenedcreamy

You can use the Java Desktop libraries (see http://docs.oracle.com/javase/tutorial/uiswing/misc/desktop.html) to do exactly this. There's even some good examples, and the best thing is, it works cross-platform as well.

Member Avatar for Ewald Horn
0
156
Member Avatar for jabeen123

Touch screen displays for PC's. It's both an input and a display device. While it's not a new invention, it's only recently become popular.

Member Avatar for Ewald Horn
0
38
Member Avatar for darren.dow.98

Why would you split the two? My biggest pain is with the lack of security in cloud solutions. If you look at companies like Amazon, they dedicate a serious amount of time and effort to cloud architecture, but not nearly the same amount of effort to security. The reason for …

Member Avatar for Amol555
0
128
Member Avatar for joseph_7
Re: help

Hi. I'm not entirely sure what your question is. Perhaps you need to make a list of what you want / need this program to do, that way, you can break it down into simple steps and develop them one by one, making your life easier. How would you like …

Member Avatar for TrustyTony
0
240
Member Avatar for Rasool Ahmed

In Android Studio, you will have a Logcat view which will give you a stack trace of the exception. We'll need that to figure out where what goes wrong.

Member Avatar for jonese068
0
3K
Member Avatar for mpc123

Indexes... You do not have indexes on the columns you are comparing, so it will be doing table scans all the time. Simply create indexes on both tables, for those columns, before you run the query.

Member Avatar for Ewald Horn
0
235
Member Avatar for Sanket_2

Migrating from one database to another is never a smooth operation, you might be setting yourself up for a lot of effort. Plus the licenses required for MS-SQL might be quite heavy, which is going to have an impact on the sustainability of such a project. Honestly, what you are …

Member Avatar for Ewald Horn
0
306
Member Avatar for mathijs

Natural language generation is a rather advanced topic. Do you need the text to just LOOK natural, as in what is generated by http://www.lipsum.com/ or do you want actual English, as an example langauge? Generating text that looks natural is hard enough, generating readible, sensible language is a bit tougher. …

Member Avatar for mathijs
0
124
Member Avatar for katongo360

Well, that depends on what you mean by mobile development. Do you mean mobile applications, mobile-friendly websites, native applications, hybrid applications? And, most importantly, which platform do you want to start with? Windows phone, iPhone, Android, Blackberry, J2ME... This is a tremendously large field, I suggest figuring out what you …

Member Avatar for Ewald Horn
0
133
Member Avatar for rzeune

I've had tremendous success using a bit of a cheat - I have a Python script that fires and generates HTML pages that are served on a Raspberry Pi (very similar to your setup) that includes JSON data required to draw charts with http://www.chartjs.org/ - This job fires every few …

Member Avatar for rzeune
0
295
Member Avatar for Patrick_3
Member Avatar for twince.kumargarg

You might want to check the power management settings in the BIOS. On some machines, you need to enable power management by the OS, otherwise it doesn't allow the OS to shut down the machine completely.

Member Avatar for Deep Modi
0
158
Member Avatar for eli.megargel

If you are using the old heatsink, remember, it might not be transferring heat fast enough for the new CPU. Did you thoroughly clean the old heatsink before reusing it? It's critical that you remove all heat-conductive paste first, then apply sufficient, new paste before applying an older heatsink to …

Member Avatar for caperjack
0
260
Member Avatar for Arin_1

The first error is easy - you are not specifying a return type. In Java, only constructors do not specify return types. Did you copy and paste this code into a new .java file? It looks like the original file was called MineCraftLoginReader.java - but you've changed that. Java requires …

Member Avatar for Ewald Horn
0
668

The End.