add music section

This commit is contained in:
horhik 2021-11-13 20:22:02 +03:00
parent 22732a8240
commit fccc4d3b14
94 changed files with 4311 additions and 0 deletions

View File

@ -50,6 +50,8 @@ img {
width: 100%;
}
audio {height:200px; width:300px; background:yellow;}
@import "logo";
@import "page-404";
@import "elements/page-links";

4
content/music/_index.md Normal file
View File

@ -0,0 +1,4 @@
---
title: "Horhik's music"
date: 2021-06-06
---

6
content/music/kek.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "Kek"
date: 2021-11-13T20:00:32+03:00
draft: true
---

Binary file not shown.

View File

@ -0,0 +1,16 @@
---
title: "Software should work(ru)"
date: 2021-11-13T19:22:35+03:00
image_url: https://pixelfed-prod.nyc3.cdn.digitaloceanspaces.com/public/m/_v2/319616208418770944/1672d1d81-1ab3fb/vnRYg4ZEMivr/4Q5oENJ9gwjBtTwrFBeo0RXPc1fml1h4ObzTSMAz.jpg
type: post
---
# Software should work
*"софт должен просто работать"*
Made with [BespokeSynth](https://www.bespokesynth.com/)
<audio controls>
<source src="../software_should_work.mp3" type="audio/mp3">
Your browser does not support the audio tag.
</audio>

View File

@ -1,5 +1,14 @@
{{ define "main" }}
<main>
<style>
audio {height:200px;
width:300px;
background-image:url("{{.Params.image_url}}");
background-position: center;
background-size: 550px 425px;
border-radius: 10px;
}
</style>
<article class="blog-post">
<h1 class="blog-header">{{ .Title }}</h1>
<sub><small><time>{{ .Date.Format "02.01.2006 15:04" }}</time></small></sub>

4
layouts/music/li.html Normal file
View File

@ -0,0 +1,4 @@
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<div class="meta">{{ .Date.Format "Mon, Jan 2, 2006" }}</div>
</li>

26
layouts/music/list.html Normal file
View File

@ -0,0 +1,26 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{{ .Title }}</title>
{{ $style := resources.Get "css/basic.scss" }}
{{ $style = $style | toCSS }}
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ $style.Permalink }}">
{{ with .OutputFormats.Get "RSS" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
{{- end }}
</head>
{{ partial "header" . }}
<main id="main">
<div>
{{ range .Pages }}
{{ .Render "summary"}}
{{ end }}
</div>
</main>
{{ partial "footer" . }}

View File

@ -0,0 +1,9 @@
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="{{ .Permalink }}">{{ .Title }}</a>
</div>
<time class="recent-block__time">{{ .Date.Format "02.01.2006 15:04" }}</time>
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</article>

View File

@ -3,6 +3,7 @@
{{$home := "░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░\n\n░█░█░█▀█░░█░░█░█░█░░░░█░\n░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░"}}
{{$portfolio := "░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█\n░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█\n░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀"}}
{{$blog := "░█▀▄░█░░░█▀█░█▀▀\n ░█▀▄░█░░░█░█░█░█\n ░▀▀░░▀▀▀░▀▀▀░▀▀▀"}}
{{$music := "░█▄█░█░█░█▀▀░▀█▀░█▀▀\n░█░█░█░█░▀▀█░░█░░█░░\n░▀░▀░▀▀▀░▀▀▀░▀▀▀░▀▀▀"}}
{{$sec := .FirstSection}}
<header class="logo--wrapper">
<a href="{{ .Page.URL }}"><pre class="logo toilet-logo" title="Home">{{if eq .Section "portfolio"}}
@ -10,6 +11,8 @@
<!-- <span class="logo-quote">O. Georges works</span> -->
{{else if eq .Section "posts"}}
{{$blog}}
{{else if eq .Section "music"}}
{{$music}}
<!--<span class="logo-quote">O. Georges thoughts</span> -->
{{else}}
{{$horhik}}
@ -22,6 +25,7 @@
<li class="page-link"><a href="{{ .URL | relURL }}">
{{ if eq (title .Section) "Portfolio" }}{{$portfolio}}
{{ else if eq (title .Section) "Posts"}}{{$blog}}
{{ else if eq (title .Section) "Music"}}{{$music}}
{{end}}
</a></li>
{{ end }}

105
public/404.html Normal file
View File

@ -0,0 +1,105 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>404 Page not found</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/404.html"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main id="main">
<div class="not-found" >
<pre>
░░░░░░░░░░░█░█░▄▀▄░█░█░░░░░░░░░░░░░
░░░░░░░░░░░░▀█░█░█░░▀█░░░░░░░░░░░░░
░░░░░░░░░░░░░▀░░▀░░░░▀░░░░░░░░░░░░░
░█▀█░█▀█░▀█▀░░░█▀▀░█▀█░█░█░█▀█░█▀▄░
░█░█░█░█░░█░░░░█▀▀░█░█░█░█░█░█░█░█░
░▀░▀░▀▀▀░░▀░░░░▀░░░▀▀▀░▀▀▀░▀░▀░▀▀░░
</pre>
</div>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Categories</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/categories/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/categories/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Categories</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on Your redeyes god</title>
<link>https://god.redeyes.club/categories/</link>
<description>Recent content in Categories on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/categories/</title><link rel="canonical" href="https://god.redeyes.club/categories/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/categories/" /></head></html>

73
public/css/app-page.svg Normal file
View File

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
id="svg16"
version="1.1"
viewBox="0 0 50.799999 49.477084"
height="46.75"
width="48">
<defs
id="defs10">
<rect
id="rect62"
height="59.03009"
width="94.342064"
y="145.91623"
x="126.6591" />
</defs>
<metadata
id="metadata13">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1">
<text
id="text52"
y="18.58102"
x="1.6502874"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.61345px;line-height:1.13;font-family:'mononoki Nerd Font Mono';-inkscape-font-specification:'mononoki Nerd Font Mono';fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.190337"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'mononoki Nerd Font Mono';-inkscape-font-specification:'mononoki Nerd Font Mono';fill:#ffb86c;fill-opacity:1;stroke-width:0.190337"
y="18.58102"
x="1.6502874"
id="tspan50">░█░█░░░░█▀▄</tspan><tspan
id="tspan54"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'mononoki Nerd Font Mono';-inkscape-font-specification:'mononoki Nerd Font Mono';fill:#ffb86c;fill-opacity:1;stroke-width:0.190337"
y="27.184219"
x="1.6502874">░█▀█░░░░█░█</tspan><tspan
id="tspan56"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'mononoki Nerd Font Mono';-inkscape-font-specification:'mononoki Nerd Font Mono';fill:#ffb86c;fill-opacity:1;stroke-width:0.190337"
y="35.787418"
x="1.6502874">░▀░▀░▀░░▀▀░</tspan><tspan
id="tspan58"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'mononoki Nerd Font Mono';-inkscape-font-specification:'mononoki Nerd Font Mono';stroke-width:0.190337"
y="44.390617"
x="1.6502874" /></text>
<text
style="font-size:10.5833px;line-height:1.125;font-family:sans-serif;white-space:pre;shape-inside:url(#rect62);"
id="text60"
xml:space="preserve" />
<text
id="text891"
y="33.40794"
x="5.8149066"
style="font-size:2.28947px;line-height:1.125;font-family:sans-serif;stroke-width:0.0572371"
xml:space="preserve"><tspan
style="stroke-width:0.0572371"
y="33.40794"
x="5.8149066"
id="tspan889"> </tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

16
public/css/appstore.svg Normal file
View File

@ -0,0 +1,16 @@
<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M14.3086 18.5H3.69141C1.65596 18.5 0 16.844 0 14.8086V4.19141C0 2.15596 1.65596 0.5 3.69141 0.5H14.3086C16.344 0.5 18 2.15596 18 4.19141V14.8086C18 16.844 16.344 18.5 14.3086 18.5Z" fill="#6272A4"/>
<path d="M14.3086 0.5H9V18.5H14.3086C16.344 18.5 18 16.844 18 14.8086V4.19141C18 2.15596 16.344 0.5 14.3086 0.5Z" fill="#6272A4"/>
<path d="M5.54237 14.3697C5.37977 14.6513 5.08372 14.8089 4.77972 14.8089C4.6307 14.8089 4.47981 14.7711 4.34175 14.6914C3.92205 14.4491 3.77773 13.9105 4.02003 13.4908L4.1929 13.1914H6.22264L5.54237 14.3697Z" fill="#282A36"/>
<path d="M3.88477 12.4883C3.40014 12.4883 3.00586 12.094 3.00586 11.6094C3.00586 11.1247 3.40014 10.7305 3.88477 10.7305H5.61368L7.98511 6.62302L7.34242 5.50983C7.10012 5.09013 7.2444 4.55154 7.6641 4.30921H7.66413C8.08383 4.06691 8.62242 4.21126 8.86472 4.63092L9 4.86524L9.13528 4.63096C9.37768 4.21123 9.91628 4.06695 10.3359 4.30924C10.5392 4.42663 10.6846 4.61616 10.7454 4.84292C10.8062 5.06967 10.7749 5.30656 10.6575 5.50987L7.64343 10.7305H9.54464L10.5595 12.4883H3.88477Z" fill="#282A36"/>
<path d="M14.1153 12.4883H13.4013L13.98 13.4908C14.2224 13.9105 14.0781 14.4491 13.6584 14.6914C13.5229 14.7696 13.3726 14.8096 13.2203 14.8096C13.144 14.8096 13.0672 14.7995 12.9914 14.7792C12.7646 14.7184 12.5751 14.573 12.4577 14.3697L9.40601 9.08398L10.4209 7.32617L12.3864 10.7305H14.1153C14.6 10.7305 14.9942 11.1248 14.9942 11.6094C14.9942 12.0941 14.6 12.4883 14.1153 12.4883Z" fill="#282A36"/>
<path d="M9 10.7305V12.4883H10.5595L9.54468 10.7305H9Z" fill="#282A36"/>
<path d="M10.7454 4.8429C10.6846 4.61615 10.5392 4.42658 10.3359 4.30923C9.91624 4.06693 9.37765 4.21118 9.13528 4.63095L9 4.86523V8.38085L10.6575 5.50985C10.7749 5.30654 10.8062 5.0697 10.7454 4.8429Z" fill="#282A36"/>
</g>
<defs>
<clipPath id="clip0">
<rect y="0.5" width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

377
public/css/basic.css Normal file
View File

@ -0,0 +1,377 @@
@charset "UTF-8";
/* Dracula theme */
/*
:root {
--background: #282A36 ;
--comment: #6272A4 ;
--selection: #44475A ;
--foreground: #F8F8F2 ;
--cyan: #8BE9FD ;
--orange: #FFB86C;
--green: #50FA7B ;
--pink: #FF79C6 ;
--purple: #BD93F9 ;
--red: #FF5555 ;
--yellow: #F1FA8C;
}
*/
/* Gruvbox theme */
@import url("https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
--background: #282828 ;
--comment: #458588 ;
--selection: #665c54 ;
--foreground: #ebdbb2 ;
--cyan: #83a598 ;
--orange: #fe8019;
--green: #98971a ;
--pink: #d3869b ;
--purple: #b16286 ;
--red: #cc241d ;
--yellow: #F1FA8C; }
@font-face {
font-family: 'Mononoki';
src: url("../fonts/mononoki-Regular.eot");
src: url("../fonts/mononoki-Regular.eot") format("embedded-opentype"), url("../fonts/mononoki-Regular.ttf") format("truetype"), url("../fonts/mononoki-Regular.woff2") format("woff2"), url("../fonts/mononoki-Regular.woff") format("woff"); }
@font-face {
font-family: 'Mononoki Bold';
src: url("../fonts/mononoki-Bold.eot");
src: url("../fonts/mononoki-Bold.eot") format("embedded-opentype"), url("../fonts/mononoki-Bold.ttf") format("truetype"), url("../fonts/mononoki-Bold.woff2") format("woff2"), url("../fonts/mononoki-Bold.woff") format("woff"); }
@font-face {
font-family: 'Mononoki';
src: url("../fonts/mononoki-Regular.eot");
src: url("../fonts/mononoki-Regular.eot") format("embedded-opentype"), url("../fonts/mononoki-Regular.ttf") format("truetype"), url("../fonts/mononoki-Regular.woff2") format("woff2"), url("../fonts/mononoki-Regular.woff") format("woff"); }
@font-face {
font-family: 'Twemoji';
src: url("../fonts/Twemoji.ttf") format("truetype"); }
body {
margin: 0;
padding: 0;
background-color: var(--background);
color: var(--foreground);
font-family: 'Mononoki', 'Ubuntu', 'Twemoji' sans-serif;
max-width: 1000px;
margin: 0 auto;
box-shadow: 0px -30px 20px rgba(0, 0, 0, 0.5);
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
padding: 10px 0; }
a, .link {
transition: 0.3s;
color: var(--cyan);
text-decoration: none; }
a:hover, a:focus, .link:hover, .link:focus {
color: var(--pink); }
@media (min-width: 1000px) {
box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.34); }
.h1 {
font-family: 'Mononoki Bold', 'Fira Code SemiBold', 'Twemoji';
font-size: 2em; }
p code, quote code, q code {
font-family: "Mononoki", "Twemoji", monospace;
background: var(--selection);
color: var(--cyan);
border-radius: 3px;
padding: 0 6px; }
img {
width: 100%; }
.logo--wrapper {
display: grid;
font-family: Mononoki, 'Fira Code',monospace, Ubuntu; }
.logo-quote {
text-align: center;
color: var(--foreground);
margin: 10px auto 28px;
max-width: 300px; }
.logo {
margin: 0 auto;
margin-top: 30px;
display: flex;
flex-direction: column;
align-items: center;
align-content: center;
font-family: Mononoki, 'Fira Code',monospace, Ubuntu; }
.toilet-logo {
color: var(--orange);
font-size: 0.9em;
line-height: 1.115em;
margin: 0;
font-family: Mononoki, 'Fira Code',monospace, Ubuntu;
white-space: pre-line; }
.not-found {
display: flex;
justify-content: center;
font-size: 25px;
line-height: 28px;
color: var(--selection);
tansition: 0.3s; }
@media screen and (max-width: 500px) {
.not-found {
font-size: 14px;
line-height: 14px; } }
.page-list {
list-style: none;
display: flex;
justify-content: space-between;
width: 400px;
margin: 0 auto;
font-family: Mononoki;
padding: 0; }
.page-link {
font-size: 0.4em;
line-height: 1.115em;
transition: 0.3s;
margin: 0px 10px; }
.page-link a {
color: var(--green);
text-decoration: none;
display: block; }
.page-link a:hover, .page-link a:focus {
color: var(--pink); }
@media screen and (max-width: 420px) {
.page-link {
line-height: 1.112em;
white-space: pre-line;
margin-bottom: 5px; }
.page-list {
flex-direction: column;
align-items: center;
width: auto; }
.toilet-logo {
font-size: 0.6em; } }
.recent {
margin: 0 auto; }
.recent-header {
text-align: center; }
.recent-list {
list-style: none;
margin: 0;
padding: 0; }
.recent-block {
text-decoration: none;
font-family: "Mononoki", "Twemoji", monospace;
font-size: 1.3em;
box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.34);
background: var(--background);
border-radius: 10px;
word-break: break-word;
display: block;
align-items: center;
align-content: center;
margin: 20px 0;
padding: 10px 20px;
width: max-content;
max-width: 80vw;
color: var(--cyan);
transition: 0.2s; }
.recent-block--left {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
margin-right: auto; }
.recent-block--left::before {
content: '📜';
margin: 5px;
display: flex;
align-items: center;
align-content: center; }
.recent-block--left:hover, .recent-block--left:focus {
padding-left: 40px; }
.recent-block--left:active {
padding-left: 0; }
.recent-block--right {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
margin-left: auto; }
.recent-block--right::after {
content: url("../../../src/svg/github-icon.svg");
margin: 5px;
display: flex;
align-items: center;
align-content: center; }
.recent-block--right:hover, .recent-block--right:focus {
padding-right: 40px; }
.recent-block--right:active {
padding-right: 0; }
.recent-block__time {
float: right;
font-size: 12px;
color: var(--purple); }
.contacts {
list-style: none;
padding: 0;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 0 auto; }
.contact-link {
text-decoration: none;
font-size: 1em;
color: var(--cyan);
line-height: 0.8em;
margin: 10px 15px;
display: block; }
.copyright {
font-family: "Mononoki", "Twemoji", monospace;
margin-left: 20px; }
.portfolio {
list-style: none;
padding: 20px;
display: flex;
flex-direction: column;
align-content: center;
align-items: center;
justify-content: center; }
.project {
display: flex;
flex-direction: column;
padding: 26px;
box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.34);
border-radius: 10px;
background: var(--background);
font-family: "Mononoki", "Twemoji", monospace;
text-align: center;
margin: 20px 0;
max-width: 70vw;
transition: 0.3s; }
.project:hover, .project:focus {
box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.6); }
.project h2 {
margin-bottom: 0; }
.project-name {
color: var(--green);
margin: 0; }
.project-name a {
color: var(--green);
text-decoration: none; }
.project-gallery {
list-style: none;
padding: 0; }
.project-links {
padding: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: space-around; }
.project-icon {
width: 35px;
height: auto;
margin-right: 10px; }
.project-link {
margin-right: 10px;
display: flex;
align-items: center;
align-content: center;
vertical-align: center; }
.project-link::before {
margin-right: 10px; }
.project-link--github::before {
content: url("./github-icon.svg"); }
.project-link--iphone::before {
content: url("./appstore.svg"); }
.project-link--android::before {
content: url("./googleplay.svg"); }
.project-link--app-page::before {
content: url("./app-page.svg"); }
.project-link__logo {
margin-right: 10px;
width: 30px; }
.blog-posts {
list-style: none;
padding: 0;
font-family: 'Cuprum', sans-serif;
transition: 0.5s; }
.blog-posts__item {
font-family: 'Cuprum', sans-serif;
color: var(--foreground); }
.blog-posts__item::before, .blog-posts__item::after {
content: '' !important; }
.blog-posts__item--right p {
text-align: right; }
.blog-posts__item--right ul {
flex-direction: row-reverse; }
.blog-posts__item--left {
text-align: left; }
.nothing {
font-family: 'Mononoki Bold', monospace;
text-align: center; }
.blog-post__header {
color: var(--green); }
.blog-post__header a {
color: var(--green); }
.blog-info__list {
list-style: none;
padding: 0;
display: flex; }
.blog-info__item {
margin-right: 20px;
color: var(--orange);
display: flex;
align-items: center; }
.blog-info__item--created::before {
content: url("../../svg/watch.svg");
margin-right: 10px; }
.blog-info__item--reading-time::before {
content: url("../../svg/stopwatch.svg");
margin-right: 10px; }
.blog-header {
color: var(--green);
font-family: "Mononoki Bold", "Twitter Color Emoji", "Twemoji", sans-serif;
font-size: 2em;
display: inline-flex;
justify-content: center;
text-align: center;
margin: 0 auto;
margin-top: 32px; }
.blog-post {
padding: 0px 30px;
font-size: 22px;
font-family: Ubuntu; }
.blog-post time {
font-family: "Cuprum", "Mononoki", "Twemoji", monospace;
display: flex;
align-content: center;
justify-content: center;
font-size: 0.9em; }

