|
I'm in the process of developing my first major project. It's a light-weight content management system.
I have developed all of my own framework for the project. I'm sure that will attract many flames, and a few 'tut-tut's, but it seems to be doing quite...
Started by EvilChookie on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's a couple I can think of off the top of my head:
How does your app perform as data sizes increase?... .
Performing well in your testing environment is a good start, but there's other issues you'll need to think about as well (if you haven't already) .
|
|
Like improv that was say, you thought of before a jam but you completely made it, and use it in the jam. Do you think that's cheating?
Started by EvilCheese on
, 16 posts
by 12 people.
Answer Snippets (Read the full thread at strat-talk):
If you're presenting....
That's a pre written solo.
That's a pre written solo.
That's not an improv.
|
|
Contact me at beth dot appel at gmail dot com.
Improv experience:
I've been taking classes since 2004 (that's 7 years!) at UCB and Magnet with a bunch of teachers. I was on UCB Harold Teams Monstro and CAPTCHA. I will help you find and play game, work...
Started by betafippel on
, 18 posts
by 16 people.
Answer Snippets (Read the full thread at improvresourcecenter):
All the better.
Of the smartest players, and somebody who approaches improv knowing exactly what she's doing.
|
Ask your Facebook Friends
|
Hello There,
I just wonder whether there is always room to improve or optimize the code or whether there is a certain point where no further improvement can be shown?
I believe this is very important question for knowing as far as i am concerned.
Thanks...
Started by Sarfraz on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Do you improve....
Do you improve readibilty/maintainability, but then at what cost.
So decide if it´s a yes or a no on your question :)
You may get to a point where you need to weigh improve to performace .
There is no perfect code.
|
|
What software do you use to improve your typing speed ?
Are there other thing (like finger exercises, theory book, whatever) I should have a look at to improve my speed and/or accuracy ?
Started by Brann on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at superuser):
They covered our hands with boxes....
[Obligatory reference to everyone's most hated touch-typing tutor, Mavis Beacon]
When I was in Highschool, we had to take a typing course .
I guess any program will do as long as you practice regularly .
I use ktouch.
|
|
What are the things you would like to recommend to improve architecture and coding skills ?
Started by Rachel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
How to improve my architecture design skills How to learn “good software design/architecture”? What is an excellent software architecture....
Read books (Code Complete, GOF) read other people's code This has been covered extensively in previous questions .
|
|
I like to improve my programming skill
Started by ratty on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In order to be truly great at something you must either be born with an innate ability to do it or you must throw yourself completely into learning and ... .
The best way to improve is to practice - the more you code, they better you will get at it.
|
|
Is there any problem with strcmp function and how can we improve it?
Thanks, Sandeep
Started by Sandeep on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
*/ int strcmp(const char *s1, const char *s2) { while (*s1 == *s2++) if (*s1++ == 0) return (0); return (*(unsigned char *)s1 - *(unsigned char *)--s2); }
Please tell us where you see... .
Here's a canonical implementation from OpenBSD:
/* * Compare strings.
|
|
The single most effective thing I have done to improve my soft skills is to take an acting class.
What is the single most effective thing you have done to improve your soft skills?
Related questions:
What is the single most effective thing that you have...
Answer Snippets (Read the full thread at stackoverflow):
And one thing that I learned there and I will never forget was... .
A few years ago I attended a workshop about communication .
Started answering questions here - the ability to explain complex things in a way other people can understand them is very useful .
|
|
List anything you think is great to improve c++ knowledge... Please be concrete when giving solutions.
Started by KJP on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
The....
Start with Scott Meyer's Effective C++.
Learning a language that has many different ways to solve the same problem, a wealth of undefined behavior, keywords that have multiple context-dependent meanings and an ambiguous grammar will never be fast .
|