posts-go/docs/2023-04-17-naming.html

112 lines
3.3 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.5.1/github-markdown.min.css"
/>
<title>haunt98 posts</title>
</head>
<style>
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
font-family:
Shantell Sans Normal,
Rec Mono Casual,
SF Pro,
Inter,
sans-serif;
font-weight: 500;
}
.markdown-body pre {
font-family:
Berkeley Mono,
IBM Plex Mono,
SF Mono,
Jetbrains Mono,
monospace;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
<body class="markdown-body">
<h2>
<a href="index.html"><code>~</code></a>
</h2>
<div class="markdown-heading">
<h1 class="heading-element">Naming things</h1>
<a
id="user-content-naming-things"
class="anchor"
aria-label="Permalink: Naming things"
href="#naming-things"
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
<div class="markdown-heading">
<h2 class="heading-element">Filename in storage (S3, ...)</h2>
<a
id="user-content-filename-in-storage-s3-"
class="anchor"
aria-label="Permalink: Filename in storage (S3, ...)"
href="#filename-in-storage-s3-"
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
<p>Always have year, month, day in filename to easily sort it out.</p>
<p>
If file is uploaded by user, add <code>user_id</code> in filename, or some
other unique identifier depends on your business in which you require to
upload.
</p>
<p>
Personally, I always add timestamp and extra data in filename to avoid
duplicate.
</p>
<p>
Example filename:
<code>yyyy/mm/dd/{user_id}-{timestamp}-{extra}.ext</code>
</p>
<p>
Be careful with <code>/</code>, too much nested folder is no good for
backup (as they say, idk if true or not, but less folder mean less
complicated to me).
</p>
<div class="markdown-heading">
<h2 class="heading-element">Time variable</h2>
<a
id="user-content-time-variable"
class="anchor"
aria-label="Permalink: Time variable"
href="#time-variable"
><span aria-hidden="true" class="octicon octicon-link"></span
></a>
</div>
<p>Add time postfix to make sense.</p>
<p>Instead of <code>create_at</code>, use <code>create_at_ms</code>.</p>
<div>
Feel free to ask me via
<a href="mailto:hauvipapro+posts@gmail.com">email</a> or
<a rel="me" href="https://hachyderm.io/@haunguyen">Mastodon</a>.
<br />Source code is available on
<a href="https://github.com/haunt98/posts-go">GitHub</a>
<a href="https://codeberg.org/yoshie/posts-go">Codeberg</a>
<a href="https://git.sr.ht/~youngyoshie/posts-go">sourcehut</a>
<a href="https://gitea.treehouse.systems/yoshie/posts-go">Treehouse</a>
<a href="https://gitlab.com/youngyoshie/posts-go">GitLab</a>
</div>
</body>
</html>