View File

@ -0,0 +1,3 @@
<svg width="30" height="30" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M13 0.541664C5.8175 0.541664 0 6.26167 0 13.3163C0 18.9616 3.7245 23.7488 8.88875 25.4367C9.53875 25.5569 9.77708 25.1615 9.77708 24.8224C9.77708 24.5191 9.76625 23.7153 9.76083 22.6503C6.14467 23.4206 5.382 20.9365 5.382 20.9365C4.7905 19.4621 3.93575 19.0678 3.93575 19.0678C2.75817 18.2758 4.02675 18.2921 4.02675 18.2921C5.33217 18.3809 6.01792 19.6083 6.01792 19.6083C7.17708 21.5616 9.061 20.9972 9.80417 20.6711C9.92117 19.8445 10.2559 19.2823 10.6275 18.9627C7.74042 18.6431 4.706 17.5446 4.706 12.6501C4.706 11.2558 5.20975 10.1162 6.04392 9.22242C5.89767 8.89958 5.45892 7.60067 6.15767 5.84133C6.15767 5.84133 7.24642 5.499 9.73267 7.15108C10.7727 6.86725 11.8777 6.72642 12.9827 6.71992C14.0877 6.72642 15.1927 6.86725 16.2327 7.15108C18.7027 5.499 19.7914 5.84133 19.7914 5.84133C20.4902 7.60067 20.0514 8.89958 19.9214 9.22242C20.7502 10.1162 21.2539 11.2558 21.2539 12.6501C21.2539 17.5576 18.2152 18.6377 15.3227 18.9518C15.7777 19.3353 16.2002 20.1186 16.2002 21.3157C16.2002 23.0252 16.1839 24.3988 16.1839 24.8138C16.1839 25.1485 16.4114 25.5483 17.0777 25.4204C22.2788 23.7434 26 18.9529 26 13.3163C26 6.26167 20.1793 0.541664 13 0.541664Z" fill="#6272A4"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

