-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 2.23 KB
/
Copy pathindex.html
File metadata and controls
40 lines (39 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<title>Exile Heavy Industries: Foundry</title>
<h1>Newnix's Forge</h1>
<p>
This is where I work on some coding projects, they may or may not eventually
be moved to a separate repo of their own, depending on complexity and size.<br>
The primary goal with this repo is simply education, learning how to build
things with various languages.<br>
Unless otherwise stated, all code in this repo is licensed under the 3-Clause BSD
License, basically meaning you can take this code and use it for whatever you want,
but you can't sue me if it doesn't work, and you can't say that you wrote it.<br>
I'd rather you not make something proprietary with what I write because I don't like
proprietary software, but I'm not going to tell you how to run your life (like some
other licenses).
</p>
<h3>Actual Code</h3>
<p><pre>
lang[0] = <a href="https://exile.digital/code/c">C</a>; /* My C projects, current favorite language */
lang[1] = <a href="https://exile.digital/code/cpp">C++</a>; /* C++ projects, mostly school assignments */
lang[2] = <a href="https://exile.digital/code/asm">ASM</a>; /* AMD64 Assembly */
lang[3] = <a href="https://exile.digital/code/rust">Rust</a>; /* Rust, very interested in this language */
lang[4] = <a href="https://exile.digital/code/haskell">Haskell</a>; /* Getting the basics of Functional Programming */
lang[5] = <a href="https://exile.digital/code/sysutil">Sysutil</a>; /* System Utilities (usually shell scripts) */
lang[6] = <a href="https://exile.digital/code/bash">Bash</a>; /* Bash scripts */
lang[7] = <a href="https://exile.digital/code/py">Python</a>; /* Experiments in Python */
lang[8] = <a href="https://exile.digital/code/go">Go</a>; /* Golang, mostly tutorial programs at this point */
lang[9] = <a href="https://exile.digital/code/LICENSE">License</a>; /* The actual License for my code */
</p></pre>
<h3>Repo Info</h3>
<p>
While I plan on having this repo mirrored and available through multiple DVCS-es,
(e.g. git, mercurial, maybe bzr) it's currently only a darcs repo.<br>
To obtain a copy for yourself, use the command:
<pre>
/* Currently out of commission */
darcs clone https://exile.digital/code ${destdir}
/* Git repo is kept up-to-date at this time though */
git clone https://github.com/newnix/forge ${destdir}
</pre>
</p>