|
I am decidedly a programmer, and not a UI designer, so when I am working on internal tools, I really struggle with laying out controls in a useful manner.
For example, all those questions I've been asking for the last two days have been for building this...
Started by FlySwat on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
Hope that helps!
I'm ....
While artwork and colors still do not come as naturally for me, practice is making me much better .
I found that reading About Face 3: The Essentials of Interaction Design by Alan Cooper really helped my development in UI Design .
|
|
Hi I have a specific problem of accuracy of one GPS relative to another GPS over a distance of 30 - 50 metres apart. I suppose the radical change of thinking is that I dont need its location on the surface of the earth but its relative position to another...
Started by Tim on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
There are many reasons that you may....
If you have surveying-quality equipment, maybe if you stand still for a long time you can get the distance down to 2 cm .
If you have a standalone GPS receiver your positioning error is on the meter level .
Good luck.
|
|
I have found a CSV parsing issue with FasterCSV (1.5.0) which seems like a genuine bug, but which I'm hoping there's a workaround for.
Basically, adding a space after the separator (in my case a comma) when the fields are enclosed in quotes generates ...
Started by Olly on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So this means you have started a field....
Leading/trailing spaces in CSV format are not ignored, they are considered part of a field .
The MalformedCSVError is correct here.
Maybe you could set the :col_sep: option to ', ' to make it parse files like that .
|
Ask your Facebook Friends
|
I'm looking for advanced strategies for dealing with User Object Handle limits when building heavy-weight windows interfaces. Please explain how you overcame or bypassed this issue using SWT or direct Windows GUI APIs. The only thing I am not interested...
Started by Spencer Stejskal on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Handle count? Each handle can consume....
See "Windowless controls are not magic" , by Raymond Chen
First off, are you sure the problem isn't desktop heap vs .
They are designed for precisely this situation.
You should think about using windowless controls.
|
|
I want to change the value of a particular string index, but unfortunately
string[4] = "a"
raises a TypeError , because strings are immutable ("item assignment is not supported").
So instead I use the rather clumsy
string = string[:4] + "a" + string[4...
Started by ignoramus on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Mystring=list("abcdef") mystring[4]="Z" print ''.join(mystring)
>>> from UserString import MutableString >>> s = MutableString('abcd') >>> s[2] = 'e' >>> print s abed
The strings in Python are immutable, just like... .
|
|
Is there a way to unlock Windows files without downloading a utility?
I have a few files on my Windows XP C: drive that are very old and very useless. When I try to delete these files I get the following message:
Cannot delete FILENAME.zip: It is being...
Started by Adrian Dunston on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Use msconfig and start ....
First you should figure out what that process is and determine if the files really aren't used any more or not .
If you reboot and the files are still locked, then there is some process on your machine that is still using them .
|
|
Advice/suggestions needed for a bit of application design.
I have an application which uses 2 tables, one is a staging table, which many separate processes write to, once a 'group' of processes has finished, another job comes along a aggregates the results...
Started by Matthew Watson on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Another (but I think probably worse) option is to create a new staging table with the groups that haven... .
You can truncate individual group table following each aggregation.
Loading each group into a separate table sounds like a fine plan to reduce redo .
|
|
What are the odds of the Blues overcoming the 0-3 deficit? You think they can still beat the Kings in the semi-finals by winning 4 straight games and advance to the Conference finals?
Started by Tom on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at yahoo):
Not likely going to happed but the Blues did play great all year and in the first round season they are also gettin petriangelo back next game so they increases... .
Not impossible, but very unlikely.
It's happened 3 times in NHL history.
The odds are very slim.
|
|
I didn't know where to post this so I thought this might do. I receive these daily meditations from American Catholic. This one really stood out to me.
Overcoming Sin
If we resist sin out of love for God, he can make a magnificent dwelling in our soul...
Started by Lee on
, 15 posts
by 6 people.
Answer Snippets (Read the full thread at freeforums):
Told me this,
'Don't worry about not overcoming this sin just strive the best you can to fight.
|
|
Overcoming fear - 100 stranger's project
Hi all. i am a massive fan of this type of photography and always wanted to try it myself!
Well today i tried and failed to even ask a single person! i was out in the nice warm weather today around brick lane ...
Started by jonneymendoza on
, 11 posts
by 6 people.
Answer Snippets (Read the full thread at talkphotography):
Once you've done that you can build....
People are dressed up and there are loads of people taking pictures so they just kind of expect to have their photo taken .
How about going to an event in the same vein as the Haworth 1940s weekend that has just gone .
|