Doing something right before you need it - expression for this?What is the word for “doing something in various steps”?A better word for trying/ doing something you are not good at yetShould-I-go-left-or-right confusion when you're walking past someone- is there an expression for that?Need the right term about a roll of toilet paperLooking for an expressionAn adjective for a woman showing lots of skin?The right adjective for “fry”Word for selling something that you don't use anymorebuild the culture of something/ culture buildingIs “uncounted day” the right term for this case?

Why is consensus so controversial in Britain?

How to model explosives?

Python: return float 1.0 as int 1 but float 1.5 as float 1.5

Arrow those variables!

Should I tell management that I intend to leave due to bad software development practices?

90's TV series where a boy goes to another dimension through portal near power lines

Do I have a twin with permutated remainders?

Is the Joker left-handed?

Brothers & sisters

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

Took a trip to a parallel universe, need help deciphering

In Romance of the Three Kingdoms why do people still use bamboo sticks when papers are already invented?

Combinations of multiple lists

How do I write bicross product symbols in latex?

Fully-Firstable Anagram Sets

Western buddy movie with a supernatural twist where a woman turns into an eagle at the end

Has there ever been an airliner design involving reducing generator load by installing solar panels?

How can I tell someone that I want to be his or her friend?

Is it inappropriate for a student to attend their mentor's dissertation defense?

Can a virus destroy the BIOS of a modern computer?

Neighboring nodes in the network

Reserved de-dupe rules

How much of data wrangling is a data scientist's job?

Why does Arabsat 6A need a Falcon Heavy to launch



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


