|
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):
Pick the hardest piece and do that first into an exciting project of how to write a tool (or macro) to do it effortlessly, then I get my teeth stuck and ....
In the task and try forget about how I feel about doing it.
|
|
A (non-technical) friend of mine has asked me how to make a website. I get this question all the time. After a few questions I found out that she has an idea that could turn into a commercial site. I described three options to her:
a) Get a book/enroll...
Started by Luke CK on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
So this question is probably 'How ....
You don't, you buy one.
Unless you're a web designer, 'how do I make a website' is a similar question to 'how do I make a television'.
They will follow their own course of action.
|
|
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.
|
Ask your Facebook Friends
|
I have a class as follows:
private class LanePair { public int cameraNumber; public Nest nest1, nest2; public LanePairStatus status = LanePairStatus.TIMER_OFF; Timer timer = new Timer(); public LanePair(int cameraNunber, Nest nest1, Nest nest2) { this...
Started by FallSe7en on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I do this sometimes:
public void.
This);
or
this.DoAskForLaneClear();
I don't see where DoAskForLaneClear() is defined though.
|
|
I have to admit in all my work with Java, I've never come across the need for a Java union (like the C union, not the SQL one) and I cannot find an answer here on SO. Admittedly, most of my work in Java has been at higher abstractions that bit-fiddling...
Started by paxdiablo on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Java.lang.Double contains method to do this (doubleToLongBits etc.)
Union'ing between pointer types (or between.
|
|
Could the superusers please list some good proxies and proxy tutorials.
Also:
How do I use a proxy to make it appear like I am in another country? I want to hide my IP addresses location. Preferably with rapid browsing even with the proxy.
Started by Dynamic I on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
This depends why you want to hide you IP address (as this will measure how untraceable you of the VM so if you are planning to do something risky (if, for instance, you live under an oppressive.
|
|
It is a seemingly taboo subject. I imagine I want people to tell me I have a bad idea or did something totally wrong... but no one ever does. Of course I am part of the same problem, a good friend of mine is really smart, reads tech blogs, and goes to...
Started by David on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
Some people get defensive or are sensitive no matter how you cycles to our process and....
You can only try.
If you let your (good) results do to this approach, others won't.
To focus on continually improving your own skills and abilities .
|
|
Background: I need to setup a search engine for my classifieds site, which is PHP and Mysql based.
I have downloaded Zend Framework and have no clue what to do with it. My webhosting provider says they don't support changing the php.ini file, and all ...
Started by Camran on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit: Hey, check this out ! It's about.
Otherwise I would consider asking a new question specifically looking for examples on how to use Zend_lucene.
Understanding how it works and setting it up.
|
|
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.
|
|
Here is what what I understand so far:
Java beans are just to help other things (visual things?) interact with your code. I think that this is mostly for UI stuff because it is easier to design this visually. Is it bad practice to use Java beans for non...
Started by sixtyfootersdude on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This is actually a perfect....
As far as Java Beans, the original use of them was for GUI-programming .
Container to control how the actual implementation code was called, and to transparently do things like that you or I would do it.
|