How to name arrival time, departure time, other timestamps together? The Next CEO of Stack OverflowGeneral noun for lingual/verbal/written representation of data?Proper technical terms and sentence structure regarding web appsIs “cacheability” a word (technical word)?How to name the diagonals of a square so one can be told from the other?Is the use of the term “bugged” to refer to software bugs in English a worldwide or regional use?Is it correct to call things like “item.item” tautological?Which prepositions to use with computer trees?Neutral term for “broken” in softwareNeutral word for saying that a task is finished, without denoting success or failureMinimal, but most important
Can this note be analyzed as a non-chord tone?
How to avoid supervisors with prejudiced views?
Why doesn't UK go for the same deal Japan has with EU to resolve Brexit?
"Eavesdropping" vs "Listen in on"
Is there a difference between "Fahrstuhl" and "Aufzug"?
Which one is the true statement?
Why is information "lost" when it got into a black hole?
Purpose of level-shifter with same in and out voltages
(How) Could a medieval fantasy world survive a magic-induced "nuclear winter"?
what's the use of '% to gdp' type of variables?
Defamation due to breach of confidentiality
Are the names of these months realistic?
Is dried pee considered dirt?
Is a distribution that is normal, but highly skewed, considered Gaussian?
Players Circumventing the limitations of Wish
How to properly draw diagonal line while using multicolumn inside tabular environment?
What happened in Rome, when the western empire "fell"?
What connection does MS Office have to Netscape Navigator?
Do I need to write [sic] when including a quotation with a number less than 10 that isn't written out?
What is the difference between "hamstring tendon" and "common hamstring tendon"?
TikZ: How to fill area with a special pattern?
From jafe to El-Guest
Won the lottery - how do I keep the money?
How to use ReplaceAll on an expression that contains a rule
How to name arrival time, departure time, other timestamps together?
The Next CEO of Stack OverflowGeneral noun for lingual/verbal/written representation of data?Proper technical terms and sentence structure regarding web appsIs “cacheability” a word (technical word)?How to name the diagonals of a square so one can be told from the other?Is the use of the term “bugged” to refer to software bugs in English a worldwide or regional use?Is it correct to call things like “item.item” tautological?Which prepositions to use with computer trees?Neutral term for “broken” in softwareNeutral word for saying that a task is finished, without denoting success or failureMinimal, but most important
I am a software developer and I have an obsession with clear naming.
In software, I am developing we have a data structure for delivery note with business-specific time fields
(ConstructionSiteArrivalTime, ConstructionSiteBeginDischargingTime,
ConstructionSiteEndDischargingTime and so one).
I need to write a function which will update all this time fields. The name of this function will be UpdateAllThisTimes(). How can I say "AllThisTimes" correctly in English? Is the word timestamp correct in this case (UpdateTimestamps)?
programming
|
show 4 more comments
I am a software developer and I have an obsession with clear naming.
In software, I am developing we have a data structure for delivery note with business-specific time fields
(ConstructionSiteArrivalTime, ConstructionSiteBeginDischargingTime,
ConstructionSiteEndDischargingTime and so one).
I need to write a function which will update all this time fields. The name of this function will be UpdateAllThisTimes(). How can I say "AllThisTimes" correctly in English? Is the word timestamp correct in this case (UpdateTimestamps)?
programming
"write a function which will can all this time fields" - I'm not sure what this means. If the stored fields all represent times when an action occurred then, in context, it would be ok to call them timestamps.
– KillingTime
Feb 20 at 7:32
@KillingTime Yes all this fields represent times
– Semen Miroshnichenko
Feb 20 at 7:33
@KillingTime I fixed the sentence, it should be "I need to write a function which will update all this time fields [at once]"
– Semen Miroshnichenko
Feb 20 at 7:35
3
Why not UpdateTimeFields ? That is more or less what you say in the sentence "I need to write a function ..."
– Stefan
Feb 20 at 7:41
What's the name of the data struture?
– John Go-Soco
Feb 20 at 9:29
|
show 4 more comments
I am a software developer and I have an obsession with clear naming.
In software, I am developing we have a data structure for delivery note with business-specific time fields
(ConstructionSiteArrivalTime, ConstructionSiteBeginDischargingTime,
ConstructionSiteEndDischargingTime and so one).
I need to write a function which will update all this time fields. The name of this function will be UpdateAllThisTimes(). How can I say "AllThisTimes" correctly in English? Is the word timestamp correct in this case (UpdateTimestamps)?
programming
I am a software developer and I have an obsession with clear naming.
In software, I am developing we have a data structure for delivery note with business-specific time fields
(ConstructionSiteArrivalTime, ConstructionSiteBeginDischargingTime,
ConstructionSiteEndDischargingTime and so one).
I need to write a function which will update all this time fields. The name of this function will be UpdateAllThisTimes(). How can I say "AllThisTimes" correctly in English? Is the word timestamp correct in this case (UpdateTimestamps)?
programming
programming
edited Feb 20 at 7:35
Semen Miroshnichenko
asked Feb 20 at 7:08
Semen MiroshnichenkoSemen Miroshnichenko
1012
1012
"write a function which will can all this time fields" - I'm not sure what this means. If the stored fields all represent times when an action occurred then, in context, it would be ok to call them timestamps.
– KillingTime
Feb 20 at 7:32
@KillingTime Yes all this fields represent times
– Semen Miroshnichenko
Feb 20 at 7:33
@KillingTime I fixed the sentence, it should be "I need to write a function which will update all this time fields [at once]"
– Semen Miroshnichenko
Feb 20 at 7:35
3
Why not UpdateTimeFields ? That is more or less what you say in the sentence "I need to write a function ..."
– Stefan
Feb 20 at 7:41
What's the name of the data struture?
– John Go-Soco
Feb 20 at 9:29
|
show 4 more comments
"write a function which will can all this time fields" - I'm not sure what this means. If the stored fields all represent times when an action occurred then, in context, it would be ok to call them timestamps.
– KillingTime
Feb 20 at 7:32
@KillingTime Yes all this fields represent times
– Semen Miroshnichenko
Feb 20 at 7:33
@KillingTime I fixed the sentence, it should be "I need to write a function which will update all this time fields [at once]"
– Semen Miroshnichenko
Feb 20 at 7:35
3
Why not UpdateTimeFields ? That is more or less what you say in the sentence "I need to write a function ..."
– Stefan
Feb 20 at 7:41
What's the name of the data struture?
– John Go-Soco
Feb 20 at 9:29
"write a function which will can all this time fields" - I'm not sure what this means. If the stored fields all represent times when an action occurred then, in context, it would be ok to call them timestamps.
– KillingTime
Feb 20 at 7:32
"write a function which will can all this time fields" - I'm not sure what this means. If the stored fields all represent times when an action occurred then, in context, it would be ok to call them timestamps.
– KillingTime
Feb 20 at 7:32
@KillingTime Yes all this fields represent times
– Semen Miroshnichenko
Feb 20 at 7:33
@KillingTime Yes all this fields represent times
– Semen Miroshnichenko
Feb 20 at 7:33
@KillingTime I fixed the sentence, it should be "I need to write a function which will update all this time fields [at once]"
– Semen Miroshnichenko
Feb 20 at 7:35
@KillingTime I fixed the sentence, it should be "I need to write a function which will update all this time fields [at once]"
– Semen Miroshnichenko
Feb 20 at 7:35
3
3
Why not UpdateTimeFields ? That is more or less what you say in the sentence "I need to write a function ..."
– Stefan
Feb 20 at 7:41
Why not UpdateTimeFields ? That is more or less what you say in the sentence "I need to write a function ..."
– Stefan
Feb 20 at 7:41
What's the name of the data struture?
– John Go-Soco
Feb 20 at 9:29
What's the name of the data struture?
– John Go-Soco
Feb 20 at 9:29
|
show 4 more comments
1 Answer
1
active
oldest
votes
Is this not a Schedule?
A ConstructionSchedule struct makes sense to me to contain timestamps of those items you mentioned.
So UpdateSchedules makes sense as a function name too.
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
add a comment |
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "97"
;
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fenglish.stackexchange.com%2fquestions%2f486351%2fhow-to-name-arrival-time-departure-time-other-timestamps-together%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this not a Schedule?
A ConstructionSchedule struct makes sense to me to contain timestamps of those items you mentioned.
So UpdateSchedules makes sense as a function name too.
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
add a comment |
Is this not a Schedule?
A ConstructionSchedule struct makes sense to me to contain timestamps of those items you mentioned.
So UpdateSchedules makes sense as a function name too.
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
add a comment |
Is this not a Schedule?
A ConstructionSchedule struct makes sense to me to contain timestamps of those items you mentioned.
So UpdateSchedules makes sense as a function name too.
Is this not a Schedule?
A ConstructionSchedule struct makes sense to me to contain timestamps of those items you mentioned.
So UpdateSchedules makes sense as a function name too.
answered Feb 20 at 9:10
John Go-SocoJohn Go-Soco
1,793714
1,793714
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
add a comment |
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
No, it is not schedule, it's for post factum documentation, so the driver can set a timestamp to tell the system "I have arrived the construction site at 1:34 PM"
– Semen Miroshnichenko
Feb 20 at 9:27
add a comment |
Thanks for contributing an answer to English Language & Usage 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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fenglish.stackexchange.com%2fquestions%2f486351%2fhow-to-name-arrival-time-departure-time-other-timestamps-together%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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

"write a function which will can all this time fields" - I'm not sure what this means. If the stored fields all represent times when an action occurred then, in context, it would be ok to call them timestamps.
– KillingTime
Feb 20 at 7:32
@KillingTime Yes all this fields represent times
– Semen Miroshnichenko
Feb 20 at 7:33
@KillingTime I fixed the sentence, it should be "I need to write a function which will update all this time fields [at once]"
– Semen Miroshnichenko
Feb 20 at 7:35
3
Why not UpdateTimeFields ? That is more or less what you say in the sentence "I need to write a function ..."
– Stefan
Feb 20 at 7:41
What's the name of the data struture?
– John Go-Soco
Feb 20 at 9:29