|
As anyone who has been perusing the media sections of various broadsheet newspapers and a couple of comedy websites recently will be aware, quite a bit of information about the upcoming "Box Of Slice" has leaked out recently. Unfortunately, not all of...
Started by TJ on
, 30 posts
by 16 people.
Answer Snippets (Read the full thread at cookdandbombd):
And haven't you got one too many "do"s in the first part of the title?
Seriously, thanks for the info 'do's' in the first lot up there....
Just can't act, can they? All they do is talk awkwardly in their silly little voices and look.
|
|
When starting a programming project, how do you jump start yourself to do a task that you just despise doing?
Started by Jason on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Everything after that is a breeze....
Pick the hardest piece and do that first.
I find if I break up the project into small manageable tasks and look at each in the task and try forget about how I feel about doing it.
And do that first.
|
|
I went to the thrift store up the street today and found these FAB.YOU.LOUS pants. I'm mailing them to Jan because I think she'd look just fine and dandy in them.
DISCUSS!
Started by jimmy540 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at poz):
Aroma
Jan Perfect for the Baptist Kirk.
|
Ask your Facebook Friends
|
When do you know it's time to refactor/review some piece of code ? And better yet, when do you do it?
Probably like others, I've found myself knowing that something needs a refactor/review but deadlines and management left no time for that. I'd also like...
Started by deathy on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
I usually don't....
Refactoring is something I do continuously through development designed and factored code.
I'm constantly doing it as I develop new code time you refactor code.
Isn't something I set aside time to do separately.
|
|
Hi,
I would like to know how much time (in percent) does JavaScript development takes at your work. I work with complex rich-internet applications and i spend most of my time in JavaScript development.
And you: how much time do you you spend in JavaScript...
Started by Arthur Ronald F D Garcia on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
So I'll return the entire HTML I wish to render, for ajax calls, instead of building it up... .
I don't spend a lot of time at all; I use jQuery to do almost all the work, and then I keep things simple such that I avoid do much work elsewhere.
|
|
What do programmers do?
Do they
(1) Solve a problem, memorize the solution and when they face similar problems they do the coding from their memory(i.e. writes codes newly from previous experience but do not do any copy paste)?
and/or,
(2) Solve a problem...
Started by JMSA on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You do whatever works for you..
Source-code portions, that can help too ; what I generally do is think "oh, I did this on anothyer pertains to that particular job.
|
|
I am a junior dev in terms of commercial experience (had a short job - 3 months, doing .NET). Although in all the time I have been at home/job hunting, etc, I have learnt loads and written lots of code for myself and others, hopefully putting me in the...
Started by dotnetdev on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Where I work, "junior" (though we wouldn't.
A lot of the time this will be maintenance to do work on the same projects and the same exposure.
Will often get given the work that no one else wants to do*.
|
|
Let's say, for example, that a marketing group in your company asks you, a sole web developer, to build a widget (some type of web application, web feature, etc.) in 2 weeks.
Given the following hypothetical facts:
Your normal work duties involve building...
Started by GR1000 on
, 20 posts
by 20 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're looking to understand more programming, do it on your time....
Don't do it.
Your than that, then you probably will fail miserably.
Every problem will freak you out.
You will never really know how long it takes to do things.
|
|
I've used MyGeneration, and I love it for generating code that uses Data Access Applicaiton Blocks from Microsoft for my Data Access Layer, and keeping my database concepts in sync with the domain I am modeling. Although, it took a steeper than expected...
Answer Snippets (Read the full thread at stackoverflow):
The OTA Schema is pretty....
So I started implementation.
I've used code generation for swizzle functions websites, I soon realized that it was going to be a very boring task to do it all the times.
Things you want to do that is not built in.
|
|
I was reviewing this morning a piece of code written by a beginner, when I found these lines:
If ... ElseIf ... ElseIf ... Endif
I told him "Please, Do Not Use This". And the other guy sitting aside (more experimented) said: "Oh no DoN't Use This!". I...
Started by Philippe Grondier on
, 18 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
Do not use:
Goto fall-through DON....
DON'T DO: Exception suppression
NEVER EVER
try { // stuff } catch(Exception e) {}
even if you it.
Of the line instead of the beginning:
(way I used to do it:)
SELECT Field1, Field2, Field3
vs.
|