13
public/css/googleplay.svg Normal file
View File

@ -0,0 +1,13 @@
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M10.3567 9.0016L1.31756 17.7057C0.894269 17.4164 0.642953 16.9352 0.647397 16.4226V1.58061C0.642953 1.06794 0.894269 0.586767 1.31756 0.297485L10.3567 9.0016Z" fill="#6272A4" stroke="#282A36" stroke-width="0.340909"/>
<path d="M13.5196 5.96128L10.3567 9.00159L1.3175 0.297479C1.35156 0.271083 1.38704 0.246526 1.42374 0.223923C1.90147 -0.0656265 2.49819 -0.0749742 2.98477 0.199404L13.5196 5.96128Z" fill="#6272A4" stroke="#282A36" stroke-width="0.340909"/>
<path d="M17.3527 9.00162C17.3586 9.58037 17.0441 10.115 16.5354 10.391L13.5196 12.0419L10.3567 9.00162L13.5196 5.9613L16.5354 7.61221C17.0441 7.88828 17.3586 8.42286 17.3527 9.00162Z" fill="#6272A4" stroke="#282A36" stroke-width="0.340909"/>
<path d="M13.5196 12.0419L2.98477 17.8038C2.49712 18.0739 1.90266 18.0646 1.42374 17.7793C1.38704 17.7567 1.35156 17.7321 1.3175 17.7057L10.3567 9.00159L13.5196 12.0419Z" fill="#6272A4" stroke="#282A36" stroke-width="0.340909"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="18" height="18" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

