diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0a9a1a5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +index.html +root/ diff --git a/LICENSE b/LICENSE index ad3c511..7977ab2 100644 --- a/LICENSE +++ b/LICENSE @@ -6,4 +6,4 @@ Redistribution and use in source and binary forms, with or without modification, 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..55bafd7 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +WEBROOT ?= root + +GEN = index.html +FILES = ${GEN} style.css pubkey.asc + +all: ${GEN} + +index.html: + mandoc -Thtml index.7 -Ostyle=style.css > index.html + +clean: + rm -f ${GEN} + +install: ${FILES} + install -d ${WEBROOT} + install -Cm644 ${FILES} ${WEBROOT} + +.PHONY: all clean install diff --git a/index.7 b/index.7 new file mode 100644 index 0000000..e42e0c9 --- /dev/null +++ b/index.7 @@ -0,0 +1,94 @@ +.Dd August 24, 2024 +.Dt NAKIDAI.RU 7 +.Os Nakidai +. +.Sh SYNOPSYS +.Nm mail +.Mt plaza521@inbox.ru +. +.Sh NAME +.Nm nakidai +.Nd C & Python developer +. +.Sh DESCRIPTION +I'm coder from Russia. +I used to like playing games, +but now I'm tired of it a little I think. +. +.Pp +I'm writing my projects mostly in Python, +but sometime on dark nights +I want to relax and write something in C, +usually after several hours since I started coding +I will go cry because of my stupidness, +and then close to morning I will go sleep). +. +.Pp +This is links to places +where you can find me: +.Bl -bullet +.It +.Lk https://discord.com/users/596659213124763649 discord +.It +.Lk https://git.nakidai.ru/nakidai gitea +.It +.Lk https://github.com/nakidai github +.El +. +.Pp +Also since I'm coder, +I write some projects. +There you can find some: +.Bl -tag -width Ds +.It Lk https://github.com/latexds LaTeXDS +LaTeX renderer in Discord +.It Lk https://github.com/nakidai/stp stp +SVG renderer in web +.It Lk https://github.com/nakidai/NotABot NotABot +QoL bot for Vectozavr's Discord server +.It Lk https://github.com/nakidai/MQEC MQEC +.Lk https://github.com/UltraQbik/SMC-MQ-CPU MQ +emulator +.It Lk https://git.nakidai.ru/nakidai/mycfetch mycfetch +Simple system fetch tool +.El +. +.Pp +Also there +you can see my key +which I use +for signing commits: +.Bl -bullet +.It +.Lk https://nakidai.ru/pubkey.asc link +.El +.Bd -literal +-----BEGIN PGP PUBLIC KEY BLOCK----- +Comment: Nakidai +Comment: C & Python developer +Comment: Fingerprint: A0294D0C6040EFAA74F538C718AD605FDA13FE5A + + +mDMEZeYYIhYJKwYBBAHaRw8BAQdAW2JvE2Q+Bv2vJ3r9ZXqeFXS4HllW6A79G6Wr +ay3Gr260Mk5ha2lkYWkgKEMgJiBQeXRob24gZGV2ZWxvcGVyKSA8cGxhemE1MjFA +aW5ib3gucnU+iJMEExYKADsWIQSgKU0MYEDvqnT1OMcYrWBf2hP+WgUCZeYYIgIb +AwULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIXgAAKCRAYrWBf2hP+WgctAP9U/M/S +3F4Cls4CQgmsErAYmfRQ2UKYC1fQVeg16yZT/AEAjZRoAFnf3J/fb7rByPsW454v +hVmB+tNyVDeqqQ0xage4OARl5hgiEgorBgEEAZdVAQUBAQdATk8I26tjHH2+PtpA +kG/I+GmxWJqqjWcsm0WL68MJa3cDAQgHiHgEGBYKACAWIQSgKU0MYEDvqnT1OMcY +rWBf2hP+WgUCZeYYIgIbDAAKCRAYrWBf2hP+WqZWAP46h/hgCJZF+XKs8/djVs7b +RrWbuSGUxxPc7SVzL+yrEAD8C1SSfs+uWTgUTEIeIZ/QHtkUTEH8wcgmfHIGRUYE +SwA= +=Limc +-----END PGP PUBLIC KEY BLOCK----- +.Ed +. +.Sh SEE ALSO +.Bl -bullet +.It +.Lk https://causal.agency "Site that made me love manuals" +.It +.Lk https://stp.nakidai.ru stp +.It +.Lk https://latexds.nakidai.ru latexds +.El diff --git a/pubkey.asc b/pubkey.asc new file mode 100644 index 0000000..3d2d98b --- /dev/null +++ b/pubkey.asc @@ -0,0 +1,18 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Comment: Nakidai +Comment: C & Python developer +Comment: Fingerprint: A0294D0C6040EFAA74F538C718AD605FDA13FE5A + + +mDMEZeYYIhYJKwYBBAHaRw8BAQdAW2JvE2Q+Bv2vJ3r9ZXqeFXS4HllW6A79G6Wr +ay3Gr260Mk5ha2lkYWkgKEMgJiBQeXRob24gZGV2ZWxvcGVyKSA8cGxhemE1MjFA +aW5ib3gucnU+iJMEExYKADsWIQSgKU0MYEDvqnT1OMcYrWBf2hP+WgUCZeYYIgIb +AwULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIXgAAKCRAYrWBf2hP+WgctAP9U/M/S +3F4Cls4CQgmsErAYmfRQ2UKYC1fQVeg16yZT/AEAjZRoAFnf3J/fb7rByPsW454v +hVmB+tNyVDeqqQ0xage4OARl5hgiEgorBgEEAZdVAQUBAQdATk8I26tjHH2+PtpA +kG/I+GmxWJqqjWcsm0WL68MJa3cDAQgHiHgEGBYKACAWIQSgKU0MYEDvqnT1OMcY +rWBf2hP+WgUCZeYYIgIbDAAKCRAYrWBf2hP+WqZWAP46h/hgCJZF+XKs8/djVs7b +RrWbuSGUxxPc7SVzL+yrEAD8C1SSfs+uWTgUTEIeIZ/QHtkUTEH8wcgmfHIGRUYE +SwA= +=Limc +-----END PGP PUBLIC KEY BLOCK----- diff --git a/root/credits.html b/root/credits.html deleted file mode 100644 index 295b31c..0000000 --- a/root/credits.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - Credits - - - - - \ No newline at end of file diff --git a/root/images/avatar.png b/root/images/avatar.png deleted file mode 100644 index 434f445..0000000 Binary files a/root/images/avatar.png and /dev/null differ diff --git a/root/images/discord.png b/root/images/discord.png deleted file mode 100644 index 80ac200..0000000 Binary files a/root/images/discord.png and /dev/null differ diff --git a/root/images/git.png b/root/images/git.png deleted file mode 100644 index 42d186b..0000000 Binary files a/root/images/git.png and /dev/null differ diff --git a/root/images/github.png b/root/images/github.png deleted file mode 100644 index 432750d..0000000 Binary files a/root/images/github.png and /dev/null differ diff --git a/root/images/steam.png b/root/images/steam.png deleted file mode 100644 index f682859..0000000 Binary files a/root/images/steam.png and /dev/null differ diff --git a/root/index.html b/root/index.html index a0bc61c..e8e77f5 100644 --- a/root/index.html +++ b/root/index.html @@ -1,48 +1,100 @@ - + - - - - Nakidai + + + + NAKIDAI.RU(7) -
-
- avatar -

