Doing something right before you need it - expression for this? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)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?

Dating a Former Employee

Is there any word for a place full of confusion?

How to compare two different files line by line in unix?

What causes the direction of lightning flashes?

SF book about people trapped in a series of worlds they imagine

Selecting user stories during sprint planning

What is a fractional matching?

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

How do living politicians protect their readily obtainable signatures from misuse?

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

Circuit to "zoom in" on mV fluctuations of a DC signal?

How to write dimensions below a matrix

How fail-safe is nr as stop bytes?

Physics no longer uses mechanical models to describe phenomena

Why is it faster to reheat something than it is to cook it?

How do I make this wiring inside cabinet safer?

Should I use a zero-interest credit card for a large one-time purchase?

Why do we bend a book to keep it straight?

How to react to hostile behavior from a senior developer?

The logistics of corpse disposal

Are all finite dimensional hilbert spaces isomorphic to spaces with Euclidean norms?

What does this Jacques Hadamard quote mean?

How come Sam didn't become Lord of Horn Hill?

Would "destroying" Wurmcoil Engine prevent its tokens from being created?



Doing something right before you need it - expression for this?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)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;








11















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?










share|improve this question






























    11















    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?










    share|improve this question


























      11












      11








      11


      5






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 4 at 19:20









      J.R.

      101k8129249




      101k8129249










      asked Apr 3 at 0:36









      frbsfokfrbsfok

      1,031524




      1,031524




















          12 Answers
          12






          active

          oldest

          votes


















          45














          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.






          share|improve this answer




















          • 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


















          15














          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.






          share|improve this answer






























            12














            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:

              1. Don't.

              2. Not yet.

              3. 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.







            share|improve this answer

























            • 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
              Apr 5 at 14:58


















            8














            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.






            share|improve this answer






























              6














              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.






              share|improve this answer






























                6














                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.






                share|improve this answer




















                • 1





                  Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                  – kubanczyk
                  Apr 4 at 16:01


















                5














                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.





                share|improve this answer






























                  5














                  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.






                  share|improve this answer
































                    5














                    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.






                    share|improve this answer

























                    • I've even heard people describe doing something "lastminute.com", after the website!

                      – drkvogel
                      Apr 4 at 13:49


















                    4














                    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.






                    share|improve this answer




















                    • 1





                      May also be said as "we'll cross that bridge when we come to it."

                      – Anthony Grist
                      Apr 4 at 10:56






                    • 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
                      Apr 4 at 13:52











                    • Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                      – muru
                      Apr 4 at 14:12



















                    2














                    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.




                    1. 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.






                    share|improve this answer






























                      0














                      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.






                      share|improve this answer


















                      • 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
                        Apr 4 at 14:20










                      protected by Community Apr 5 at 0:52



                      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









                      45














                      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.






                      share|improve this answer




















                      • 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















                      45














                      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.






                      share|improve this answer




















                      • 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













                      45












                      45








                      45







                      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.






                      share|improve this answer















                      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.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Apr 3 at 1:25

























                      answered Apr 3 at 1:08









                      Don B.Don B.

                      1,953315




                      1,953315







                      • 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





                        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













                      15














                      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.






                      share|improve this answer



























                        15














                        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.






                        share|improve this answer

























                          15












                          15








                          15







                          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.






                          share|improve this answer













                          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.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Apr 4 at 0:28









                          Myk WillisMyk Willis

                          2762




                          2762





















                              12














                              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:

                                1. Don't.

                                2. Not yet.

                                3. 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.







                              share|improve this answer

























                              • 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
                                Apr 5 at 14:58















                              12














                              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:

                                1. Don't.

                                2. Not yet.

                                3. 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.







                              share|improve this answer

























                              • 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
                                Apr 5 at 14:58













                              12












                              12








                              12







                              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:

                                1. Don't.

                                2. Not yet.

                                3. 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.







                              share|improve this answer















                              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:

                                1. Don't.

                                2. Not yet.

                                3. 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.








                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Apr 3 at 20:12

























                              answered Apr 3 at 4:34









                              JasperJasper

                              20k44174




                              20k44174












                              • 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
                                Apr 5 at 14:58

















                              • 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
                                Apr 5 at 14:58
















                              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
                              Apr 5 at 14:58





                              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
                              Apr 5 at 14:58











                              8














                              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.






                              share|improve this answer



























                                8














                                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.






                                share|improve this answer

























                                  8












                                  8








                                  8







                                  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.






                                  share|improve this answer













                                  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.







                                  share|improve this answer












                                  share|improve this answer



                                  share|improve this answer










                                  answered Apr 3 at 12:23









                                  HenryHenry

                                  1812




                                  1812





















                                      6














                                      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.






                                      share|improve this answer



























                                        6














                                        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.






                                        share|improve this answer

























                                          6












                                          6








                                          6







                                          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.






                                          share|improve this answer













                                          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.







                                          share|improve this answer












                                          share|improve this answer



                                          share|improve this answer










                                          answered Apr 3 at 6:40









                                          MorfildurMorfildur

                                          1611




                                          1611





















                                              6














                                              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.






                                              share|improve this answer




















                                              • 1





                                                Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                                                – kubanczyk
                                                Apr 4 at 16:01















                                              6














                                              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.






                                              share|improve this answer




















                                              • 1





                                                Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                                                – kubanczyk
                                                Apr 4 at 16:01













                                              6












                                              6








                                              6







                                              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.






                                              share|improve this answer















                                              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.







                                              share|improve this answer














                                              share|improve this answer



                                              share|improve this answer








                                              edited Apr 4 at 10:39









                                              ikegami

                                              1534




                                              1534










                                              answered Apr 3 at 14:42









                                              JesseJesse

                                              611




                                              611







                                              • 1





                                                Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                                                – kubanczyk
                                                Apr 4 at 16:01












                                              • 1





                                                Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                                                – kubanczyk
                                                Apr 4 at 16:01







                                              1




                                              1





                                              Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                                              – kubanczyk
                                              Apr 4 at 16:01





                                              Technically, "lazy" is "right when you need it" whereas OP asked for "right before you need it".

                                              – kubanczyk
                                              Apr 4 at 16:01











                                              5














                                              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.





                                              share|improve this answer



























                                                5














                                                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.





                                                share|improve this answer

























                                                  5












                                                  5








                                                  5







                                                  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.





                                                  share|improve this answer













                                                  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.






                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Apr 3 at 4:16









                                                  Tasneem ZHTasneem ZH

                                                  1,099222




                                                  1,099222





















                                                      5














                                                      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.






                                                      share|improve this answer





























                                                        5














                                                        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.






                                                        share|improve this answer



























                                                          5












                                                          5








                                                          5







                                                          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.






                                                          share|improve this answer















                                                          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.







                                                          share|improve this answer














                                                          share|improve this answer



                                                          share|improve this answer








                                                          edited Apr 3 at 21:16

























                                                          answered Apr 3 at 19:26









                                                          Upper_CaseUpper_Case

                                                          1,14526




                                                          1,14526





















                                                              5














                                                              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.






                                                              share|improve this answer

























                                                              • I've even heard people describe doing something "lastminute.com", after the website!

                                                                – drkvogel
                                                                Apr 4 at 13:49















                                                              5














                                                              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.






                                                              share|improve this answer

























                                                              • I've even heard people describe doing something "lastminute.com", after the website!

                                                                – drkvogel
                                                                Apr 4 at 13:49













                                                              5












                                                              5








                                                              5







                                                              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.






                                                              share|improve this answer















                                                              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.







                                                              share|improve this answer














                                                              share|improve this answer



                                                              share|improve this answer








                                                              edited Apr 3 at 22:28

























                                                              answered Apr 3 at 21:05









                                                              ikegamiikegami

                                                              1534




                                                              1534












                                                              • I've even heard people describe doing something "lastminute.com", after the website!

                                                                – drkvogel
                                                                Apr 4 at 13:49

















                                                              • I've even heard people describe doing something "lastminute.com", after the website!

                                                                – drkvogel
                                                                Apr 4 at 13:49
















                                                              I've even heard people describe doing something "lastminute.com", after the website!

                                                              – drkvogel
                                                              Apr 4 at 13:49





                                                              I've even heard people describe doing something "lastminute.com", after the website!

                                                              – drkvogel
                                                              Apr 4 at 13:49











                                                              4














                                                              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.






                                                              share|improve this answer




















                                                              • 1





                                                                May also be said as "we'll cross that bridge when we come to it."

                                                                – Anthony Grist
                                                                Apr 4 at 10:56






                                                              • 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
                                                                Apr 4 at 13:52











                                                              • Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                                                                – muru
                                                                Apr 4 at 14:12
















                                                              4














                                                              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.






                                                              share|improve this answer




















                                                              • 1





                                                                May also be said as "we'll cross that bridge when we come to it."

                                                                – Anthony Grist
                                                                Apr 4 at 10:56






                                                              • 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
                                                                Apr 4 at 13:52











                                                              • Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                                                                – muru
                                                                Apr 4 at 14:12














                                                              4












                                                              4








                                                              4







                                                              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.






                                                              share|improve this answer















                                                              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.







                                                              share|improve this answer














                                                              share|improve this answer



                                                              share|improve this answer








                                                              edited Apr 4 at 14:11

























                                                              answered Apr 4 at 8:26









                                                              murumuru

                                                              36929




                                                              36929







                                                              • 1





                                                                May also be said as "we'll cross that bridge when we come to it."

                                                                – Anthony Grist
                                                                Apr 4 at 10:56






                                                              • 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
                                                                Apr 4 at 13:52











                                                              • Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                                                                – muru
                                                                Apr 4 at 14:12













                                                              • 1





                                                                May also be said as "we'll cross that bridge when we come to it."

                                                                – Anthony Grist
                                                                Apr 4 at 10:56






                                                              • 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
                                                                Apr 4 at 13:52











                                                              • Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                                                                – muru
                                                                Apr 4 at 14:12








                                                              1




                                                              1





                                                              May also be said as "we'll cross that bridge when we come to it."

                                                              – Anthony Grist
                                                              Apr 4 at 10:56





                                                              May also be said as "we'll cross that bridge when we come to it."

                                                              – Anthony Grist
                                                              Apr 4 at 10:56




                                                              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
                                                              Apr 4 at 13:52





                                                              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
                                                              Apr 4 at 13:52













                                                              Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                                                              – muru
                                                              Apr 4 at 14:12






                                                              Noted, though I have personally seen "get to it" more often, which might be an Indian English thing.

                                                              – muru
                                                              Apr 4 at 14:12












                                                              2














                                                              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.




                                                              1. 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.






                                                              share|improve this answer



























                                                                2














                                                                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.




                                                                1. 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.






                                                                share|improve this answer

























                                                                  2












                                                                  2








                                                                  2







                                                                  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.




                                                                  1. 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.






                                                                  share|improve this answer













                                                                  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.




                                                                  1. 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.







                                                                  share|improve this answer












                                                                  share|improve this answer



                                                                  share|improve this answer










                                                                  answered Apr 3 at 9:21









                                                                  Especially LimeEspecially Lime

                                                                  1,10539




                                                                  1,10539





















                                                                      0














                                                                      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.






                                                                      share|improve this answer


















                                                                      • 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
                                                                        Apr 4 at 14:20
















                                                                      0














                                                                      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.






                                                                      share|improve this answer


















                                                                      • 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
                                                                        Apr 4 at 14:20














                                                                      0












                                                                      0








                                                                      0







                                                                      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.






                                                                      share|improve this answer













                                                                      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.







                                                                      share|improve this answer












                                                                      share|improve this answer



                                                                      share|improve this answer










                                                                      answered Apr 4 at 3:03









                                                                      Paige OWENS-SCPaige OWENS-SC

                                                                      1




                                                                      1







                                                                      • 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
                                                                        Apr 4 at 14:20













                                                                      • 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
                                                                        Apr 4 at 14:20








                                                                      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
                                                                      Apr 4 at 14:20






                                                                      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
                                                                      Apr 4 at 14:20






                                                                      protected by Community Apr 5 at 0:52



                                                                      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?



                                                                      Popular posts from this blog

                                                                      Adding axes to figuresAdding axes labels to LaTeX figuresLaTeX equivalent of ConTeXt buffersRotate a node but not its content: the case of the ellipse decorationHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?adding axes to shapesAlign axes across subfiguresAdding figures with a certain orderLine up nested tikz enviroments or how to get rid of themAdding axes labels to LaTeX figures

                                                                      Luettelo Yhdysvaltain laivaston lentotukialuksista Lähteet | Navigointivalikko

                                                                      Gary (muusikko) Sisällysluettelo Historia | Rockin' High | Lähteet | Aiheesta muualla | NavigointivalikkoInfobox OKTuomas "Gary" Keskinen Ancaran kitaristiksiProjekti Rockin' High