11
public/css/stopwatch.svg Normal file
View File

@ -0,0 +1,11 @@
<svg width="24" height="24" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0)">
<path d="M7.43744 5.24994H6.56244L6.56288 8.0561L8.44019 9.93386L9.05885 9.31521L7.43788 7.6938L7.43744 5.24994Z" fill="#6272A4"/>
<path d="M13.125 4.01271L10.8623 1.75001L10.0445 2.56775C9.26589 2.11926 8.38107 1.83919 7.43652 1.77211L7.43715 0.875004H8.74997V0H5.24999V0.875004H6.56218L6.56155 1.77221C5.61776 1.83954 4.73356 2.11955 3.95545 2.56775L3.13771 1.75001L0.875 4.01271L1.69275 4.83046C1.1755 5.72849 0.875 6.76636 0.875 7.875C0.875 11.2524 3.62261 14 7 14C10.3774 14 13.125 11.2524 13.125 7.875C13.125 6.76636 12.8245 5.72846 12.3072 4.83046C12.3072 4.83046 13.125 4.01268 13.125 4.01271ZM7 13.125C4.10499 13.125 1.75 10.77 1.75 7.87504C1.75 4.98003 4.10499 2.62504 7 2.62504C9.895 2.62504 12.25 4.98003 12.25 7.87504C12.25 10.77 9.895 13.125 7 13.125Z" fill="#6272A4"/>
</g>
<defs>
<clipPath id="clip0">
<rect width="14" height="14" fill="white"/>
</clipPath>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

4
public/css/watch.svg Normal file
View File

@ -0,0 +1,4 @@
<svg width="24" height="24" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M7 0C3.14027 0 0 3.14027 0 7C0 10.8597 3.14027 14 7 14C10.8597 14 14 10.8597 14 7C14 3.14027 10.8597 0 7 0ZM7 13.125C3.62262 13.125 0.875004 10.3774 0.875004 7C0.875004 3.62262 3.62262 0.875004 7 0.875004C10.3774 0.875004 13.125 3.62262 13.125 7C13.125 10.3774 10.3774 13.125 7 13.125Z" fill="#6272A4"/>
<path d="M7.43744 2.625H6.56244V7.18114L9.3156 9.93431L9.93425 9.31566L7.43744 6.81883V2.625Z" fill="#6272A4"/>
</svg>

After

Width:  |  Height:  |  Size: 536 B

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://github.com/hole-chat/</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/github/https/github.com/hole-chat/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/github/https/github.com/hole-chat/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://github.com/hole-chat/</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://github.com/hole-chat/ on Your redeyes god</title>
<link>https://god.redeyes.club/github/https/github.com/hole-chat/</link>
<description>Recent content in https://github.com/hole-chat/ on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/github/https/github.com/hole-chat/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/github/https/github.com/hole-chat/</title><link rel="canonical" href="https://god.redeyes.club/github/https/github.com/hole-chat/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/github/https/github.com/hole-chat/" /></head></html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://github.com/Horhik/ankilan</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/github/https/github.com/horhik/ankilan/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/github/https/github.com/horhik/ankilan/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://github.com/Horhik/ankilan</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://github.com/Horhik/ankilan on Your redeyes god</title>
<link>https://god.redeyes.club/github/https/github.com/horhik/ankilan/</link>
<description>Recent content in https://github.com/Horhik/ankilan on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/github/https/github.com/horhik/ankilan/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/github/https/github.com/horhik/ankilan/</title><link rel="canonical" href="https://god.redeyes.club/github/https/github.com/horhik/ankilan/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/github/https/github.com/horhik/ankilan/" /></head></html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://github.com/horhik/snake</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/github/https/github.com/horhik/snake/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/github/https/github.com/horhik/snake/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://github.com/horhik/snake</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://github.com/horhik/snake on Your redeyes god</title>
<link>https://god.redeyes.club/github/https/github.com/horhik/snake/</link>
<description>Recent content in https://github.com/horhik/snake on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/github/https/github.com/horhik/snake/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/github/https/github.com/horhik/snake/</title><link rel="canonical" href="https://god.redeyes.club/github/https/github.com/horhik/snake/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/github/https/github.com/horhik/snake/" /></head></html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://github.com/horhik/tasquare</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/github/https/github.com/horhik/tasquare/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/github/https/github.com/horhik/tasquare/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://github.com/horhik/tasquare</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://github.com/horhik/tasquare on Your redeyes god</title>
<link>https://god.redeyes.club/github/https/github.com/horhik/tasquare/</link>
<description>Recent content in https://github.com/horhik/tasquare on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/github/https/github.com/horhik/tasquare/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/github/https/github.com/horhik/tasquare/</title><link rel="canonical" href="https://god.redeyes.club/github/https/github.com/horhik/tasquare/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/github/https/github.com/horhik/tasquare/" /></head></html>

163
public/github/index.html Normal file
View File

@ -0,0 +1,163 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Github</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/github/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/github/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Github</h1>
</div>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/github/https/github.com/hole-chat/">https://github.com/hole-chat/</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/github/https/github.com/horhik/ankilan/">https://github.com/Horhik/ankilan</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/github/https/github.com/horhik/snake/">https://github.com/horhik/snake</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/github/https/github.com/horhik/tasquare/">https://github.com/horhik/tasquare</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<div>
1 of 1
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

