2022-12-25 19:13:58 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
2023-02-28 05:57:40 +00:00
|
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/5.2.0/github-markdown-dark.min.css"
|
2022-12-25 19:13:58 +00:00
|
|
|
/>
|
2023-04-01 03:37:48 +00:00
|
|
|
<title>haunt98 posts</title>
|
2022-12-25 19:13:58 +00:00
|
|
|
</head>
|
|
|
|
<style>
|
|
|
|
.markdown-body {
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-width: 200px;
|
|
|
|
max-width: 980px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 45px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.markdown-body {
|
|
|
|
padding: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<body class="markdown-body">
|
2023-04-19 08:56:12 +00:00
|
|
|
<div><a href="index.html">Index</a></div>
|
2022-12-30 09:26:06 +00:00
|
|
|
<h1>
|
|
|
|
<a
|
|
|
|
id="user-content-gitignore"
|
|
|
|
class="anchor"
|
|
|
|
aria-hidden="true"
|
|
|
|
href="#gitignore"
|
|
|
|
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
|
|
|
>gitignore
|
|
|
|
</h1>
|
|
|
|
<p>My quick check for <code>.gitignore</code>.</p>
|
|
|
|
<h2>
|
|
|
|
<a id="user-content-base" class="anchor" aria-hidden="true" href="#base"
|
|
|
|
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
|
|
|
>Base
|
|
|
|
</h2>
|
|
|
|
<div class="highlight highlight-text-adblock">
|
|
|
|
<pre><span class="pl-c"># macOS</span>
|
2022-08-10 11:03:13 +00:00
|
|
|
.DS_Store
|
|
|
|
|
2022-12-25 19:13:58 +00:00
|
|
|
<span class="pl-c"># Windows</span>
|
|
|
|
<span class="pl-k">*</span>.exe
|
2022-08-10 11:03:13 +00:00
|
|
|
|
2022-12-25 19:13:58 +00:00
|
|
|
<span class="pl-c"># IntelliJ</span>
|
2022-08-10 11:03:13 +00:00
|
|
|
.idea/
|
|
|
|
|
2022-12-25 19:13:58 +00:00
|
|
|
<span class="pl-c"># VSCode</span>
|
2022-12-30 09:26:06 +00:00
|
|
|
.vscode/</pre>
|
|
|
|
</div>
|
|
|
|
<h2>
|
|
|
|
<a id="user-content-go" class="anchor" aria-hidden="true" href="#go"
|
|
|
|
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
|
|
|
>Go
|
|
|
|
</h2>
|
|
|
|
<div class="highlight highlight-text-adblock">
|
|
|
|
<pre><span class="pl-c"># Go</span>
|
2022-12-25 19:13:58 +00:00
|
|
|
<span class="pl-c"># Test coverage</span>
|
2022-08-10 11:03:13 +00:00
|
|
|
coverage.out
|
|
|
|
|
2022-12-25 19:13:58 +00:00
|
|
|
<span class="pl-c"># Should ignore vendor</span>
|
2022-12-30 09:26:06 +00:00
|
|
|
vendor</pre>
|
|
|
|
</div>
|
|
|
|
<h2>
|
|
|
|
<a
|
|
|
|
id="user-content-python"
|
|
|
|
class="anchor"
|
|
|
|
aria-hidden="true"
|
|
|
|
href="#python"
|
|
|
|
><span aria-hidden="true" class="octicon octicon-link"></span></a
|
|
|
|
>Python
|
|
|
|
</h2>
|
|
|
|
<div class="highlight highlight-text-adblock"><pre>venv</pre></div>
|
2022-12-25 19:13:58 +00:00
|
|
|
|
2022-12-25 19:22:39 +00:00
|
|
|
<div>
|
|
|
|
Feel free to ask me via
|
|
|
|
<a href="mailto:hauvipapro+posts@gmail.com">email</a> or
|
2022-12-30 09:55:38 +00:00
|
|
|
<a rel="me" href="https://hachyderm.io/@haunguyen">Mastodon</a>. Source
|
|
|
|
code is available on
|
|
|
|
<a href="https://github.com/haunt98/posts-go">GitHub</a>
|
2022-12-25 19:22:39 +00:00
|
|
|
</div>
|
2022-12-25 19:13:58 +00:00
|
|
|
</body>
|
|
|
|
</html>
|