this post was submitted on 22 Nov 2023
0 points (NaN% liked)

Memes

45546 readers
1531 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] pelya@lemmy.world 1 points 11 months ago (7 children)

YYYY-MM-DD is the only acceptable date format, as commanded by ISO 8601.

[–] Wes_Dev@lemmy.ml 1 points 11 months ago

Largest to smallest unit of time. It just makes sense.

[–] cryptix@discuss.tchncs.de 1 points 11 months ago

Sorting by date would be so much better with yyyymmdd .

[–] clif@lemmy.world 1 points 11 months ago

"There shall be no other date formats before ISO8601. Remember this format and keep it as the system default"

[–] geissi@feddit.de 0 points 11 months ago (1 children)

For file names, absolutely.
When I’m asking what date it is I typically know the current year.

[–] ASeriesOfPoorChoices@lemmy.world 0 points 11 months ago (1 children)

Well la-tee-dah, look at mister not-shitfaced-every-day here, bragging like a big man

[–] geissi@feddit.de 0 points 11 months ago

I can lie under the table, puking my guts out and still remember the year.
You need more training, son.

[–] Remavas@programming.dev 0 points 11 months ago* (last edited 11 months ago) (1 children)

Glad I can count my own country, Lithuania, among the enlightened.

EDIT: Source of the picture: https://en.m.wikipedia.org/wiki/File:Date_format_by_country_NEW.svg

[–] problematicPanther@lemmy.world 0 points 11 months ago* (last edited 11 months ago) (1 children)

where's that? somewhere in africa?

/s because apparently it's not implied

[–] TrismegistusMx@slrpnk.net 0 points 11 months ago (2 children)
[–] jlh@lemmy.jlh.name 0 points 11 months ago (1 children)

YYYY-MM-DDTHH:MM:SS.SSSSSSSSSZ

[–] Ravi@feddit.de 0 points 11 months ago

YYYY-MM-DD:HH:MM:SS+TZ

[–] Empricorn@feddit.nl 0 points 11 months ago (1 children)

If you have years of files named similarly with the date, you will love the ISO standard and how it keeps things sorted and easy to read.

[–] Agent641@lemmy.world 0 points 11 months ago* (last edited 11 months ago) (1 children)

I have autohotkey configured to insert the current date in ISO 8601 format into my filenames on keyboard shortcut for just this reason. So organized. So pure.

[–] lukewarm_tauntaun@feddit.de 0 points 11 months ago (2 children)

Holy shit teach me your ways how do I do that

[–] Agent641@lemmy.world 0 points 11 months ago* (last edited 11 months ago) (1 children)

Download Autohotkey, and create a new script. Paste these shortcuts into the script and restart the script:

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.

; #Warn ; Enable warnings to assist with detecting common errors.

SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

:R*?:ddd::

FormatTime, CurrentDateTime,, yyyy-MM-dd

SendInput %CurrentDateTime%

return

:R*?:dtt::

FormatTime, CurrentDateTime,, yyMMddHHmm

SendInput %CurrentDateTime%

Return

Now, if you type 'ddd' on your keyboard, the current date will be typed out, eg '2023-11-23'.

If you type 'dtt' tgen the datetime stamp will be typed out in YYMMDDhhmm format, eg 2311231012

There are so many cool things you van do with AHK to make your work more productive. For example, rather tgan typing your email address a billion times, add the shortcut:

::add1::your.email.address@domainname.com

And then you can type 'add1' and hit space, and your email address will be typed out in full. Of course, the string 'add1' can be whatever you want.

[–] lukewarm_tauntaun@feddit.de 0 points 11 months ago
[–] can@sh.itjust.works 0 points 11 months ago (1 children)
[–] lukewarm_tauntaun@feddit.de 0 points 11 months ago