46
public/github/index.xml Normal file
View File

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Github on Your redeyes god</title>
<link>https://god.redeyes.club/github/</link>
<description>Recent content in Github on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/github/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>https://github.com/hole-chat/</title>
<link>https://god.redeyes.club/github/https/github.com/hole-chat/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/github/https/github.com/hole-chat/</guid>
<description></description>
</item>
<item>
<title>https://github.com/Horhik/ankilan</title>
<link>https://god.redeyes.club/github/https/github.com/horhik/ankilan/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/github/https/github.com/horhik/ankilan/</guid>
<description></description>
</item>
<item>
<title>https://github.com/horhik/snake</title>
<link>https://god.redeyes.club/github/https/github.com/horhik/snake/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/github/https/github.com/horhik/snake/</guid>
<description></description>
</item>
<item>
<title>https://github.com/horhik/tasquare</title>
<link>https://god.redeyes.club/github/https/github.com/horhik/tasquare/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/github/https/github.com/horhik/tasquare/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/github/</title><link rel="canonical" href="https://god.redeyes.club/github/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/github/" /></head></html>

104
public/home/index.html Normal file
View File

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/home/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header"></h1>
<sub><small><time>01.01.0001 00:00</time></small></sub>
<div>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

115
public/index.html Normal file
View File

@ -0,0 +1,115 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.88.1" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Your redeyes god</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

65
public/index.xml Normal file
View File

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Your redeyes god</title>
<link>https://god.redeyes.club/</link>
<description>Recent content on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 06 Jun 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://god.redeyes.club/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Hole chat 🐰</title>
<link>https://god.redeyes.club/portfolio/hole/</link>
<pubDate>Sat, 01 May 2021 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/hole/</guid>
<description></description>
</item>
<item>
<title>PyAutoGUI for simplifying anki routine</title>
<link>https://god.redeyes.club/posts/pyautogui-for-simplifying-anki-routine/</link>
<pubDate>Thu, 21 Jan 2021 10:26:19 +0300</pubDate>
<guid>https://god.redeyes.club/posts/pyautogui-for-simplifying-anki-routine/</guid>
<description>I had been adding some cards to Anki. It was lowercase word and word with stress in russian.</description>
</item>
<item>
<title>AnkiLan ⭐</title>
<link>https://god.redeyes.club/portfolio/ankilan/</link>
<pubDate>Fri, 01 May 2020 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/ankilan/</guid>
<description></description>
</item>
<item>
<title>Tasquare ☑</title>
<link>https://god.redeyes.club/portfolio/tasquare/</link>
<pubDate>Wed, 01 Jan 2020 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/tasquare/</guid>
<description></description>
</item>
<item>
<title>Snake game 🐍 </title>
<link>https://god.redeyes.club/portfolio/snake/</link>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/snake/</guid>
<description>The simple snake game which working on both desktop 🖥 and mobile 📲</description>
</item>
<item>
<title></title>
<link>https://god.redeyes.club/home/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/home/</guid>
<description></description>
</item>
</channel>
</rss>

137
public/music/index.html Normal file
View File

@ -0,0 +1,137 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Musics</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/music/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/music/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/music/">
</a></li>
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Musics</h1>
</div>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/music/software_should_work_ru/">Software should work(ru)</a>
</div>
<time class="recent-block__time">13.11.2021 19:22</time>
</article>
<div>
1 of 1
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

21
public/music/index.xml Normal file
View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Musics on Your redeyes god</title>
<link>https://god.redeyes.club/music/</link>
<description>Recent content in Musics on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sat, 13 Nov 2021 19:22:35 +0300</lastBuildDate><atom:link href="https://god.redeyes.club/music/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Software should work(ru)</title>
<link>https://god.redeyes.club/music/software_should_work_ru/</link>
<pubDate>Sat, 13 Nov 2021 19:22:35 +0300</pubDate>
<guid>https://god.redeyes.club/music/software_should_work_ru/</guid>
<description>Software should work /&amp;ldquo;софт должен просто работать&amp;rdquo;/
Made with BespokeSynth</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/music/</title><link rel="canonical" href="https://god.redeyes.club/music/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/music/" /></head></html>

Binary file not shown.

View File

@ -0,0 +1,109 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Software should work(ru)</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/music/software_should_work_ru/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/music/">
</a></li>
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header">Software should work(ru)</h1>
<sub><small><time>13.11.2021 19:22</time></small></sub>
<div>
<h1 id="software-should-work">Software should work</h1>
<p>/&ldquo;софт должен просто работать&rdquo;/</p>
<p>Made with <a href="https://www.bespokesynth.com/">BespokeSynth</a></p>
<p><img src="./software_should_work.mp3" alt="audio"></p>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

1
public/page/1/index.html Normal file
View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/</title><link rel="canonical" href="https://god.redeyes.club/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/" /></head></html>

View File

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AnkiLan ⭐</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/portfolio/ankilan/"><pre class="logo toilet-logo" title="Home">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header">AnkiLan ⭐</h1>
<sub><small><time>01.05.2020 00:00</time></small></sub>
<div>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Hole chat 🐰</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/portfolio/hole/"><pre class="logo toilet-logo" title="Home">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header">Hole chat 🐰</h1>
<sub><small><time>01.05.2021 00:00</time></small></sub>
<div>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

204
public/portfolio/index.html Normal file
View File

@ -0,0 +1,204 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>O. George&#39;s portfolio</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/portfolio/index.xml" title="Your redeyes god">
</head>
<header class="logo--wrapper">
<a href="/portfolio/"><pre class="logo toilet-logo" title="Home">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main id="main">
<ul class="portfolio">
<li class="project">
<h2>
<a class="project-name" href="https://god.redeyes.club/portfolio/hole/">Hole chat 🐰</a>
</h2>
<p class="project-description">Decentralized messenger over Freenet network</p>
<ul class="project-links">
<li class="project-link project-link--github" >
<a href="https://github.com/hole-chat/">
Github
</a>
</li>
<li class="project-link" >
<img class="project-icon" src="https://avatars.githubusercontent.com/u/80746081?s=400&amp;u=941f96e2a43c02b36318c4efabcb36430467fc31&amp;v=4">
<a href="https://github.com/hole-chat/core/blob/master/README.md">
Site
</a>
</li>
</ul>
</li>
<li class="project">
<h2>
<a class="project-name" href="https://god.redeyes.club/portfolio/ankilan/">AnkiLan ⭐</a>
</h2>
<p class="project-description">App for creating Anki flashcards</p>
<ul class="project-links">
<li class="project-link project-link--github" >
<a href="https://github.com/Horhik/ankilan">
Github
</a>
</li>
</ul>
</li>
<li class="project">
<h2>
<a class="project-name" href="https://god.redeyes.club/portfolio/tasquare/">Tasquare ☑</a>
</h2>
<p class="project-description">TODO app with timer written on React</p>
<ul class="project-links">
<li class="project-link project-link--github" >
<a href="https://github.com/horhik/tasquare">
Github
</a>
</li>
<li class="project-link" >
<img class="project-icon" src="https://raw.githubusercontent.com/Horhik/tasquare/master/src/svg/logo.svg">
<a href="https://tasquare.horhik.xyz/">
Site
</a>
</li>
</ul>
</li>
<li class="project">
<h2>
<a class="project-name" href="https://god.redeyes.club/portfolio/snake/">Snake game 🐍 </a>
</h2>
<p class="project-description">Snake game written with P5js</p>
<ul class="project-links">
<li class="project-link project-link--github" >
<a href="https://github.com/horhik/snake">
Github
</a>
</li>
<li class="project-link" >
<img class="project-icon" src="">
<a href="https://snake.horhik.xyz/">
Site
</a>
</li>
</ul>
</li>
</ul>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>