Nakidai

-
-
-
-
-

About

-
-
-

I'm coder from Russia. I used to like playing computer games, but now I'm tired of it a little I think

-

I'm writing projects mostly in Python, but sometime on dark nights I want to relax and write something in C then go cry and after several hours go sleep in the morning

-
-
-
-
-

Links

-
-
-

- GithubGithub -

-

- GithubSteam -

-
-
-
- -
+ + + + + + +
NAKIDAI.RU(7)Miscellaneous Information ManualNAKIDAI.RU(7)
+
+
+

+

mail + plaza521@inbox.ru

+
+
+

+

nakidaiC & + Python developer

+
+
+

+

I'm coder from Russia. I used to like playing games, but now I'm + tired of it a little I think.

+

I'm writing my projects mostly in Python, but sometime on dark + nights I want to relax and write something in C, usually after several hours + since I started coding I will go cry because of my stupidness, and then + close to morning I will go sleep).

+

This is links to places where you can find me:

+ +

Also since I'm coder, I write some projects. There you can find + some:

+
+
LaTeXDS
+
LaTeX renderer in Discord
+
stp
+
SVG renderer in web
+
NotABot
+
QoL bot for Vectozavr's Discord server
+
MQEC
+
MQ + emulator
+
mycfetch
+
Simple system fetch tool
+
+

Also there you can see my key which I use for signing commits:

+ +
+
-----BEGIN PGP PUBLIC KEY BLOCK-----
+Comment: Nakidai <plaza521@inbox.ru>
+Comment:   C & Python developer
+Comment: Fingerprint:   A0294D0C6040EFAA74F538C718AD605FDA13FE5A
+
+
+mDMEZeYYIhYJKwYBBAHaRw8BAQdAW2JvE2Q+Bv2vJ3r9ZXqeFXS4HllW6A79G6Wr
+ay3Gr260Mk5ha2lkYWkgKEMgJiBQeXRob24gZGV2ZWxvcGVyKSA8cGxhemE1MjFA
+aW5ib3gucnU+iJMEExYKADsWIQSgKU0MYEDvqnT1OMcYrWBf2hP+WgUCZeYYIgIb
+AwULCQgHAgIiAgYVCgkICwIEFgIDAQIeBwIXgAAKCRAYrWBf2hP+WgctAP9U/M/S
+3F4Cls4CQgmsErAYmfRQ2UKYC1fQVeg16yZT/AEAjZRoAFnf3J/fb7rByPsW454v
+hVmB+tNyVDeqqQ0xage4OARl5hgiEgorBgEEAZdVAQUBAQdATk8I26tjHH2+PtpA
+kG/I+GmxWJqqjWcsm0WL68MJa3cDAQgHiHgEGBYKACAWIQSgKU0MYEDvqnT1OMcY
+rWBf2hP+WgUCZeYYIgIbDAAKCRAYrWBf2hP+WqZWAP46h/hgCJZF+XKs8/djVs7b
+RrWbuSGUxxPc7SVzL+yrEAD8C1SSfs+uWTgUTEIeIZ/QHtkUTEH8wcgmfHIGRUYE
+SwA=
+=Limc
+-----END PGP PUBLIC KEY BLOCK-----
+
+
+
+

+ +
+
+ + + + + +
August 24, 2024Nakidai
diff --git a/root/style.css b/root/style.css index d968100..fd17e05 100644 --- a/root/style.css +++ b/root/style.css @@ -1,81 +1,17 @@ -html, body { - height: 100%; - margin: 0; - padding: 0; -} +table.head, table.foot { width: 100%; } +td.head-rtitle, td.foot-os { text-align: right; } +td.head-vol { text-align: center; } +div.Pp { margin: 1ex 0ex; } +div.Nd, div.Bf, div.Op { display: inline; } +span.Pa, span.Ad { font-style: italic; } +span.Ms { font-weight: bold; } +dl.Bl-diag > dt { font-weight: bold; } +code.Nm, code.Fl, code.Cm, code.Ic, code.In, code.Fd, code.Fn, +code.Cd { font-weight: bold; font-family: inherit; } -div { - word-wrap: break-word; -} +html { font-family: monospace; line-height: 1.25em; } +body { max-width: 80ch; margin: 1em auto; padding: 0 1ch; } +table { border-collapse: collapse; } +table.Nm code.Nm { padding-right: 1ch; } -.wrapper { - background-color: black; - color: grey; - font-family: sans-serif; - - min-height: 100%; - min-width: 100%; - - display: flex; - flex-direction: column; - justify-content: space-between; - align-items: center; -} - -.header { - height: 20%; - padding: 5px; - - display: flex; - align-items: center; - justify-content: space-evenly; - flex-wrap: wrap; - - font-size: xxx-large; -} - -.content-wrapper { - height: 60%; - width: 100%; - - display: flex; - flex-direction: row; - justify-content: center; - flex-wrap: wrap; - align-items: center; -} - -.content { - max-width: 300px; - margin: 1%; - padding: 1%; - border-radius: 20px; - - color: black; - font-size: large; - - background-color: darkgrey; -} - -.title { - text-align: center; -} - -.info { - text-align: justify; -} - -.footer { - width: 100%; - height: 20%; - - display: flex; - justify-content: flex-end; - align-items: flex-end; -} - -.copyright { - text-align: right; - - padding-right: 15px; -} \ No newline at end of file +body { background:#000; color:#AAA; } diff --git a/style.css b/style.css new file mode 100644 index 0000000..fd17e05 --- /dev/null +++ b/style.css @@ -0,0 +1,17 @@ +table.head, table.foot { width: 100%; } +td.head-rtitle, td.foot-os { text-align: right; } +td.head-vol { text-align: center; } +div.Pp { margin: 1ex 0ex; } +div.Nd, div.Bf, div.Op { display: inline; } +span.Pa, span.Ad { font-style: italic; } +span.Ms { font-weight: bold; } +dl.Bl-diag > dt { font-weight: bold; } +code.Nm, code.Fl, code.Cm, code.Ic, code.In, code.Fd, code.Fn, +code.Cd { font-weight: bold; font-family: inherit; } + +html { font-family: monospace; line-height: 1.25em; } +body { max-width: 80ch; margin: 1em auto; padding: 0 1ch; } +table { border-collapse: collapse; } +table.Nm code.Nm { padding-right: 1ch; } + +body { background:#000; color:#AAA; }