What is the word for “doing something in various steps”?A better word for trying/ doing something you are not good at yetShould-I-go-left-or-right confusion when you're walking past someone- is there an expression for that?Need the right term about a roll of toilet paperLooking for an expressionAn adjective for a woman showing lots of skin?The right adjective for “fry”Word for selling something that you don't use anymorebuild the culture of something/ culture buildingIs “uncounted day” the right term for this case?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








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


      4






      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 5 hours ago









      J.R.

      100k8129249




      100k8129249










      asked yesterday









      frbsfokfrbsfok

      438111




      438111




















          13 Answers
          13






          active

          oldest

          votes


















          41














          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
            yesterday







          • 5





            ‘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
            yesterday






          • 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
            yesterday


















          12














          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








          New contributor




          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.



























            10














            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
              yesterday


















            7














            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








            New contributor




            Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.



























              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










              New contributor




              Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.




















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

                – kubanczyk
                8 hours ago


















              5














              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








              New contributor




              Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.



























                4














                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






























                  4














                  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




















                  • 3





                    "As needed" and "when needed" are two common variations.

                    – Jasper
                    yesterday


















                  3














                  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










                  New contributor




                  ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                  Check out our Code of Conduct.




















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

                    – drkvogel
                    10 hours ago


















                  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














                    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
                      13 hours ago






                    • 1





                      This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                      – drkvogel
                      10 hours ago











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

                      – muru
                      10 hours ago



















                    0














                    Deadline-driven (vs. task-driven).






                    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








                      New contributor




                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.















                      • 1





                        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
                        10 hours ago












                      Your Answer








                      StackExchange.ready(function()
                      var channelOptions =
                      tags: "".split(" "),
                      id: "481"
                      ;
                      initTagRenderer("".split(" "), "".split(" "), channelOptions);

                      StackExchange.using("externalEditor", function()
                      // Have to fire editor after snippets, if snippets enabled
                      if (StackExchange.settings.snippets.snippetsEnabled)
                      StackExchange.using("snippets", function()
                      createEditor();
                      );

                      else
                      createEditor();

                      );

                      function createEditor()
                      StackExchange.prepareEditor(
                      heartbeatType: 'answer',
                      autoActivateHeartbeat: false,
                      convertImagesToLinks: false,
                      noModals: true,
                      showLowRepImageUploadWarning: true,
                      reputationToPostImages: null,
                      bindNavPrevention: true,
                      postfix: "",
                      imageUploader:
                      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                      allowUrls: true
                      ,
                      noCode: true, onDemand: true,
                      discardSelector: ".discard-answer"
                      ,immediatelyShowMarkdownHelp:true
                      );



                      );













                      draft saved

                      draft discarded


















                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fell.stackexchange.com%2fquestions%2f203602%2fdoing-something-right-before-you-need-it-expression-for-this%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown

























                      13 Answers
                      13






                      active

                      oldest

                      votes








                      13 Answers
                      13






                      active

                      oldest

                      votes









                      active

                      oldest

                      votes






                      active

                      oldest

                      votes









                      41














                      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
                        yesterday







                      • 5





                        ‘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
                        yesterday






                      • 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
                        yesterday















                      41














                      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
                        yesterday







                      • 5





                        ‘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
                        yesterday






                      • 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
                        yesterday













                      41












                      41








                      41







                      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 yesterday

























                      answered yesterday









                      Don B.Don B.

                      1,463312




                      1,463312







                      • 1





                        Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!

                        – AakashM
                        yesterday







                      • 5





                        ‘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
                        yesterday






                      • 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
                        yesterday












                      • 1





                        Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!

                        – AakashM
                        yesterday







                      • 5





                        ‘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
                        yesterday






                      • 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
                        yesterday







                      1




                      1





                      Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!

                      – AakashM
                      yesterday






                      Just-in-case versus just-in-time. A nice illustration of two different uses of 'just'!

                      – AakashM
                      yesterday





                      5




                      5





                      ‘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
                      yesterday





                      ‘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
                      yesterday




                      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
                      yesterday





                      "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
                      yesterday













                      12














                      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








                      New contributor




                      Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.
























                        12














                        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








                        New contributor




                        Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                        Check out our Code of Conduct.






















                          12












                          12








                          12







                          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








                          New contributor




                          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.










                          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








                          New contributor




                          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          share|improve this answer



                          share|improve this answer






                          New contributor




                          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.









                          answered 23 hours ago









                          Myk WillisMyk Willis

                          2212




                          2212




                          New contributor




                          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





                          New contributor





                          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.






                          Myk Willis is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                          Check out our Code of Conduct.





















                              10














                              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
                                yesterday















                              10














                              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
                                yesterday













                              10












                              10








                              10







                              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 yesterday

























                              answered yesterday









                              JasperJasper

                              19.4k43872




                              19.4k43872












                              • see also: premature optimization

                                – qwr
                                yesterday

















                              • see also: premature optimization

                                – qwr
                                yesterday
















                              see also: premature optimization

                              – qwr
                              yesterday





                              see also: premature optimization

                              – qwr
                              yesterday











                              7














                              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








                              New contributor




                              Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                              Check out our Code of Conduct.
























                                7














                                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








                                New contributor




                                Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                Check out our Code of Conduct.






















                                  7












                                  7








                                  7







                                  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








                                  New contributor




                                  Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.










                                  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








                                  New contributor




                                  Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.









                                  share|improve this answer



                                  share|improve this answer






                                  New contributor




                                  Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.









                                  answered yesterday









                                  HenryHenry

                                  1712




                                  1712




                                  New contributor




                                  Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.





                                  New contributor





                                  Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.






                                  Henry is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                  Check out our Code of Conduct.





















                                      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










                                      New contributor




                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.




















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

                                        – kubanczyk
                                        8 hours ago















                                      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










                                      New contributor




                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.




















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

                                        – kubanczyk
                                        8 hours ago













                                      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










                                      New contributor




                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.










                                      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










                                      New contributor




                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.









                                      share|improve this answer



                                      share|improve this answer








                                      edited 13 hours ago









                                      ikegami

                                      1334




                                      1334






                                      New contributor




                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.









                                      answered yesterday









                                      JesseJesse

                                      611




                                      611




                                      New contributor




                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.





                                      New contributor





                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.






                                      Jesse is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.












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

                                        – kubanczyk
                                        8 hours ago

















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

                                        – kubanczyk
                                        8 hours ago
















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

                                      – kubanczyk
                                      8 hours ago





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

                                      – kubanczyk
                                      8 hours ago











                                      5














                                      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








                                      New contributor




                                      Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                      Check out our Code of Conduct.
























                                        5














                                        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








                                        New contributor




                                        Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                        Check out our Code of Conduct.






















                                          5












                                          5








                                          5







                                          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








                                          New contributor




                                          Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.










                                          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








                                          New contributor




                                          Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.









                                          share|improve this answer



                                          share|improve this answer






                                          New contributor




                                          Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.









                                          answered yesterday









                                          MorfildurMorfildur

                                          1511




                                          1511




                                          New contributor




                                          Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.





                                          New contributor





                                          Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.






                                          Morfildur is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                          Check out our Code of Conduct.





















                                              4














                                              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



























                                                4














                                                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

























                                                  4












                                                  4








                                                  4







                                                  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 yesterday









                                                  Tasneem ZHTasneem ZH

                                                  960220




                                                  960220





















                                                      4














                                                      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




















                                                      • 3





                                                        "As needed" and "when needed" are two common variations.

                                                        – Jasper
                                                        yesterday















                                                      4














                                                      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




















                                                      • 3





                                                        "As needed" and "when needed" are two common variations.

                                                        – Jasper
                                                        yesterday













                                                      4












                                                      4








                                                      4







                                                      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 yesterday

























                                                      answered yesterday









                                                      Upper_CaseUpper_Case

                                                      1,13526




                                                      1,13526







                                                      • 3





                                                        "As needed" and "when needed" are two common variations.

                                                        – Jasper
                                                        yesterday












                                                      • 3





                                                        "As needed" and "when needed" are two common variations.

                                                        – Jasper
                                                        yesterday







                                                      3




                                                      3





                                                      "As needed" and "when needed" are two common variations.

                                                      – Jasper
                                                      yesterday





                                                      "As needed" and "when needed" are two common variations.

                                                      – Jasper
                                                      yesterday











                                                      3














                                                      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










                                                      New contributor




                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.




















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

                                                        – drkvogel
                                                        10 hours ago















                                                      3














                                                      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










                                                      New contributor




                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.




















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

                                                        – drkvogel
                                                        10 hours ago













                                                      3












                                                      3








                                                      3







                                                      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










                                                      New contributor




                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.










                                                      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










                                                      New contributor




                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.









                                                      share|improve this answer



                                                      share|improve this answer








                                                      edited yesterday





















                                                      New contributor




                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.









                                                      answered yesterday









                                                      ikegamiikegami

                                                      1334




                                                      1334




                                                      New contributor




                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.





                                                      New contributor





                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.






                                                      ikegami is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                      Check out our Code of Conduct.












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

                                                        – drkvogel
                                                        10 hours ago

















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

                                                        – drkvogel
                                                        10 hours ago
















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

                                                      – drkvogel
                                                      10 hours ago





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

                                                      – drkvogel
                                                      10 hours ago











                                                      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 yesterday









                                                          Especially LimeEspecially Lime

                                                          1,10539




                                                          1,10539





















                                                              2














                                                              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
                                                                13 hours ago






                                                              • 1





                                                                This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                                                                – drkvogel
                                                                10 hours ago











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

                                                                – muru
                                                                10 hours ago
















                                                              2














                                                              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
                                                                13 hours ago






                                                              • 1





                                                                This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                                                                – drkvogel
                                                                10 hours ago











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

                                                                – muru
                                                                10 hours ago














                                                              2












                                                              2








                                                              2







                                                              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 10 hours ago

























                                                              answered 15 hours ago









                                                              murumuru

                                                              34729




                                                              34729







                                                              • 1





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

                                                                – Anthony Grist
                                                                13 hours ago






                                                              • 1





                                                                This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                                                                – drkvogel
                                                                10 hours ago











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

                                                                – muru
                                                                10 hours ago













                                                              • 1





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

                                                                – Anthony Grist
                                                                13 hours ago






                                                              • 1





                                                                This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                                                                – drkvogel
                                                                10 hours ago











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

                                                                – muru
                                                                10 hours ago








                                                              1




                                                              1





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

                                                              – Anthony Grist
                                                              13 hours ago





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

                                                              – Anthony Grist
                                                              13 hours ago




                                                              1




                                                              1





                                                              This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                                                              – drkvogel
                                                              10 hours ago





                                                              This is probably the most idiomatic, in British English at least, in the form suggested by @AnthonyGrist: "We'll cross that bridge when we come to it." - depending on the context. It would be used when making a decision as to whether to do something now or when the need arises. One might then say: "Let's cross that bridge when we come to it".

                                                              – drkvogel
                                                              10 hours ago













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

                                                              – muru
                                                              10 hours ago






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

                                                              – muru
                                                              10 hours ago












                                                              0














                                                              Deadline-driven (vs. task-driven).






                                                              share|improve this answer



























                                                                0














                                                                Deadline-driven (vs. task-driven).






                                                                share|improve this answer

























                                                                  0












                                                                  0








                                                                  0







                                                                  Deadline-driven (vs. task-driven).






                                                                  share|improve this answer













                                                                  Deadline-driven (vs. task-driven).







                                                                  share|improve this answer












                                                                  share|improve this answer



                                                                  share|improve this answer










                                                                  answered yesterday









                                                                  paw88789paw88789

                                                                  2792




                                                                  2792





















                                                                      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








                                                                      New contributor




                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.















                                                                      • 1





                                                                        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
                                                                        10 hours ago
















                                                                      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








                                                                      New contributor




                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.















                                                                      • 1





                                                                        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
                                                                        10 hours ago














                                                                      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








                                                                      New contributor




                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.










                                                                      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








                                                                      New contributor




                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.









                                                                      share|improve this answer



                                                                      share|improve this answer






                                                                      New contributor




                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.









                                                                      answered 21 hours ago









                                                                      Paige OWENS-SCPaige OWENS-SC

                                                                      1




                                                                      1




                                                                      New contributor




                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.





                                                                      New contributor





                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.






                                                                      Paige OWENS-SC is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                                                                      Check out our Code of Conduct.







                                                                      • 1





                                                                        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
                                                                        10 hours ago













                                                                      • 1





                                                                        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
                                                                        10 hours ago








                                                                      1




                                                                      1





                                                                      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
                                                                      10 hours ago






                                                                      Welcome to ELL. This is a site for folks learning English as a foreign language. Jokes that pretend like they're answering the question aren't really that helpful, especially since a lot of the tone can get "lost in translation". You may want to take the tour to learn more about how this site works - it's a bit different from other sites.

                                                                      – ColleenV
                                                                      10 hours ago


















                                                                      draft saved

                                                                      draft discarded
















































                                                                      Thanks for contributing an answer to English Language Learners Stack Exchange!


                                                                      • Please be sure to answer the question. Provide details and share your research!

                                                                      But avoid


                                                                      • Asking for help, clarification, or responding to other answers.

                                                                      • Making statements based on opinion; back them up with references or personal experience.

                                                                      To learn more, see our tips on writing great answers.




                                                                      draft saved


                                                                      draft discarded














                                                                      StackExchange.ready(
                                                                      function ()
                                                                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fell.stackexchange.com%2fquestions%2f203602%2fdoing-something-right-before-you-need-it-expression-for-this%23new-answer', 'question_page');

                                                                      );

                                                                      Post as a guest















                                                                      Required, but never shown





















































                                                                      Required, but never shown














                                                                      Required, but never shown












                                                                      Required, but never shown







                                                                      Required, but never shown

































                                                                      Required, but never shown














                                                                      Required, but never shown












                                                                      Required, but never shown







                                                                      Required, but never shown







                                                                      Popular posts from this blog

                                                                      Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

                                                                      Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                                                                      How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2