Doing something right before you need it - expression for this?What is the word for “doing something in various steps”?A better word for trying/ doing something you are not good at yetShould-I-go-left-or-right confusion when you're walking past someone- is there an expression for that?Need the right term about a roll of toilet paperLooking for an expressionAn adjective for a woman showing lots of skin?The right adjective for “fry”Word for selling something that you don't use anymorebuild the culture of something/ culture buildingIs “uncounted day” the right term for this case?
Do VLANs within a subnet need to have their own subnet for router on a stick?
Smoothness of finite-dimensional functional calculus
LaTeX closing $ signs makes cursor jump
How to find program name(s) of an installed package?
Why Is Death Allowed In the Matrix?
Why are electrically insulating heatsinks so rare? Is it just cost?
Font hinting is lost in Chrome-like browsers (for some languages )
How to test if a transaction is standard without spending real money?
What is the word for reserving something for yourself before others do?
What do you call a Matrix-like slowdown and camera movement effect?
Why dont electromagnetic waves interact with each other?
Can divisibility rules for digits be generalized to sum of digits
What defenses are there against being summoned by the Gate spell?
How can I make my BBEG immortal short of making them a Lich or Vampire?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Why can't I see bouncing of a switch on an oscilloscope?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Example of a continuous function that don't have a continuous extension
Writing rule stating superpower from different root cause is bad writing
Can I ask the recruiters in my resume to put the reason why I am rejected?
TGV timetables / schedules?
What's the output of a record cartridge playing an out-of-speed record
How does strength of boric acid solution increase in presence of salicylic acid?
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
Doing something right before you need it - expression for this?
What is the word for “doing something in various steps”?A better word for trying/ doing something you are not good at yetShould-I-go-left-or-right confusion when you're walking past someone- is there an expression for that?Need the right term about a roll of toilet paperLooking for an expressionAn adjective for a woman showing lots of skin?The right adjective for “fry”Word for selling something that you don't use anymorebuild the culture of something/ culture buildingIs “uncounted day” the right term for this case?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?
I am not sure if there's such an expression. Sometimes, people do a lot of things in advance and it turns out that 90% of what they decided to do will never have any use to them, and there are some efficient people who only do what's necessary. Is there a word for the philosophy or manner of behaving of the people in the latter example?
word-request
add a comment |
Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?
I am not sure if there's such an expression. Sometimes, people do a lot of things in advance and it turns out that 90% of what they decided to do will never have any use to them, and there are some efficient people who only do what's necessary. Is there a word for the philosophy or manner of behaving of the people in the latter example?
word-request
add a comment |
Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?
I am not sure if there's such an expression. Sometimes, people do a lot of things in advance and it turns out that 90% of what they decided to do will never have any use to them, and there are some efficient people who only do what's necessary. Is there a word for the philosophy or manner of behaving of the people in the latter example?
word-request
Is there an expression that means doing something right before you will need it rather than doing it in case you might need it?
I am not sure if there's such an expression. Sometimes, people do a lot of things in advance and it turns out that 90% of what they decided to do will never have any use to them, and there are some efficient people who only do what's necessary. Is there a word for the philosophy or manner of behaving of the people in the latter example?
word-request
word-request
edited 2 days ago
J.R.♦
100k8129249
100k8129249
asked Apr 3 at 0:36
frbsfokfrbsfok
498111
498111
add a comment |
add a comment |
12 Answers
12
active
oldest
votes
How about the term "just-in-time?" It is used in the context of manufacturing. For example, it describes a factory manufacturing system where the raw materials are brought in as they are needed.
https://en.wiktionary.org/w/index.php?title=just-in-time&oldid=45591851
Example: "Acme Widget Manufacturing uses a just-in-time inventory system in their factories."
Perhaps you could adapt it to your own needs.
1
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
6
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
1
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
add a comment |
On-demand can be used to describe an action performed or service provided only when known to be needed. Contrast with something that is done provisionally, which would be done just in case it is needed.
Consider the on-demand printing of books, or the on-demand provisioning of computing resources, both of which are specifically intended to delay some (potentially expensive) action until there is no doubt it is needed.
New contributor
add a comment |
Here are three related Extreme Programming practices. They avoid doing unnecessary work now, so that you can have a useful thing both now and later:
- "You ain't gonna need it", or
"You aren't gonna need it." - If you do need it,
Do the simplest thing that could possibly work. - The three rules of optimization:
- Don't.
- Not yet.
- Use a profiler.
"Yagni" is an acronym for the first concept, which means:
"Always implement things when you actually need them,
never when you just foresee that you need them."
Even if you're totally, totally, totally sure that you'll need a feature later on, don't implement it now. Usually, it'll turn out either
a) you don't need it after all, or
b) what you actually need is quite different from what you foresaw needing earlier.
This doesn't mean you should avoid building flexibility into your code. It means you shouldn't over-engineer something based on what you think you might need later on.
This also follows the KISS principle:
Keep it simple, stupid!
The page goes on to put this practice in the context of Extreme Programming's other practices. It quotes Kent Beck as writing,
"You aren't gonna need it" is not the same as forgetting experience, acting stupid, or abandoning morals. It is a challenge to developers to abandon their fears of a far-flung future that may never happen and do an absolutely stellar job of solving today's problems today.
see also: premature optimization
– qwr
Apr 3 at 6:36
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
add a comment |
Perhaps the terms you want are pro-active and reactive?
I remember a TV ad campaign from many years ago where the issue of preventative maintenance was addressed. A mechanic in a garage is addressing the audience and mentions a customer who had a loose bolt holding the muffler on his car who didn't do anything about it; eventually, the muffler fell off. The customer paid a lot more to replace his muffler than he would have had to pay to get the bolt tightened. The mechanic's final line was "You can pay me now or you can pay me later...."
That's not QUITE the same thing as the original question was asking - a loose bolt will inevitably lead to a muffler falling off whereas the work the pro-active person does in the original question will NOT necessarily prevent ANY problem - but it's in the same territory.
Hmm. Maybe instead of pro-active, a better word might be anticipatory. The anticipatory person wants to be ready for any contingency, even if the odds of that contingency happening is very slight. The reactive person doesn't want to waste a lot of time on what ifs so they just react when and if a problem does occur.
New contributor
add a comment |
I'm not aware of a precise, unambiguous term for it. As the other answers show, there are terms for certain contexts, but nothing general.
Personally, I would go with pragmatic vs prepared.
A person that is pragmatic about his or her work will do what is necessary and avoid doing things that might not be needed, while someone who is prepared about his or her work will do things in advance on the chance that they might be needed in the future.
New contributor
add a comment |
In programming you would call this lazy. For example, lazy evaluation of an expression means you will only evaluate the expression if and when it's needed.
The word lazy has a negative connotation, so it might not be suitable in other cases.
New contributor
1
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
add a comment |
Both parties have planned their time in advance, the only difference is that the first party has planned everything whether it is important and necessary to them or not, while the second party has planned only the substantial and needed things. This all leads me to think of the verb "prioritize" which means:
To decide which of a group of things are the most important so that you can deal with them first.
Cambridge Dictionary
It is an expression that is very common to use when dealing with time. So, in order to use your time effectively as much as possible, you should prioritize your work.
- Prioritizing has never been a last minute thing to do; thus it has implicitly the indication and meaning of planning your time beforehand productively.
add a comment |
Some good answers so far, but I'll also submit:
At need: only doing something when it's necessary to do so. (This is a little bit uncommon in everyday, U.S. English, and will probably read as formal).
We have our set of reports that we write each month, but we also have some that are produced at need.
There are lots of variations on this which you might encounter, like as necessary. Jasper pointed out in comments a couple more, including when needed and as needed, the latter of which especially is very commonly heard.
add a comment |
Doing something at the last minute is another common expression.
Packing for a trip, "I'm going to leave the snacks in the fridge until the last minute so they don't spoil."
A teacher might warn a student "This project will require a lot of time; don't leave it to the last minute."
When used as part of the larger expression doing everything at the last minute, it implies the subject is lazy, unmotivated, overworked or otherwise struggling to meet objectives.
New contributor
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
add a comment |
Depending on what you're doing, this idiom might be useful:
We'll cross that bridge when we come to it.
an expression that means you will not worry about a possible future problem but will deal with it if it happens - Cambridge Dictionary.
Essentially, you don't put in time or effort into (or worry about) a possibility, until you're actually at a stage where the possibility is nearly a certainty.
1
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
1
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
add a comment |
One informal expression which I think comes pretty close is doing things "on the hoof". However, it seems to be chiefly a British expression. Here's a definition from Collins via thefreedictionary.
- If you do something on the hoof, you do it as a quick reaction to something that has happened, rather than planning it carefully. They claimed that policy was being made on the hoof. In that situation, you have to make decisions on the hoof.
add a comment |
I believe this is a phenomenon c
known as "planning."
I am not familiar with the nuances of the event, but I understand those who observe experience a lower degree of stress than Master Procrastinators.
New contributor
3
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
add a comment |
protected by Community♦ 2 days ago
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
12 Answers
12
active
oldest
votes
12 Answers
12
active
oldest
votes
active
oldest
votes
active
oldest
votes
How about the term "just-in-time?" It is used in the context of manufacturing. For example, it describes a factory manufacturing system where the raw materials are brought in as they are needed.
https://en.wiktionary.org/w/index.php?title=just-in-time&oldid=45591851
Example: "Acme Widget Manufacturing uses a just-in-time inventory system in their factories."
Perhaps you could adapt it to your own needs.
1
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
6
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
1
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
add a comment |
How about the term "just-in-time?" It is used in the context of manufacturing. For example, it describes a factory manufacturing system where the raw materials are brought in as they are needed.
https://en.wiktionary.org/w/index.php?title=just-in-time&oldid=45591851
Example: "Acme Widget Manufacturing uses a just-in-time inventory system in their factories."
Perhaps you could adapt it to your own needs.
1
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
6
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
1
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
add a comment |
How about the term "just-in-time?" It is used in the context of manufacturing. For example, it describes a factory manufacturing system where the raw materials are brought in as they are needed.
https://en.wiktionary.org/w/index.php?title=just-in-time&oldid=45591851
Example: "Acme Widget Manufacturing uses a just-in-time inventory system in their factories."
Perhaps you could adapt it to your own needs.
How about the term "just-in-time?" It is used in the context of manufacturing. For example, it describes a factory manufacturing system where the raw materials are brought in as they are needed.
https://en.wiktionary.org/w/index.php?title=just-in-time&oldid=45591851
Example: "Acme Widget Manufacturing uses a just-in-time inventory system in their factories."
Perhaps you could adapt it to your own needs.
edited Apr 3 at 1:25
answered Apr 3 at 1:08
Don B.Don B.
1,796315
1,796315
1
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
6
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
1
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
add a comment |
1
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
6
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
1
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
1
1
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!
– AakashM
Apr 3 at 8:30
6
6
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
‘Just-in-time’ is what sprang to my mind, too. It's also used in computing: en.wikipedia.org/wiki/Just-in-time_compilation
– gidds
Apr 3 at 8:39
1
1
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
"Just in time" is widely understood, but in situations were many people are working together this has been formalized in to a system known by its Japanese name Kanban. This has the dual objectives of making sure things are not done before they are required, and also that things that are required are done right, so there are no delays caused by fixing problems discovered later.
– alephzero
Apr 3 at 12:57
add a comment |
On-demand can be used to describe an action performed or service provided only when known to be needed. Contrast with something that is done provisionally, which would be done just in case it is needed.
Consider the on-demand printing of books, or the on-demand provisioning of computing resources, both of which are specifically intended to delay some (potentially expensive) action until there is no doubt it is needed.
New contributor
add a comment |
On-demand can be used to describe an action performed or service provided only when known to be needed. Contrast with something that is done provisionally, which would be done just in case it is needed.
Consider the on-demand printing of books, or the on-demand provisioning of computing resources, both of which are specifically intended to delay some (potentially expensive) action until there is no doubt it is needed.
New contributor
add a comment |
On-demand can be used to describe an action performed or service provided only when known to be needed. Contrast with something that is done provisionally, which would be done just in case it is needed.
Consider the on-demand printing of books, or the on-demand provisioning of computing resources, both of which are specifically intended to delay some (potentially expensive) action until there is no doubt it is needed.
New contributor
On-demand can be used to describe an action performed or service provided only when known to be needed. Contrast with something that is done provisionally, which would be done just in case it is needed.
Consider the on-demand printing of books, or the on-demand provisioning of computing resources, both of which are specifically intended to delay some (potentially expensive) action until there is no doubt it is needed.
New contributor
New contributor
answered Apr 4 at 0:28
Myk WillisMyk Willis
2762
2762
New contributor
New contributor
add a comment |
add a comment |
Here are three related Extreme Programming practices. They avoid doing unnecessary work now, so that you can have a useful thing both now and later:
- "You ain't gonna need it", or
"You aren't gonna need it." - If you do need it,
Do the simplest thing that could possibly work. - The three rules of optimization:
- Don't.
- Not yet.
- Use a profiler.
"Yagni" is an acronym for the first concept, which means:
"Always implement things when you actually need them,
never when you just foresee that you need them."
Even if you're totally, totally, totally sure that you'll need a feature later on, don't implement it now. Usually, it'll turn out either
a) you don't need it after all, or
b) what you actually need is quite different from what you foresaw needing earlier.
This doesn't mean you should avoid building flexibility into your code. It means you shouldn't over-engineer something based on what you think you might need later on.
This also follows the KISS principle:
Keep it simple, stupid!
The page goes on to put this practice in the context of Extreme Programming's other practices. It quotes Kent Beck as writing,
"You aren't gonna need it" is not the same as forgetting experience, acting stupid, or abandoning morals. It is a challenge to developers to abandon their fears of a far-flung future that may never happen and do an absolutely stellar job of solving today's problems today.
see also: premature optimization
– qwr
Apr 3 at 6:36
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
add a comment |
Here are three related Extreme Programming practices. They avoid doing unnecessary work now, so that you can have a useful thing both now and later:
- "You ain't gonna need it", or
"You aren't gonna need it." - If you do need it,
Do the simplest thing that could possibly work. - The three rules of optimization:
- Don't.
- Not yet.
- Use a profiler.
"Yagni" is an acronym for the first concept, which means:
"Always implement things when you actually need them,
never when you just foresee that you need them."
Even if you're totally, totally, totally sure that you'll need a feature later on, don't implement it now. Usually, it'll turn out either
a) you don't need it after all, or
b) what you actually need is quite different from what you foresaw needing earlier.
This doesn't mean you should avoid building flexibility into your code. It means you shouldn't over-engineer something based on what you think you might need later on.
This also follows the KISS principle:
Keep it simple, stupid!
The page goes on to put this practice in the context of Extreme Programming's other practices. It quotes Kent Beck as writing,
"You aren't gonna need it" is not the same as forgetting experience, acting stupid, or abandoning morals. It is a challenge to developers to abandon their fears of a far-flung future that may never happen and do an absolutely stellar job of solving today's problems today.
see also: premature optimization
– qwr
Apr 3 at 6:36
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
add a comment |
Here are three related Extreme Programming practices. They avoid doing unnecessary work now, so that you can have a useful thing both now and later:
- "You ain't gonna need it", or
"You aren't gonna need it." - If you do need it,
Do the simplest thing that could possibly work. - The three rules of optimization:
- Don't.
- Not yet.
- Use a profiler.
"Yagni" is an acronym for the first concept, which means:
"Always implement things when you actually need them,
never when you just foresee that you need them."
Even if you're totally, totally, totally sure that you'll need a feature later on, don't implement it now. Usually, it'll turn out either
a) you don't need it after all, or
b) what you actually need is quite different from what you foresaw needing earlier.
This doesn't mean you should avoid building flexibility into your code. It means you shouldn't over-engineer something based on what you think you might need later on.
This also follows the KISS principle:
Keep it simple, stupid!
The page goes on to put this practice in the context of Extreme Programming's other practices. It quotes Kent Beck as writing,
"You aren't gonna need it" is not the same as forgetting experience, acting stupid, or abandoning morals. It is a challenge to developers to abandon their fears of a far-flung future that may never happen and do an absolutely stellar job of solving today's problems today.
Here are three related Extreme Programming practices. They avoid doing unnecessary work now, so that you can have a useful thing both now and later:
- "You ain't gonna need it", or
"You aren't gonna need it." - If you do need it,
Do the simplest thing that could possibly work. - The three rules of optimization:
- Don't.
- Not yet.
- Use a profiler.
"Yagni" is an acronym for the first concept, which means:
"Always implement things when you actually need them,
never when you just foresee that you need them."
Even if you're totally, totally, totally sure that you'll need a feature later on, don't implement it now. Usually, it'll turn out either
a) you don't need it after all, or
b) what you actually need is quite different from what you foresaw needing earlier.
This doesn't mean you should avoid building flexibility into your code. It means you shouldn't over-engineer something based on what you think you might need later on.
This also follows the KISS principle:
Keep it simple, stupid!
The page goes on to put this practice in the context of Extreme Programming's other practices. It quotes Kent Beck as writing,
"You aren't gonna need it" is not the same as forgetting experience, acting stupid, or abandoning morals. It is a challenge to developers to abandon their fears of a far-flung future that may never happen and do an absolutely stellar job of solving today's problems today.
edited Apr 3 at 20:12
answered Apr 3 at 4:34
JasperJasper
19.6k43873
19.6k43873
see also: premature optimization
– qwr
Apr 3 at 6:36
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
add a comment |
see also: premature optimization
– qwr
Apr 3 at 6:36
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
see also: premature optimization
– qwr
Apr 3 at 6:36
see also: premature optimization
– qwr
Apr 3 at 6:36
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
Another from this community is deferring decisions to the last responsible moment. The idea is to optimize the amount of information available at the time you make a decision.
– Patrick McElhaney
yesterday
add a comment |
Perhaps the terms you want are pro-active and reactive?
I remember a TV ad campaign from many years ago where the issue of preventative maintenance was addressed. A mechanic in a garage is addressing the audience and mentions a customer who had a loose bolt holding the muffler on his car who didn't do anything about it; eventually, the muffler fell off. The customer paid a lot more to replace his muffler than he would have had to pay to get the bolt tightened. The mechanic's final line was "You can pay me now or you can pay me later...."
That's not QUITE the same thing as the original question was asking - a loose bolt will inevitably lead to a muffler falling off whereas the work the pro-active person does in the original question will NOT necessarily prevent ANY problem - but it's in the same territory.
Hmm. Maybe instead of pro-active, a better word might be anticipatory. The anticipatory person wants to be ready for any contingency, even if the odds of that contingency happening is very slight. The reactive person doesn't want to waste a lot of time on what ifs so they just react when and if a problem does occur.
New contributor
add a comment |
Perhaps the terms you want are pro-active and reactive?
I remember a TV ad campaign from many years ago where the issue of preventative maintenance was addressed. A mechanic in a garage is addressing the audience and mentions a customer who had a loose bolt holding the muffler on his car who didn't do anything about it; eventually, the muffler fell off. The customer paid a lot more to replace his muffler than he would have had to pay to get the bolt tightened. The mechanic's final line was "You can pay me now or you can pay me later...."
That's not QUITE the same thing as the original question was asking - a loose bolt will inevitably lead to a muffler falling off whereas the work the pro-active person does in the original question will NOT necessarily prevent ANY problem - but it's in the same territory.
Hmm. Maybe instead of pro-active, a better word might be anticipatory. The anticipatory person wants to be ready for any contingency, even if the odds of that contingency happening is very slight. The reactive person doesn't want to waste a lot of time on what ifs so they just react when and if a problem does occur.
New contributor
add a comment |
Perhaps the terms you want are pro-active and reactive?
I remember a TV ad campaign from many years ago where the issue of preventative maintenance was addressed. A mechanic in a garage is addressing the audience and mentions a customer who had a loose bolt holding the muffler on his car who didn't do anything about it; eventually, the muffler fell off. The customer paid a lot more to replace his muffler than he would have had to pay to get the bolt tightened. The mechanic's final line was "You can pay me now or you can pay me later...."
That's not QUITE the same thing as the original question was asking - a loose bolt will inevitably lead to a muffler falling off whereas the work the pro-active person does in the original question will NOT necessarily prevent ANY problem - but it's in the same territory.
Hmm. Maybe instead of pro-active, a better word might be anticipatory. The anticipatory person wants to be ready for any contingency, even if the odds of that contingency happening is very slight. The reactive person doesn't want to waste a lot of time on what ifs so they just react when and if a problem does occur.
New contributor
Perhaps the terms you want are pro-active and reactive?
I remember a TV ad campaign from many years ago where the issue of preventative maintenance was addressed. A mechanic in a garage is addressing the audience and mentions a customer who had a loose bolt holding the muffler on his car who didn't do anything about it; eventually, the muffler fell off. The customer paid a lot more to replace his muffler than he would have had to pay to get the bolt tightened. The mechanic's final line was "You can pay me now or you can pay me later...."
That's not QUITE the same thing as the original question was asking - a loose bolt will inevitably lead to a muffler falling off whereas the work the pro-active person does in the original question will NOT necessarily prevent ANY problem - but it's in the same territory.
Hmm. Maybe instead of pro-active, a better word might be anticipatory. The anticipatory person wants to be ready for any contingency, even if the odds of that contingency happening is very slight. The reactive person doesn't want to waste a lot of time on what ifs so they just react when and if a problem does occur.
New contributor
New contributor
answered Apr 3 at 12:23
HenryHenry
1812
1812
New contributor
New contributor
add a comment |
add a comment |
I'm not aware of a precise, unambiguous term for it. As the other answers show, there are terms for certain contexts, but nothing general.
Personally, I would go with pragmatic vs prepared.
A person that is pragmatic about his or her work will do what is necessary and avoid doing things that might not be needed, while someone who is prepared about his or her work will do things in advance on the chance that they might be needed in the future.
New contributor
add a comment |
I'm not aware of a precise, unambiguous term for it. As the other answers show, there are terms for certain contexts, but nothing general.
Personally, I would go with pragmatic vs prepared.
A person that is pragmatic about his or her work will do what is necessary and avoid doing things that might not be needed, while someone who is prepared about his or her work will do things in advance on the chance that they might be needed in the future.
New contributor
add a comment |
I'm not aware of a precise, unambiguous term for it. As the other answers show, there are terms for certain contexts, but nothing general.
Personally, I would go with pragmatic vs prepared.
A person that is pragmatic about his or her work will do what is necessary and avoid doing things that might not be needed, while someone who is prepared about his or her work will do things in advance on the chance that they might be needed in the future.
New contributor
I'm not aware of a precise, unambiguous term for it. As the other answers show, there are terms for certain contexts, but nothing general.
Personally, I would go with pragmatic vs prepared.
A person that is pragmatic about his or her work will do what is necessary and avoid doing things that might not be needed, while someone who is prepared about his or her work will do things in advance on the chance that they might be needed in the future.
New contributor
New contributor
answered Apr 3 at 6:40
MorfildurMorfildur
1611
1611
New contributor
New contributor
add a comment |
add a comment |
In programming you would call this lazy. For example, lazy evaluation of an expression means you will only evaluate the expression if and when it's needed.
The word lazy has a negative connotation, so it might not be suitable in other cases.
New contributor
1
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
add a comment |
In programming you would call this lazy. For example, lazy evaluation of an expression means you will only evaluate the expression if and when it's needed.
The word lazy has a negative connotation, so it might not be suitable in other cases.
New contributor
1
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
add a comment |
In programming you would call this lazy. For example, lazy evaluation of an expression means you will only evaluate the expression if and when it's needed.
The word lazy has a negative connotation, so it might not be suitable in other cases.
New contributor
In programming you would call this lazy. For example, lazy evaluation of an expression means you will only evaluate the expression if and when it's needed.
The word lazy has a negative connotation, so it might not be suitable in other cases.
New contributor
edited 2 days ago
ikegami
1434
1434
New contributor
answered Apr 3 at 14:42
JesseJesse
611
611
New contributor
New contributor
1
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
add a comment |
1
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
1
1
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".
– kubanczyk
2 days ago
add a comment |
Both parties have planned their time in advance, the only difference is that the first party has planned everything whether it is important and necessary to them or not, while the second party has planned only the substantial and needed things. This all leads me to think of the verb "prioritize" which means:
To decide which of a group of things are the most important so that you can deal with them first.
Cambridge Dictionary
It is an expression that is very common to use when dealing with time. So, in order to use your time effectively as much as possible, you should prioritize your work.
- Prioritizing has never been a last minute thing to do; thus it has implicitly the indication and meaning of planning your time beforehand productively.
add a comment |
Both parties have planned their time in advance, the only difference is that the first party has planned everything whether it is important and necessary to them or not, while the second party has planned only the substantial and needed things. This all leads me to think of the verb "prioritize" which means:
To decide which of a group of things are the most important so that you can deal with them first.
Cambridge Dictionary
It is an expression that is very common to use when dealing with time. So, in order to use your time effectively as much as possible, you should prioritize your work.
- Prioritizing has never been a last minute thing to do; thus it has implicitly the indication and meaning of planning your time beforehand productively.
add a comment |
Both parties have planned their time in advance, the only difference is that the first party has planned everything whether it is important and necessary to them or not, while the second party has planned only the substantial and needed things. This all leads me to think of the verb "prioritize" which means:
To decide which of a group of things are the most important so that you can deal with them first.
Cambridge Dictionary
It is an expression that is very common to use when dealing with time. So, in order to use your time effectively as much as possible, you should prioritize your work.
- Prioritizing has never been a last minute thing to do; thus it has implicitly the indication and meaning of planning your time beforehand productively.
Both parties have planned their time in advance, the only difference is that the first party has planned everything whether it is important and necessary to them or not, while the second party has planned only the substantial and needed things. This all leads me to think of the verb "prioritize" which means:
To decide which of a group of things are the most important so that you can deal with them first.
Cambridge Dictionary
It is an expression that is very common to use when dealing with time. So, in order to use your time effectively as much as possible, you should prioritize your work.
- Prioritizing has never been a last minute thing to do; thus it has implicitly the indication and meaning of planning your time beforehand productively.
answered Apr 3 at 4:16
Tasneem ZHTasneem ZH
1,012221
1,012221
add a comment |
add a comment |
Some good answers so far, but I'll also submit:
At need: only doing something when it's necessary to do so. (This is a little bit uncommon in everyday, U.S. English, and will probably read as formal).
We have our set of reports that we write each month, but we also have some that are produced at need.
There are lots of variations on this which you might encounter, like as necessary. Jasper pointed out in comments a couple more, including when needed and as needed, the latter of which especially is very commonly heard.
add a comment |
Some good answers so far, but I'll also submit:
At need: only doing something when it's necessary to do so. (This is a little bit uncommon in everyday, U.S. English, and will probably read as formal).
We have our set of reports that we write each month, but we also have some that are produced at need.
There are lots of variations on this which you might encounter, like as necessary. Jasper pointed out in comments a couple more, including when needed and as needed, the latter of which especially is very commonly heard.
add a comment |
Some good answers so far, but I'll also submit:
At need: only doing something when it's necessary to do so. (This is a little bit uncommon in everyday, U.S. English, and will probably read as formal).
We have our set of reports that we write each month, but we also have some that are produced at need.
There are lots of variations on this which you might encounter, like as necessary. Jasper pointed out in comments a couple more, including when needed and as needed, the latter of which especially is very commonly heard.
Some good answers so far, but I'll also submit:
At need: only doing something when it's necessary to do so. (This is a little bit uncommon in everyday, U.S. English, and will probably read as formal).
We have our set of reports that we write each month, but we also have some that are produced at need.
There are lots of variations on this which you might encounter, like as necessary. Jasper pointed out in comments a couple more, including when needed and as needed, the latter of which especially is very commonly heard.
edited Apr 3 at 21:16
answered Apr 3 at 19:26
Upper_CaseUpper_Case
1,14526
1,14526
add a comment |
add a comment |
Doing something at the last minute is another common expression.
Packing for a trip, "I'm going to leave the snacks in the fridge until the last minute so they don't spoil."
A teacher might warn a student "This project will require a lot of time; don't leave it to the last minute."
When used as part of the larger expression doing everything at the last minute, it implies the subject is lazy, unmotivated, overworked or otherwise struggling to meet objectives.
New contributor
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
add a comment |
Doing something at the last minute is another common expression.
Packing for a trip, "I'm going to leave the snacks in the fridge until the last minute so they don't spoil."
A teacher might warn a student "This project will require a lot of time; don't leave it to the last minute."
When used as part of the larger expression doing everything at the last minute, it implies the subject is lazy, unmotivated, overworked or otherwise struggling to meet objectives.
New contributor
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
add a comment |
Doing something at the last minute is another common expression.
Packing for a trip, "I'm going to leave the snacks in the fridge until the last minute so they don't spoil."
A teacher might warn a student "This project will require a lot of time; don't leave it to the last minute."
When used as part of the larger expression doing everything at the last minute, it implies the subject is lazy, unmotivated, overworked or otherwise struggling to meet objectives.
New contributor
Doing something at the last minute is another common expression.
Packing for a trip, "I'm going to leave the snacks in the fridge until the last minute so they don't spoil."
A teacher might warn a student "This project will require a lot of time; don't leave it to the last minute."
When used as part of the larger expression doing everything at the last minute, it implies the subject is lazy, unmotivated, overworked or otherwise struggling to meet objectives.
New contributor
edited Apr 3 at 22:28
New contributor
answered Apr 3 at 21:05
ikegamiikegami
1434
1434
New contributor
New contributor
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
add a comment |
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
I've even heard people describe doing something "lastminute.com", after the website!
– drkvogel
2 days ago
add a comment |
Depending on what you're doing, this idiom might be useful:
We'll cross that bridge when we come to it.
an expression that means you will not worry about a possible future problem but will deal with it if it happens - Cambridge Dictionary.
Essentially, you don't put in time or effort into (or worry about) a possibility, until you're actually at a stage where the possibility is nearly a certainty.
1
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
1
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
add a comment |
Depending on what you're doing, this idiom might be useful:
We'll cross that bridge when we come to it.
an expression that means you will not worry about a possible future problem but will deal with it if it happens - Cambridge Dictionary.
Essentially, you don't put in time or effort into (or worry about) a possibility, until you're actually at a stage where the possibility is nearly a certainty.
1
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
1
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
add a comment |
Depending on what you're doing, this idiom might be useful:
We'll cross that bridge when we come to it.
an expression that means you will not worry about a possible future problem but will deal with it if it happens - Cambridge Dictionary.
Essentially, you don't put in time or effort into (or worry about) a possibility, until you're actually at a stage where the possibility is nearly a certainty.
Depending on what you're doing, this idiom might be useful:
We'll cross that bridge when we come to it.
an expression that means you will not worry about a possible future problem but will deal with it if it happens - Cambridge Dictionary.
Essentially, you don't put in time or effort into (or worry about) a possibility, until you're actually at a stage where the possibility is nearly a certainty.
edited 2 days ago
answered 2 days ago
murumuru
36729
36729
1
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
1
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
add a comment |
1
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
1
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
1
1
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
May also be said as "we'll cross that bridge when we come to it."
– Anthony Grist
2 days ago
1
1
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".
– drkvogel
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.
– muru
2 days ago
add a comment |
One informal expression which I think comes pretty close is doing things "on the hoof". However, it seems to be chiefly a British expression. Here's a definition from Collins via thefreedictionary.
- If you do something on the hoof, you do it as a quick reaction to something that has happened, rather than planning it carefully. They claimed that policy was being made on the hoof. In that situation, you have to make decisions on the hoof.
add a comment |
One informal expression which I think comes pretty close is doing things "on the hoof". However, it seems to be chiefly a British expression. Here's a definition from Collins via thefreedictionary.
- If you do something on the hoof, you do it as a quick reaction to something that has happened, rather than planning it carefully. They claimed that policy was being made on the hoof. In that situation, you have to make decisions on the hoof.
add a comment |
One informal expression which I think comes pretty close is doing things "on the hoof". However, it seems to be chiefly a British expression. Here's a definition from Collins via thefreedictionary.
- If you do something on the hoof, you do it as a quick reaction to something that has happened, rather than planning it carefully. They claimed that policy was being made on the hoof. In that situation, you have to make decisions on the hoof.
One informal expression which I think comes pretty close is doing things "on the hoof". However, it seems to be chiefly a British expression. Here's a definition from Collins via thefreedictionary.
- If you do something on the hoof, you do it as a quick reaction to something that has happened, rather than planning it carefully. They claimed that policy was being made on the hoof. In that situation, you have to make decisions on the hoof.
answered Apr 3 at 9:21
Especially LimeEspecially Lime
1,10539
1,10539
add a comment |
add a comment |
I believe this is a phenomenon c
known as "planning."
I am not familiar with the nuances of the event, but I understand those who observe experience a lower degree of stress than Master Procrastinators.
New contributor
3
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
add a comment |
I believe this is a phenomenon c
known as "planning."
I am not familiar with the nuances of the event, but I understand those who observe experience a lower degree of stress than Master Procrastinators.
New contributor
3
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
add a comment |
I believe this is a phenomenon c
known as "planning."
I am not familiar with the nuances of the event, but I understand those who observe experience a lower degree of stress than Master Procrastinators.
New contributor
I believe this is a phenomenon c
known as "planning."
I am not familiar with the nuances of the event, but I understand those who observe experience a lower degree of stress than Master Procrastinators.
New contributor
New contributor
answered Apr 4 at 3:03
Paige OWENS-SCPaige OWENS-SC
1
1
New contributor
New contributor
3
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
add a comment |
3
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
3
3
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.
– ColleenV♦
2 days ago
add a comment |
protected by Community♦ 2 days ago
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?