View File

@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>O. George&#39;s portfolio on Your redeyes god</title>
<link>https://god.redeyes.club/portfolio/</link>
<description>Recent content in O. George&#39;s portfolio on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Sun, 06 Jun 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://god.redeyes.club/portfolio/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Hole chat 🐰</title>
<link>https://god.redeyes.club/portfolio/hole/</link>
<pubDate>Sat, 01 May 2021 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/hole/</guid>
<description></description>
</item>
<item>
<title>AnkiLan ⭐</title>
<link>https://god.redeyes.club/portfolio/ankilan/</link>
<pubDate>Fri, 01 May 2020 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/ankilan/</guid>
<description></description>
</item>
<item>
<title>Tasquare ☑</title>
<link>https://god.redeyes.club/portfolio/tasquare/</link>
<pubDate>Wed, 01 Jan 2020 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/tasquare/</guid>
<description></description>
</item>
<item>
<title>Snake game 🐍 </title>
<link>https://god.redeyes.club/portfolio/snake/</link>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/snake/</guid>
<description>The simple snake game which working on both desktop 🖥 and mobile 📲</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1,120 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Snake game 🐍 </title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/portfolio/snake/"><pre class="logo toilet-logo" title="Home">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header">Snake game 🐍 </h1>
<sub><small><time>01.11.2019 00:00</time></small></sub>
<div>
<p>The simple snake game which working on both desktop 🖥 and mobile 📲</p>
<div class="with-images" style="display: flex; flex-wrap: wrap; justify-content: center;" >
<img src="./snake-desktop.png"style="max-width: 600px; height: max-content;" alt="snake on desktop screenshot">
<img src="./snake-mobile.png" style="max-width: 250px" alt="snake on mobile screenshot">
</div>
<p>On mobile there&rsquo;s a support for playing via swipes 👆</p>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@ -0,0 +1,104 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tasquare ☑</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/portfolio/tasquare/"><pre class="logo toilet-logo" title="Home">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header">Tasquare ☑</h1>
<sub><small><time>01.01.2020 00:00</time></small></sub>
<div>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

96
public/posts/index.html Normal file
View File

@ -0,0 +1,96 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Posts</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/posts/index.xml" title="Your redeyes god">
</head>
<header class="logo--wrapper">
<a href="/posts/"><pre class="logo toilet-logo" title="Home">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main id="main">
<div>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a>
</div>
<time class="recent-block__time">21.01.2021 10:26</time>
</article>
</div>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>

