stuck

Getting stack trace from a running Python application

I have this Python application that gets stuck from time to time and I can't find out where. Is there any way to signal Python interpreter to show you the exact code that he's running (somekind of stacktrace on-the-fly)? ...

what are the techniques you follow if you are stuck with a programming problem

When I am stuck with a problem, I search Google for code snippets. I look at isolating the problem, so that I can better explain it to others in order to get answers. What are the search techniques you use to find the solution to your problem? I started asking questions in stackoverflow.com . What other techniques or methods do you fo...

What do you do when you're stuck?

I've been working on a project and there is a "must" kind of a deal breaker for the whole project. I asked around, asked in SO ( with 550 bounty ), spend about 3 days to find a solution. I found the solution but couldn't implement it in .NET. At the end I stuck. Now what should I do? I was thinking about going to a rentacoder alike ...

Ajax won't get past readyState 1, why?

Hi, i'm trying to get this function to work, which does a request for parameter 'url' then sends the responseText to 'callback' which is a function. But it seems that it only gets to readyState 1 (thanks to the firebug commands). Here it is: function Request(url, callback){ if (window.XMLHttpRequest) { // Mozilla, Safari, ... httpR...

eclipse stuck when building workspace

I am using eclipse 3.4.1 Java EE under Vista. It seems to like getting stuck when building my workspace. Canceling the build doesn't seem to do anything as well. Why is this happening and how do I fix the problem? ...

Ways to corner a stickiness bug

How to determine exactly what a piece of software is doing when it is stuck, unresponsive to user input and not updating its display? I have tried oprofile, which records what function is executing, but it's not giving me enough clues. It counts everything that happens during the time it's running, when I need to see what's happen...

Kill child process from main app

I have a Delphi server that run python scripts in the background (they run similar to "python Sync.py **params**"). This scripts can do things like connect to external servers, open ssh connections and scary stuff where they can hang. I need to detect if they hang, and kill it. Also, if the server is closed, and want to kill the proces...

Can't compress my App for distribution

Hi, Compression process for one of my Applications build gets stuck and never finishes the compression process (eternally stating "2.6 MB of 2.7 MB about 5 sec"). I couldn't find the solution by googling - even though I am not the first one to have this issue. Does any body knows this issue? Thanks- Nir. ...

Does the StuckThreadMaxTime parameter in Weblogic 10.3 aborts the thread ?

I get below message on application console when a some process takes unusually long time to complete. I am having doubt whether this message implies that my thread is aborted or can it continue after this ? <[STUCK] ExecuteThread: '0' for q ueue: 'weblogic.kernel.Default (self-tuning)' has been busy for "609" seconds working on...

While programming, what to do when facing with a seemingly unsolvable situation with a time limit?

This is not a technical question, but rather a social and methodical one. I am a computer sciences student and I usually have really tough programming assignments. I don`t know if it is only happening to me but sometimes, particularly when deadline is approaching, i find myself in a harsh situation. I cannot find my mistake in the code o...

kelvinluck jQuery datePicker: 2 inline calendars - i need to set EndDate of 2nd on selecting 1st calendar

Hi all I'm stuck. Tried all the angles but i cant seem to get it working. I have 2 inline calendars. When i select a date from the dtFrm calendar it sets the date on the dtTo calendar as expected. I just cant seem to set the EndDate of the dtTo calendar. Anyone manage to solve this one? Thanks! Lance using:jquery.datePicker.min-2...

QT APPlication not exiting , Remain in Memory

Hello and Good Morning , I have problem using QT application . I am posting little code here QApplication a(argc, argv); QString path = qApp->applicationDirPath(); qApp->setQuitOnLastWindowClosed(false); a.addLibraryPath(path+"/plugins"); TryQt w; w.show(); return a.exec(); this is how i am starting my Application . In the A...

Populate Nodes with Delimited String

My programmer's block is especially bad today, maybe you can help get me moving again?! Supplement I'm trying to parse out some CSV's from a legacy program we are trying to support. The part I'm trying to abstract is stored by the old program in a string "Channel.Device.Element1.Element2.Tag:Description" I am now storing this data ...

ILIAS plugin development

I'm working with a learning management system called ILIAS; trying to develop a plugin for the PersonalDesktopHook [pdhk] plugin slot. Sadly I'm stuck with deploying the simplest plugin: Created a directory for my plugin: ilias/Customizing/global/plugins/Services/PersonalDesktop/PluginName Created a plugin.php file as describe...

python app gets stuck on shuffle and loop

I am working on this small little piece in python and when I run it, It never gets past the print 'c' line and is stuck on the while loop. What am I doing wrong? link to text file: http://downloads.sourceforge.net/wordlist/12dicts-5.0.zip enter code here import sys import random inp = open('5desk.txt', 'r') lis = inp.readlines() inp.cl...

Explorer 7 is stuck on 100% CPU / got stack trace

I surf to a web page (the web page belong to my company...) and my explorer is stuck on 100% (desktop, windows XP, 1.5G, IE7, SP3) I'm not sure I have all the pdb and the information needed but the call stack from analyzed dmp file in dbg is below - does it look familiar msls31!InitGroupChunkExt+0x11a msls31!InitGroupChunkExt+0x25e ...

TFS 2010 warehouse job never leaves the running state

Hello StackOverFlow, I am at my wit's end here after spending most of this week tearing my hair out and swearing at TFS so I hope someone can help :) We have recently migrated to TFS 2010 using the MSF For Agile process template and we make use of such reports as the Burndown, User Stories progress etc. Up until 13/10/10, our warehousi...

Why does my Accelerometer Image stick to the side of the screen?

I have been working on this for days but cannot find a solution. Pretty much my acclerometer code is causing the moving image to get stuck whenever it hits the side of the screen. It causes the user to tilt the device more than needed to get it unstuck. Hopefully someone can help me. Square is the moving image In the viewdidload method ...