20
public/posts/index.xml Normal file
View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on Your redeyes god</title>
<link>https://god.redeyes.club/posts/</link>
<description>Recent content in Posts on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 21 Jan 2021 10:26:19 +0300</lastBuildDate><atom:link href="https://god.redeyes.club/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>PyAutoGUI for simplifying anki routine</title>
<link>https://god.redeyes.club/posts/pyautogui-for-simplifying-anki-routine/</link>
<pubDate>Thu, 21 Jan 2021 10:26:19 +0300</pubDate>
<guid>https://god.redeyes.club/posts/pyautogui-for-simplifying-anki-routine/</guid>
<description>I had been adding some cards to Anki. It was lowercase word and word with stress in russian.</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1,173 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PyAutoGUI for simplifying anki routine</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
</head>
<body>
<header class="logo--wrapper">
<a href="/posts/pyautogui-for-simplifying-anki-routine/"><pre class="logo toilet-logo" title="Home">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<article class="blog-post">
<h1 class="blog-header">PyAutoGUI for simplifying anki routine</h1>
<sub><small><time>21.01.2021 10:26</time></small></sub>
<div>
<p>I had been adding some cards to Anki.
It was lowercase word and word with stress in russian. like <em>торты тОрты.</em></p>
<p>I&rsquo;m lazy and i wrote two simple scripts. All what i have to do is input words with stress into a file.<br>
First script for creating file with list of sequence of word with stress and lowercase word</p>
<div class="highlight"><div style="color:#fff;background-color:#111;-moz-tab-size:2;-o-tab-size:2;tab-size:2">
<table style="border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block;"><tr><td style="vertical-align:top;padding:0;margin:0;border:0;">
<pre tabindex="0" style="color:#fff;background-color:#111;-moz-tab-size:2;-o-tab-size:2;tab-size:2"><code><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">1
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">2
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">3
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">4
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">5
</span></code></pre></td>
<td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%">
<pre tabindex="0" style="color:#fff;background-color:#111;-moz-tab-size:2;-o-tab-size:2;tab-size:2"><code class="language-python" data-lang="python"><span style="color:#fb660a;font-weight:bold">import</span> os
f = open(<span style="color:#0086d2">&#34;/home/horhik/text.txt&#34;</span>, <span style="color:#0086d2">&#39;r+&#39;</span>)
lines = f.readlines()
<span style="color:#fb660a;font-weight:bold">for</span> ind, line in enumerate(lines):
print(line.lower(), <span style="color:#0086d2">&#34; &#34;</span>, line)
</code></pre></td></tr></table>
</div>
</div><p>After, i just pushed output to file and opened it it Emacs.</p>
<p>Second script automatizing adding cards to A<strong>nki</strong>.<br>
I split my window by <strong>Anki</strong> &ldquo;add card&rdquo; window and <strong>Emacs</strong>. As i use <code>evil</code> mode in Emacs, script looks like that:</p>
<div class="highlight"><div style="color:#fff;background-color:#111;-moz-tab-size:2;-o-tab-size:2;tab-size:2">
<table style="border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block;"><tr><td style="vertical-align:top;padding:0;margin:0;border:0;">
<pre tabindex="0" style="color:#fff;background-color:#111;-moz-tab-size:2;-o-tab-size:2;tab-size:2"><code><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 1
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 2
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 3
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 4
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 5
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 6
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 7
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 8
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f"> 9
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">10
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">11
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">12
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">13
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">14
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">15
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">16
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">17
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">18
</span><span style="margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f">19
</span></code></pre></td>
<td style="vertical-align:top;padding:0;margin:0;border:0;;width:100%">
<pre tabindex="0" style="color:#fff;background-color:#111;-moz-tab-size:2;-o-tab-size:2;tab-size:2"><code class="language-python" data-lang="python"><span style="color:#fb660a;font-weight:bold">import</span> pyautogui
<span style="color:#fb660a;font-weight:bold">import</span> os
<span style="color:#fb660a;font-weight:bold">while</span>(<span style="color:#fb660a;font-weight:bold">True</span>):
pyautogui.hotkey(<span style="color:#0086d2">&#34;winleft&#34;</span>, <span style="color:#0086d2">&#39;j&#39;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
pyautogui.press([<span style="color:#0086d2">&#34;v&#34;</span>, <span style="color:#0086d2">&#34;$&#34;</span>, <span style="color:#0086d2">&#34;y&#34;</span>]) <span style="color:#080;background-color:#0f140f;font-style:italic"># copy string</span>
pyautogui.hotkey(<span style="color:#0086d2">&#34;winleft&#34;</span>, <span style="color:#0086d2">&#39;j&#39;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
pyautogui.hotkey(<span style="color:#0086d2">&#34;ctrl&#34;</span>, <span style="color:#0086d2">&#39;v&#39;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># past text</span>
pyautogui.press(<span style="color:#0086d2">&#34;tab&#34;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># next input field</span>
pyautogui.hotkey(<span style="color:#0086d2">&#34;winleft&#34;</span>, <span style="color:#0086d2">&#39;j&#39;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
pyautogui.press([<span style="color:#0086d2">&#34;j&#34;</span>,<span style="color:#0086d2">&#34;0&#34;</span>, <span style="color:#0086d2">&#34;w&#34;</span>, <span style="color:#0086d2">&#34;v&#34;</span> , <span style="color:#0086d2">&#34;$&#34;</span>, <span style="color:#0086d2">&#34;y&#34;</span>, <span style="color:#0086d2">&#34;0&#34;</span>, <span style="color:#0086d2">&#34;j&#34;</span>, <span style="color:#0086d2">&#34;j&#34;</span> ])
<span style="color:#080;background-color:#0f140f;font-style:italic"># move to next line beginning, copy it and go to next occurence</span>
pyautogui.hotkey(<span style="color:#0086d2">&#34;winleft&#34;</span>, <span style="color:#0086d2">&#39;j&#39;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
pyautogui.hotkey(<span style="color:#0086d2">&#34;ctrl&#34;</span>, <span style="color:#0086d2">&#39;v&#39;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># paste text</span>
pyautogui.press(<span style="color:#0086d2">&#34;tab&#34;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ...</span>
pyautogui.press(<span style="color:#0086d2">&#34;tab&#34;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ...</span>
pyautogui.press(<span style="color:#0086d2">&#34;tab&#34;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ...</span>
pyautogui.press(<span style="color:#0086d2">&#34;tab&#34;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ... way to submit button</span>
pyautogui.press(<span style="color:#0086d2">&#34;space&#34;</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># pressing submit button</span>
</code></pre></td></tr></table>
</div>
</div><p><code>while(true)</code> was my mistake. I launched script in terminal, with <code>sleep</code> 3 seconds before.<br>
But i couldn&rsquo;t shut script down without any strange effect when i opening not only 2 windows in my Window Manager.<br>
Some strange things happen before I cached terminal and pressed <code>Ctrl+C</code></p>
</div>
</article>
</main>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://github.com/hole-chat/core/blob/master/README.md</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/site/https/github.com/hole-chat/core/blob/master/readme.md/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/site/https/github.com/hole-chat/core/blob/master/readme.md/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://github.com/hole-chat/core/blob/master/README.md</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://github.com/hole-chat/core/blob/master/README.md on Your redeyes god</title>
<link>https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/</link>
<description>Recent content in https://github.com/hole-chat/core/blob/master/README.md on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/</title><link rel="canonical" href="https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/" /></head></html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://snake.horhik.xyz/</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/site/https/snake.horhik.xyz/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/site/https/snake.horhik.xyz/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://snake.horhik.xyz/</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://snake.horhik.xyz/ on Your redeyes god</title>
<link>https://god.redeyes.club/site/https/snake.horhik.xyz/</link>
<description>Recent content in https://snake.horhik.xyz/ on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/site/https/snake.horhik.xyz/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/site/https/snake.horhik.xyz/</title><link rel="canonical" href="https://god.redeyes.club/site/https/snake.horhik.xyz/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/site/https/snake.horhik.xyz/" /></head></html>

View File

@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>https://tasquare.horhik.xyz/</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/site/https/tasquare.horhik.xyz/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/site/https/tasquare.horhik.xyz/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>https://tasquare.horhik.xyz/</h1>
</div>
<div>
1 of 0
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>https://tasquare.horhik.xyz/ on Your redeyes god</title>
<link>https://god.redeyes.club/site/https/tasquare.horhik.xyz/</link>
<description>Recent content in https://tasquare.horhik.xyz/ on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/site/https/tasquare.horhik.xyz/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/site/https/tasquare.horhik.xyz/</title><link rel="canonical" href="https://god.redeyes.club/site/https/tasquare.horhik.xyz/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/site/https/tasquare.horhik.xyz/" /></head></html>

154
public/site/index.html Normal file
View File

@ -0,0 +1,154 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Site</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/site/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/site/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Site</h1>
</div>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/">https://github.com/hole-chat/core/blob/master/README.md</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/site/https/snake.horhik.xyz/">https://snake.horhik.xyz/</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/site/https/tasquare.horhik.xyz/">https://tasquare.horhik.xyz/</a>
</div>
<time class="recent-block__time">01.01.0001 00:00</time>
</article>
<div>
1 of 1
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

37
public/site/index.xml Normal file
View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Site on Your redeyes god</title>
<link>https://god.redeyes.club/site/</link>
<description>Recent content in Site on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="https://god.redeyes.club/site/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>https://github.com/hole-chat/core/blob/master/README.md</title>
<link>https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/</guid>
<description></description>
</item>
<item>
<title>https://snake.horhik.xyz/</title>
<link>https://god.redeyes.club/site/https/snake.horhik.xyz/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/site/https/snake.horhik.xyz/</guid>
<description></description>
</item>
<item>
<title>https://tasquare.horhik.xyz/</title>
<link>https://god.redeyes.club/site/https/tasquare.horhik.xyz/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>https://god.redeyes.club/site/https/tasquare.horhik.xyz/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/site/</title><link rel="canonical" href="https://god.redeyes.club/site/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/site/" /></head></html>

61
public/sitemap.xml Normal file
View File

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://god.redeyes.club/portfolio/</loc>
<lastmod>2021-06-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/</loc>
<lastmod>2021-06-06T00:00:00+00:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/portfolio/hole/</loc>
<lastmod>2021-05-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/posts/</loc>
<lastmod>2021-01-21T10:26:19+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/posts/pyautogui-for-simplifying-anki-routine/</loc>
<lastmod>2021-01-21T10:26:19+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/portfolio/ankilan/</loc>
<lastmod>2020-05-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/portfolio/tasquare/</loc>
<lastmod>2020-01-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/tags/game/</loc>
<lastmod>2019-11-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/tags/javascript/</loc>
<lastmod>2019-11-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/portfolio/snake/</loc>
<lastmod>2019-11-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/tags/</loc>
<lastmod>2019-11-01T00:00:00+03:00</lastmod>
</url><url>
<loc>https://god.redeyes.club/home/</loc>
<priority>0</priority>
</url><url>
<loc>https://god.redeyes.club/categories/</loc>
</url><url>
<loc>https://god.redeyes.club/github/</loc>
</url><url>
<loc>https://god.redeyes.club/github/https/github.com/hole-chat/</loc>
</url><url>
<loc>https://god.redeyes.club/site/https/github.com/hole-chat/core/blob/master/readme.md/</loc>
</url><url>
<loc>https://god.redeyes.club/github/https/github.com/horhik/ankilan/</loc>
</url><url>
<loc>https://god.redeyes.club/github/https/github.com/horhik/snake/</loc>
</url><url>
<loc>https://god.redeyes.club/github/https/github.com/horhik/tasquare/</loc>
</url><url>
<loc>https://god.redeyes.club/site/https/snake.horhik.xyz/</loc>
</url><url>
<loc>https://god.redeyes.club/site/https/tasquare.horhik.xyz/</loc>
</url><url>
<loc>https://god.redeyes.club/site/</loc>
</url>
</urlset>

160
public/tags/game/index.html Normal file
View File

@ -0,0 +1,160 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>game</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/tags/game/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/tags/game/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>game</h1>
</div>
<li class="project">
<h2>
<a class="project-name" href="https://god.redeyes.club/portfolio/snake/">Snake game 🐍 </a>
</h2>
<p class="project-description">Snake game written with P5js</p>
<ul class="project-links">
<li class="project-link project-link--github" >
<a href="https://github.com/horhik/snake">
Github
</a>
</li>
<li class="project-link" >
<img class="project-icon" src="">
<a href="https://snake.horhik.xyz/">
Site
</a>
</li>
</ul>
</li>
<div>
1 of 1
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>game on Your redeyes god</title>
<link>https://god.redeyes.club/tags/game/</link>
<description>Recent content in game on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Fri, 01 Nov 2019 00:00:00 +0300</lastBuildDate><atom:link href="https://god.redeyes.club/tags/game/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Snake game 🐍 </title>
<link>https://god.redeyes.club/portfolio/snake/</link>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/snake/</guid>
<description>The simple snake game which working on both desktop 🖥 and mobile 📲</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/tags/game/</title><link rel="canonical" href="https://god.redeyes.club/tags/game/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/tags/game/" /></head></html>

145
public/tags/index.html Normal file
View File

@ -0,0 +1,145 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tags</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/tags/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/tags/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>Tags</h1>
</div>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/tags/game/">game</a>
</div>
<time class="recent-block__time">01.11.2019 00:00</time>
</article>
<article class="recent-block recent-block--right">
<div>
<a class="article__link" href="https://god.redeyes.club/tags/javascript/">javascript</a>
</div>
<time class="recent-block__time">01.11.2019 00:00</time>
</article>
<div>
1 of 1
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

29
public/tags/index.xml Normal file
View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on Your redeyes god</title>
<link>https://god.redeyes.club/tags/</link>
<description>Recent content in Tags on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Fri, 01 Nov 2019 00:00:00 +0300</lastBuildDate><atom:link href="https://god.redeyes.club/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>game</title>
<link>https://god.redeyes.club/tags/game/</link>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/tags/game/</guid>
<description></description>
</item>
<item>
<title>javascript</title>
<link>https://god.redeyes.club/tags/javascript/</link>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/tags/javascript/</guid>
<description></description>
</item>
</channel>
</rss>

View File

@ -0,0 +1,160 @@
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>javascript</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,500;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://god.redeyes.club/css/basic.css">
<link rel="alternate" type="application/rss+xml" href="/tags/javascript/index.xml" title="Your redeyes god">
</head>
<body>
<header class="logo--wrapper">
<a href="/tags/javascript/"><pre class="logo toilet-logo" title="Home">
░█░█░▀█▀░░░░░░░▀█▀░▀░█▄█░░░█▀█░░░█░█░█▀█░█▀▄░█░█░▀█▀░█░█
░█▀█░░█░░░░░░░░░█░░░░█░█░░░█▀█░░░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄
░▀░▀░▀▀▀░▄▀░░░░▀▀▀░░░▀░▀░░░▀░▀░░░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀
</pre></a>
<nav>
<ul class="page-list">
<li class="page-link"><a href="/portfolio/">
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
kek
</a></li>
<li class="page-link"><a href="/posts/">
░█▀▄░█░░░█▀█░█▀▀
░█▀▄░█░░░█░█░█░█
░▀▀░░▀▀▀░▀▀▀░▀▀▀
kek
</a></li>
<li class="page-link"><a href="https://god.redeyes.club/">░█▄█░█▀█░▀█▀░█▀█░▄▀░░▀▄░
░█░█░█▀█░░█░░█░█░█░░░░█░
░▀░▀░▀░▀░▀▀▀░▀░▀░░▀░░▀░░</a></li>
</ul>
</nav>
</header>
<main>
<div>
<h1>javascript</h1>
</div>
<li class="project">
<h2>
<a class="project-name" href="https://god.redeyes.club/portfolio/snake/">Snake game 🐍 </a>
</h2>
<p class="project-description">Snake game written with P5js</p>
<ul class="project-links">
<li class="project-link project-link--github" >
<a href="https://github.com/horhik/snake">
Github
</a>
</li>
<li class="project-link" >
<img class="project-icon" src="">
<a href="https://snake.horhik.xyz/">
Site
</a>
</li>
</ul>
</li>
<div>
1 of 1
</div>
</main>
<aside>
<div class="recent">
<div >
<h2 class="h1 recent-header">LATEST POSTS</h3>
</div>
<div>
<ul class="recent-list">
<li class="recent-block recent-block--right">
<a href="/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a> <br>
<time class="recent-block__time">21.01.2021</time>
</li>
</ul>
</div>
</div>
</aside>
<footer>
<ul class="contacts">
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
<pre>
┏━╸╻╺┳╸╻ ╻╻ ╻┏┓
┃╺┓┃ ┃ ┣━┫┃ ┃┣┻┓
┗━┛╹ ╹ ╹ ╹┗━┛┗━┛</pre></a></li>
<li><a href="https://mastodon.ml/web/accounts/74403" class=" contact-link" title="mastodon: @horhik@mastodon.ml">
<pre>
┏┳┓┏━┓┏━┓╺┳╸┏━┓╺┳┓┏━┓┏┓╻
┃┃┃┣━┫┗━┓ ┃ ┃ ┃ ┃┃┃ ┃┃┗┫
╹ ╹╹ ╹┗━┛ ╹ ┗━┛╺┻┛┗━┛╹ ╹
</pre></a></li>
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
<pre>
┏┳┓┏━┓╻╻
┃┃┃┣━┫┃┃
╹ ╹╹ ╹╹┗━╸</pre></a></li>
</ul>
<p class="copyright">&copy;2021 <a href="https://god.redeyes.club/">Horhik</a></p>
</footer>
</body>
</html>

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>javascript on Your redeyes god</title>
<link>https://god.redeyes.club/tags/javascript/</link>
<description>Recent content in javascript on Your redeyes god</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Fri, 01 Nov 2019 00:00:00 +0300</lastBuildDate><atom:link href="https://god.redeyes.club/tags/javascript/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Snake game 🐍 </title>
<link>https://god.redeyes.club/portfolio/snake/</link>
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
<guid>https://god.redeyes.club/portfolio/snake/</guid>
<description>The simple snake game which working on both desktop 🖥 and mobile 📲</description>
</item>
</channel>
</rss>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/tags/javascript/</title><link rel="canonical" href="https://god.redeyes.club/tags/javascript/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/tags/javascript/" /></head></html>

View File

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://god.redeyes.club/tags/</title><link rel="canonical" href="https://god.redeyes.club/tags/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://god.redeyes.club/tags/" /></head></html>