add emoji
This commit is contained in:
parent
35eef0a37f
commit
5a94b33680
|
@ -7,7 +7,7 @@ body {
|
|||
padding: 0;
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: 'Ubuntu', sans-serif;
|
||||
font-family: 'Ubuntu', 'Twemoji' sans-serif;
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
box-shadow: 0px -30px 20px rgba(0, 0, 0, 0.5);
|
||||
|
@ -33,7 +33,7 @@ a, .link{
|
|||
}
|
||||
|
||||
.h1{
|
||||
font-family: 'Mononoki Bold', 'Fira Code SemiBold' ;
|
||||
font-family: 'Mononoki Bold', 'Fira Code SemiBold', 'Twemoji' ;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,3 +24,9 @@ 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');
|
||||
}
|
||||
|
|
|
@ -32,5 +32,5 @@
|
|||
$ascii-line-height: 1.115em;
|
||||
$ascii-line-height-mobile: 1.112em;
|
||||
$header-color: var(--green);
|
||||
$main-font: 'Mononoki', monospace;
|
||||
$main-font: 'Mononoki', 'Twemoji', monospace;
|
||||
$link-color: var(--cyan);
|
||||
|
|
|
@ -1,16 +1,25 @@
|
|||
|
||||
{{$horhik := "░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█\n░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░\n░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀\n"}}
|
||||
{{$portfolio := "░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█\n░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█\n░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀\n"}}
|
||||
{{$blog := "░█▀▄░█░░░█▀█░█▀▀\n ░█▀▄░█░░░█░█░█░█\n ░▀▀░░▀▀▀░▀▀▀░▀▀▀\n"}}
|
||||
|
||||
{{$horhik := "░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█\n░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░\n░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀"}}
|
||||
{{$portfolio := "░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█\n░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█\n░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀"}}
|
||||
{{$blog := "░█▀▄░█░░░█▀█░█▀▀\n ░█▀▄░█░░░█░█░█░█\n ░▀▀░░▀▀▀░▀▀▀░▀▀▀"}}
|
||||
{{$sec := .FirstSection}}
|
||||
<header class="logo--wrapper">
|
||||
<a href="{{ .Site.BaseURL }}"><pre class="logo toilet-logo" title="Home">{{if eq .Section "portfolio"}}{{$portfolio}}{{else if eq .Section "posts"}}{{$blog}}{{else}}{{$horhik}}{{end}}</pre></a>
|
||||
<a href="{{ .Page.URL }}"><pre class="logo toilet-logo" title="Home">{{if eq .Section "portfolio"}}
|
||||
{{$portfolio}}
|
||||
<span class="logo-quote">O. George’s works</span>
|
||||
{{else if eq .Section "posts"}}
|
||||
{{$blog}}
|
||||
<span class="logo-quote">O. George’s thoughts</span>
|
||||
{{else}}
|
||||
{{$horhik}}
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
{{end}}
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
{{ range .Site.Sections }}
|
||||
<li class="page-link"><a href="{{ .URL | relURL }}">
|
||||
{{ if eq (title .Section) "Portfolio"}}{{$portfolio}}
|
||||
{{ if eq (title .Section) "Portfolio" }}{{$portfolio}}
|
||||
{{ else if eq (title .Section) "Posts"}}{{$blog}}
|
||||
{{end}}
|
||||
</a></li>
|
||||
|
|
|
@ -22,7 +22,6 @@
|
|||
{{ partial "header" . }}
|
||||
<main id="main">
|
||||
<div>
|
||||
<h1 id="title" class="h1 recent-header">{{ .Title }}</h1>
|
||||
{{ range .Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
{{ partial "header" . }}
|
||||
<main id="main">
|
||||
<div>
|
||||
<h1 id="title" class="h1 recent-header">{{ .Title }}</h1>
|
||||
{{ range .Pages }}
|
||||
{{ .Render "summary"}}
|
||||
{{ end }}
|
||||
|
|
|
@ -19,13 +19,48 @@
|
|||
<link rel="alternate" type="application/rss+xml" href="/categories/index.xml" title="Horhik.xyz">
|
||||
</head>
|
||||
<body>
|
||||
<header class="logo--wrapper">
|
||||
<a href="https://site.horhik.xyz/"><pre class="logo toilet-logo">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀</pre></a>
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/categories/"><pre class="logo toilet-logo" title="Home">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
|
@ -54,13 +89,23 @@
|
|||
<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>
|
||||
<a href="/portfolio/hole/">Hole chat 🐰</a> <br>
|
||||
<time class="recent-block__time">01.05.2021</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/posts/second-test-post/">Second Test Post</a> <br>
|
||||
<time class="recent-block__time">03.01.2021</time>
|
||||
<a href="/portfolio/ankilan/">AnkiLan ⭐</a> <br>
|
||||
<time class="recent-block__time">01.05.2020</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/portfolio/tasquare/">Tasquare ☑</a> <br>
|
||||
<time class="recent-block__time">01.01.2020</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/portfolio/snake/">Snake game 🐍 </a> <br>
|
||||
<time class="recent-block__time">01.11.2019</time>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
@ -71,7 +116,7 @@
|
|||
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
|
@ -80,7 +125,7 @@
|
|||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link">
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
|
@ -89,7 +134,7 @@ d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
|||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link">
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
|
@ -101,5 +146,6 @@ dP dP dP `88888P8 dP dP
|
|||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
@charset "UTF-8";
|
||||
/* Dracula theme */
|
||||
/*
|
||||
:root {
|
||||
--background: #282A36 ;
|
||||
--comment: #6272A4 ;
|
||||
|
@ -10,6 +12,21 @@
|
|||
--pink: #FF79C6 ;
|
||||
--purple: #BD93F9 ;
|
||||
--red: #FF5555 ;
|
||||
--yellow: #F1FA8C;
|
||||
}
|
||||
*/
|
||||
/* Gruvbox theme */
|
||||
: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 {
|
||||
|
@ -54,8 +71,12 @@ a, .link {
|
|||
font-family: 'Mononoki Bold', 'Fira Code SemiBold';
|
||||
font-size: 2em; }
|
||||
|
||||
code {
|
||||
font-family: "Mononoki", monospace; }
|
||||
p code, quote code, q code {
|
||||
font-family: "Mononoki", monospace;
|
||||
background: var(--selection);
|
||||
color: var(--cyan);
|
||||
border-radius: 3px;
|
||||
padding: 0 6px; }
|
||||
|
||||
.logo--wrapper {
|
||||
display: grid;
|
||||
|
@ -81,13 +102,14 @@ code {
|
|||
font-size: 0.9em;
|
||||
line-height: 1.115em;
|
||||
margin: 0;
|
||||
font-family: Mononoki, 'Fira Code',monospace, Ubuntu; }
|
||||
font-family: Mononoki, 'Fira Code',monospace, Ubuntu;
|
||||
white-space: pre-line; }
|
||||
|
||||
.page-list {
|
||||
list-style: none;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 300px;
|
||||
width: 400px;
|
||||
margin: 0 auto;
|
||||
font-family: Mononoki;
|
||||
padding: 0; }
|
||||
|
@ -95,8 +117,8 @@ code {
|
|||
.page-link {
|
||||
font-size: 0.4em;
|
||||
line-height: 1.115em;
|
||||
width: 100px;
|
||||
transition: 0.3s; }
|
||||
transition: 0.3s;
|
||||
margin: 0px 10px; }
|
||||
.page-link a {
|
||||
color: var(--green);
|
||||
text-decoration: none;
|
||||
|
@ -104,6 +126,17 @@ code {
|
|||
.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; }
|
||||
.page-list {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
width: auto; }
|
||||
.toilet-logo {
|
||||
font-size: 0.6em; } }
|
||||
|
||||
.recent {
|
||||
margin: 0 auto; }
|
||||
|
||||
|
|
BIN
public/fonts/Twemoji.ttf
Normal file
BIN
public/fonts/Twemoji.ttf
Normal file
Binary file not shown.
113
public/home/index.html
Normal file
113
public/home/index.html
Normal file
|
@ -0,0 +1,113 @@
|
|||
<!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://site.horhik.xyz/css/basic.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/home/"><pre class="logo toilet-logo" title="Home">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</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> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
88' `88 88 88 88' `88 88 88 88' `88
|
||||
88. .88 88 88 88 88 88. .88 88. .88
|
||||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
88 88 88 88 88 88 88 88ooood8 88' `88
|
||||
88 88.88b.88' 88 88 88 88. ... 88
|
||||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
88'`88'`88 88' `88 88 88
|
||||
88 88 88 88. .88 88 88
|
||||
dP dP dP `88888P8 dP dP
|
||||
|
||||
</pre></a></li>
|
||||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -20,13 +20,48 @@
|
|||
<link rel="alternate" type="application/rss+xml" href="/index.xml" title="Horhik.xyz">
|
||||
</head>
|
||||
<body>
|
||||
<header class="logo--wrapper">
|
||||
<a href="https://site.horhik.xyz/"><pre class="logo toilet-logo">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀</pre></a>
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/"><pre class="logo toilet-logo" title="Home">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
|
@ -41,13 +76,23 @@
|
|||
<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>
|
||||
<a href="/portfolio/hole/">Hole chat 🐰</a> <br>
|
||||
<time class="recent-block__time">01.05.2021</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/posts/second-test-post/">Second Test Post</a> <br>
|
||||
<time class="recent-block__time">03.01.2021</time>
|
||||
<a href="/portfolio/ankilan/">AnkiLan ⭐</a> <br>
|
||||
<time class="recent-block__time">01.05.2020</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/portfolio/tasquare/">Tasquare ☑</a> <br>
|
||||
<time class="recent-block__time">01.01.2020</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/portfolio/snake/">Snake game 🐍 </a> <br>
|
||||
<time class="recent-block__time">01.11.2019</time>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
@ -59,7 +104,7 @@
|
|||
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
|
@ -68,7 +113,7 @@
|
|||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link">
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
|
@ -77,7 +122,7 @@ d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
|||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link">
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
|
@ -89,5 +134,6 @@ dP dP dP `88888P8 dP dP
|
|||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -6,7 +6,16 @@
|
|||
<description>Recent content on Horhik.xyz</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Thu, 21 Jan 2021 10:26:19 +0300</lastBuildDate><atom:link href="https://site.horhik.xyz/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Sun, 06 Jun 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://site.horhik.xyz/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Hole chat 🐰</title>
|
||||
<link>https://site.horhik.xyz/portfolio/hole/</link>
|
||||
<pubDate>Sat, 01 May 2021 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/hole/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>PyAutoGUI for simplifying anki routine</title>
|
||||
<link>https://site.horhik.xyz/posts/pyautogui-for-simplifying-anki-routine/</link>
|
||||
|
@ -17,12 +26,39 @@
|
|||
</item>
|
||||
|
||||
<item>
|
||||
<title>Second Test Post</title>
|
||||
<link>https://site.horhik.xyz/posts/second-test-post/</link>
|
||||
<pubDate>Sun, 03 Jan 2021 01:24:34 +0200</pubDate>
|
||||
<title>AnkiLan ⭐</title>
|
||||
<link>https://site.horhik.xyz/portfolio/ankilan/</link>
|
||||
<pubDate>Fri, 01 May 2020 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/posts/second-test-post/</guid>
|
||||
<description>heeeya </description>
|
||||
<guid>https://site.horhik.xyz/portfolio/ankilan/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Tasquare ☑</title>
|
||||
<link>https://site.horhik.xyz/portfolio/tasquare/</link>
|
||||
<pubDate>Wed, 01 Jan 2020 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/tasquare/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Snake game 🐍 </title>
|
||||
<link>https://site.horhik.xyz/portfolio/snake/</link>
|
||||
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/snake/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title></title>
|
||||
<link>https://site.horhik.xyz/home/</link>
|
||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/home/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
|
|
113
public/portfolio/ankilan/index.html
Normal file
113
public/portfolio/ankilan/index.html
Normal file
|
@ -0,0 +1,113 @@
|
|||
<!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://site.horhik.xyz/css/basic.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/portfolio/ankilan/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s works</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</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> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
88' `88 88 88 88' `88 88 88 88' `88
|
||||
88. .88 88 88 88 88 88. .88 88. .88
|
||||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
88 88 88 88 88 88 88 88ooood8 88' `88
|
||||
88 88.88b.88' 88 88 88 88. ... 88
|
||||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
88'`88'`88 88' `88 88 88
|
||||
88 88 88 88. .88 88 88
|
||||
dP dP dP `88888P8 dP dP
|
||||
|
||||
</pre></a></li>
|
||||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
113
public/portfolio/hole/index.html
Normal file
113
public/portfolio/hole/index.html
Normal file
|
@ -0,0 +1,113 @@
|
|||
<!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://site.horhik.xyz/css/basic.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/portfolio/hole/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s works</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</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> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
88' `88 88 88 88' `88 88 88 88' `88
|
||||
88. .88 88 88 88 88 88. .88 88. .88
|
||||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
88 88 88 88 88 88 88 88ooood8 88' `88
|
||||
88 88.88b.88' 88 88 88 88. ... 88
|
||||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
88'`88'`88 88' `88 88 88
|
||||
88 88 88 88. .88 88 88
|
||||
dP dP dP `88888P8 dP dP
|
||||
|
||||
</pre></a></li>
|
||||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
137
public/portfolio/index.html
Normal file
137
public/portfolio/index.html
Normal file
|
@ -0,0 +1,137 @@
|
|||
<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'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://site.horhik.xyz/css/basic.css">
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" href="/portfolio/index.xml" title="Horhik.xyz">
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/portfolio/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s works</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main id="main">
|
||||
<div>
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<div>
|
||||
<a class="article__link" href="https://site.horhik.xyz/portfolio/hole/">Hole chat 🐰</a>
|
||||
</div>
|
||||
<time class="recent-block__time">01.05.2021 00:00</time>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<div>
|
||||
<a class="article__link" href="https://site.horhik.xyz/portfolio/ankilan/">AnkiLan ⭐</a>
|
||||
</div>
|
||||
<time class="recent-block__time">01.05.2020 00:00</time>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<div>
|
||||
<a class="article__link" href="https://site.horhik.xyz/portfolio/tasquare/">Tasquare ☑</a>
|
||||
</div>
|
||||
<time class="recent-block__time">01.01.2020 00:00</time>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<div>
|
||||
<a class="article__link" href="https://site.horhik.xyz/portfolio/snake/">Snake game 🐍 </a>
|
||||
</div>
|
||||
<time class="recent-block__time">01.11.2019 00:00</time>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
88' `88 88 88 88' `88 88 88 88' `88
|
||||
88. .88 88 88 88 88 88. .88 88. .88
|
||||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
88 88 88 88 88 88 88 88ooood8 88' `88
|
||||
88 88.88b.88' 88 88 88 88. ... 88
|
||||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
88'`88'`88 88' `88 88 88
|
||||
88 88 88 88. .88 88 88
|
||||
dP dP dP `88888P8 dP dP
|
||||
|
||||
</pre></a></li>
|
||||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
47
public/portfolio/index.xml
Normal file
47
public/portfolio/index.xml
Normal 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's portfolio on Horhik.xyz</title>
|
||||
<link>https://site.horhik.xyz/portfolio/</link>
|
||||
<description>Recent content in O. George's portfolio on Horhik.xyz</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sun, 06 Jun 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://site.horhik.xyz/portfolio/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Hole chat 🐰</title>
|
||||
<link>https://site.horhik.xyz/portfolio/hole/</link>
|
||||
<pubDate>Sat, 01 May 2021 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/hole/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>AnkiLan ⭐</title>
|
||||
<link>https://site.horhik.xyz/portfolio/ankilan/</link>
|
||||
<pubDate>Fri, 01 May 2020 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/ankilan/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Tasquare ☑</title>
|
||||
<link>https://site.horhik.xyz/portfolio/tasquare/</link>
|
||||
<pubDate>Wed, 01 Jan 2020 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/tasquare/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Snake game 🐍 </title>
|
||||
<link>https://site.horhik.xyz/portfolio/snake/</link>
|
||||
<pubDate>Fri, 01 Nov 2019 00:00:00 +0300</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/portfolio/snake/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
113
public/portfolio/snake/index.html
Normal file
113
public/portfolio/snake/index.html
Normal file
|
@ -0,0 +1,113 @@
|
|||
<!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://site.horhik.xyz/css/basic.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/portfolio/snake/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s works</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</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>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</article>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
88' `88 88 88 88' `88 88 88 88' `88
|
||||
88. .88 88 88 88 88 88. .88 88. .88
|
||||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
88 88 88 88 88 88 88 88ooood8 88' `88
|
||||
88 88.88b.88' 88 88 88 88. ... 88
|
||||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
88'`88'`88 88' `88 88 88
|
||||
88 88 88 88. .88 88 88
|
||||
dP dP dP `88888P8 dP dP
|
||||
|
||||
</pre></a></li>
|
||||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
113
public/portfolio/tasquare/index.html
Normal file
113
public/portfolio/tasquare/index.html
Normal file
|
@ -0,0 +1,113 @@
|
|||
<!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://site.horhik.xyz/css/basic.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/portfolio/tasquare/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s works</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</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> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
88' `88 88 88 88' `88 88 88 88' `88
|
||||
88. .88 88 88 88 88 88. .88 88. .88
|
||||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
88 88 88 88 88 88 88 88ooood8 88' `88
|
||||
88 88.88b.88' 88 88 88 88. ... 88
|
||||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
88'`88'`88 88' `88 88 88
|
||||
88 88 88 88. .88 88 88
|
||||
dP dP dP `88888P8 dP dP
|
||||
|
||||
</pre></a></li>
|
||||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,15 +1,10 @@
|
|||
<!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>Posts</title>
|
||||
<title>Blog</title>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com">
|
||||
|
@ -18,27 +13,54 @@
|
|||
|
||||
<link rel="alternate" type="application/rss+xml" href="/posts/index.xml" title="Horhik.xyz">
|
||||
</head>
|
||||
<body>
|
||||
<header class="logo--wrapper">
|
||||
<a href="https://site.horhik.xyz/"><pre class="logo toilet-logo">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/posts/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s thoughts</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀</pre></a>
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<main>
|
||||
|
||||
<div>
|
||||
<h1>Posts</h1>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<main id="main">
|
||||
<div>
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<div>
|
||||
<a class="article__link" href="https://site.horhik.xyz/posts/pyautogui-for-simplifying-anki-routine/">PyAutoGUI for simplifying anki routine</a>
|
||||
</div>
|
||||
|
@ -46,50 +68,12 @@
|
|||
|
||||
</article>
|
||||
|
||||
|
||||
<article class="recent-block recent-block--right">
|
||||
<div>
|
||||
<a class="article__link" href="https://site.horhik.xyz/posts/second-test-post/">Second Test Post</a>
|
||||
</div>
|
||||
<time class="recent-block__time">03.01.2021 01:24</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>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/posts/second-test-post/">Second Test Post</a> <br>
|
||||
<time class="recent-block__time">03.01.2021</time>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
|
||||
<footer>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
|
@ -98,7 +82,7 @@
|
|||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link">
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
|
@ -107,7 +91,7 @@ d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
|||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link">
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
|
@ -119,5 +103,4 @@ dP dP dP `88888P8 dP dP
|
|||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<?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 Horhik.xyz</title>
|
||||
<title>Blog on Horhik.xyz</title>
|
||||
<link>https://site.horhik.xyz/posts/</link>
|
||||
<description>Recent content in Posts on Horhik.xyz</description>
|
||||
<description>Recent content in Blog on Horhik.xyz</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Thu, 21 Jan 2021 10:26:19 +0300</lastBuildDate><atom:link href="https://site.horhik.xyz/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<lastBuildDate>Sun, 06 Jun 2021 00:00:00 +0000</lastBuildDate><atom:link href="https://site.horhik.xyz/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>PyAutoGUI for simplifying anki routine</title>
|
||||
<link>https://site.horhik.xyz/posts/pyautogui-for-simplifying-anki-routine/</link>
|
||||
|
@ -16,14 +16,5 @@
|
|||
<description>I had been adding some cards to Anki. It was lowercase word and word with stress in russian.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Second Test Post</title>
|
||||
<link>https://site.horhik.xyz/posts/second-test-post/</link>
|
||||
<pubDate>Sun, 03 Jan 2021 01:24:34 +0200</pubDate>
|
||||
|
||||
<guid>https://site.horhik.xyz/posts/second-test-post/</guid>
|
||||
<description>heeeya </description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
|
|
|
@ -19,13 +19,48 @@
|
|||
|
||||
</head>
|
||||
<body>
|
||||
<header class="logo--wrapper">
|
||||
<a href="https://site.horhik.xyz/"><pre class="logo toilet-logo">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀</pre></a>
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/posts/pyautogui-for-simplifying-anki-routine/"><pre class="logo toilet-logo" title="Home">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s thoughts</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
|
@ -38,28 +73,28 @@
|
|||
It was lowercase word and word with stress in russian. like <em>торты тОрты.</em></p>
|
||||
<p>I’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:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2">
|
||||
<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 style="color:#f8f8f2;background-color:#282a36;-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
|
||||
<pre 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 style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2"><code class="language-python" data-lang="python"><span style="color:#ff79c6">import</span> os
|
||||
f <span style="color:#ff79c6">=</span> <span style="color:#8be9fd;font-style:italic">open</span>(<span style="color:#f1fa8c">"/home/horhik/text.txt"</span>, <span style="color:#f1fa8c">'r+'</span>)
|
||||
lines <span style="color:#ff79c6">=</span> f<span style="color:#ff79c6">.</span>readlines()
|
||||
<span style="color:#ff79c6">for</span> ind, line <span style="color:#ff79c6">in</span> <span style="color:#8be9fd;font-style:italic">enumerate</span>(lines):
|
||||
<span style="color:#ff79c6">print</span>(line<span style="color:#ff79c6">.</span>lower(), <span style="color:#f1fa8c">" "</span>, line)
|
||||
<pre 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">"/home/horhik/text.txt"</span>, <span style="color:#0086d2">'r+'</span>)
|
||||
lines = f.readlines()
|
||||
<span style="color:#fb660a;font-weight:bold">for</span> ind, line in enumerate(lines):
|
||||
<span style="color:#fb660a;font-weight:bold">print</span>(line.lower(), <span style="color:#0086d2">" "</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> “add card” 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:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2">
|
||||
<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 style="color:#f8f8f2;background-color:#282a36;-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
|
||||
<pre 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
|
||||
|
@ -80,25 +115,25 @@ I split my window by <strong>Anki</strong> “add card” window and <st
|
|||
</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 style="color:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2"><code class="language-python" data-lang="python"><span style="color:#ff79c6">import</span> pyautogui
|
||||
<pre 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:#ff79c6">import</span> os
|
||||
<span style="color:#ff79c6">while</span>(True):
|
||||
pyautogui<span style="color:#ff79c6">.</span>hotkey(<span style="color:#f1fa8c">"winleft"</span>, <span style="color:#f1fa8c">'j'</span>) <span style="color:#6272a4"># toggle window</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press([<span style="color:#f1fa8c">"v"</span>, <span style="color:#f1fa8c">"$"</span>, <span style="color:#f1fa8c">"y"</span>]) <span style="color:#6272a4"># copy string</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>hotkey(<span style="color:#f1fa8c">"winleft"</span>, <span style="color:#f1fa8c">'j'</span>) <span style="color:#6272a4"># toggle window</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>hotkey(<span style="color:#f1fa8c">"ctrl"</span>, <span style="color:#f1fa8c">'v'</span>) <span style="color:#6272a4"># past text</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press(<span style="color:#f1fa8c">"tab"</span>) <span style="color:#6272a4"># next input field</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>hotkey(<span style="color:#f1fa8c">"winleft"</span>, <span style="color:#f1fa8c">'j'</span>) <span style="color:#6272a4"># toggle window</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press([<span style="color:#f1fa8c">"j"</span>,<span style="color:#f1fa8c">"0"</span>, <span style="color:#f1fa8c">"w"</span>, <span style="color:#f1fa8c">"v"</span> , <span style="color:#f1fa8c">"$"</span>, <span style="color:#f1fa8c">"y"</span>, <span style="color:#f1fa8c">"0"</span>, <span style="color:#f1fa8c">"j"</span>, <span style="color:#f1fa8c">"j"</span> ])
|
||||
<span style="color:#6272a4"># move to next line beginning, copy it and go to next occurence</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>hotkey(<span style="color:#f1fa8c">"winleft"</span>, <span style="color:#f1fa8c">'j'</span>) <span style="color:#6272a4"># toggle window</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>hotkey(<span style="color:#f1fa8c">"ctrl"</span>, <span style="color:#f1fa8c">'v'</span>) <span style="color:#6272a4"># paste text</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press(<span style="color:#f1fa8c">"tab"</span>) <span style="color:#6272a4"># ...</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press(<span style="color:#f1fa8c">"tab"</span>) <span style="color:#6272a4"># ...</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press(<span style="color:#f1fa8c">"tab"</span>) <span style="color:#6272a4"># ...</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press(<span style="color:#f1fa8c">"tab"</span>) <span style="color:#6272a4"># ... way to submit button</span>
|
||||
pyautogui<span style="color:#ff79c6">.</span>press(<span style="color:#f1fa8c">"space"</span>) <span style="color:#6272a4"># pressing submit button</span>
|
||||
<span style="color:#fb660a;font-weight:bold">import</span> os
|
||||
<span style="color:#fb660a;font-weight:bold">while</span>(True):
|
||||
pyautogui.hotkey(<span style="color:#0086d2">"winleft"</span>, <span style="color:#0086d2">'j'</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
|
||||
pyautogui.press([<span style="color:#0086d2">"v"</span>, <span style="color:#0086d2">"$"</span>, <span style="color:#0086d2">"y"</span>]) <span style="color:#080;background-color:#0f140f;font-style:italic"># copy string</span>
|
||||
pyautogui.hotkey(<span style="color:#0086d2">"winleft"</span>, <span style="color:#0086d2">'j'</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
|
||||
pyautogui.hotkey(<span style="color:#0086d2">"ctrl"</span>, <span style="color:#0086d2">'v'</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># past text</span>
|
||||
pyautogui.press(<span style="color:#0086d2">"tab"</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># next input field</span>
|
||||
pyautogui.hotkey(<span style="color:#0086d2">"winleft"</span>, <span style="color:#0086d2">'j'</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
|
||||
pyautogui.press([<span style="color:#0086d2">"j"</span>,<span style="color:#0086d2">"0"</span>, <span style="color:#0086d2">"w"</span>, <span style="color:#0086d2">"v"</span> , <span style="color:#0086d2">"$"</span>, <span style="color:#0086d2">"y"</span>, <span style="color:#0086d2">"0"</span>, <span style="color:#0086d2">"j"</span>, <span style="color:#0086d2">"j"</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">"winleft"</span>, <span style="color:#0086d2">'j'</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># toggle window</span>
|
||||
pyautogui.hotkey(<span style="color:#0086d2">"ctrl"</span>, <span style="color:#0086d2">'v'</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># paste text</span>
|
||||
pyautogui.press(<span style="color:#0086d2">"tab"</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ...</span>
|
||||
pyautogui.press(<span style="color:#0086d2">"tab"</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ...</span>
|
||||
pyautogui.press(<span style="color:#0086d2">"tab"</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ...</span>
|
||||
pyautogui.press(<span style="color:#0086d2">"tab"</span>) <span style="color:#080;background-color:#0f140f;font-style:italic"># ... way to submit button</span>
|
||||
pyautogui.press(<span style="color:#0086d2">"space"</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>
|
||||
|
@ -113,7 +148,7 @@ Some strange things happen before I cached terminal and pressed <code>Ctrl+C</co
|
|||
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
|
@ -122,7 +157,7 @@ Some strange things happen before I cached terminal and pressed <code>Ctrl+C</co
|
|||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link">
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
|
@ -131,7 +166,7 @@ d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
|||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link">
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
|
@ -143,5 +178,6 @@ dP dP dP `88888P8 dP dP
|
|||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -2,17 +2,32 @@
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>https://site.horhik.xyz/</loc>
|
||||
<lastmod>2021-01-21T10:26:19+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/posts/</loc>
|
||||
<lastmod>2021-01-21T10:26:19+03:00</lastmod>
|
||||
<lastmod>2021-06-06T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/</loc>
|
||||
<lastmod>2021-06-06T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/portfolio/</loc>
|
||||
<lastmod>2021-06-06T00:00:00+00:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/portfolio/hole/</loc>
|
||||
<lastmod>2021-05-01T00:00:00+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/posts/pyautogui-for-simplifying-anki-routine/</loc>
|
||||
<lastmod>2021-01-21T10:26:19+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/posts/second-test-post/</loc>
|
||||
<lastmod>2021-01-03T01:24:34+02:00</lastmod>
|
||||
<loc>https://site.horhik.xyz/portfolio/ankilan/</loc>
|
||||
<lastmod>2020-05-01T00:00:00+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/portfolio/tasquare/</loc>
|
||||
<lastmod>2020-01-01T00:00:00+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/portfolio/snake/</loc>
|
||||
<lastmod>2019-11-01T00:00:00+03:00</lastmod>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/home/</loc>
|
||||
<priority>0</priority>
|
||||
</url><url>
|
||||
<loc>https://site.horhik.xyz/categories/</loc>
|
||||
</url><url>
|
||||
|
|
|
@ -19,13 +19,48 @@
|
|||
<link rel="alternate" type="application/rss+xml" href="/tags/index.xml" title="Horhik.xyz">
|
||||
</head>
|
||||
<body>
|
||||
<header class="logo--wrapper">
|
||||
<a href="https://site.horhik.xyz/"><pre class="logo toilet-logo">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀</pre></a>
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<header class="logo--wrapper">
|
||||
<a href="/tags/"><pre class="logo toilet-logo" title="Home">
|
||||
░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
|
||||
<span class="logo-quote">O. George’s site</span>
|
||||
|
||||
</pre></a>
|
||||
<nav>
|
||||
<ul class="page-list">
|
||||
|
||||
<li class="page-link"><a href="/posts/">
|
||||
░█▀▄░█░░░█▀█░█▀▀
|
||||
░█▀▄░█░░░█░█░█░█
|
||||
░▀▀░░▀▀▀░▀▀▀░▀▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
<li class="page-link"><a href="/portfolio/">
|
||||
░█▀█░█▀█░█▀▄░▀█▀░█▀▀░█▀█░█░░░▀█▀░█▀█
|
||||
░█▀▀░█░█░█▀▄░░█░░█▀▀░█░█░█░░░░█░░█░█
|
||||
░▀░░░▀▀▀░▀░▀░░▀░░▀░░░▀▀▀░▀▀▀░▀▀▀░▀▀
|
||||
|
||||
|
||||
</a></li>
|
||||
|
||||
|
||||
<li class="page-link"><a href="https://site.horhik.xyz/">░█░█░█▀█░█▀▄░█░█░▀█▀░█░█░░░░█░█░█░█░▀▀█
|
||||
░█▀█░█░█░█▀▄░█▀█░░█░░█▀▄░░░░▄▀▄░░█░░▄▀░
|
||||
░▀░▀░▀▀▀░▀░▀░▀░▀░▀▀▀░▀░▀░▀░░▀░▀░░▀░░▀▀▀
|
||||
</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
|
@ -54,13 +89,23 @@
|
|||
<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>
|
||||
<a href="/portfolio/hole/">Hole chat 🐰</a> <br>
|
||||
<time class="recent-block__time">01.05.2021</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/posts/second-test-post/">Second Test Post</a> <br>
|
||||
<time class="recent-block__time">03.01.2021</time>
|
||||
<a href="/portfolio/ankilan/">AnkiLan ⭐</a> <br>
|
||||
<time class="recent-block__time">01.05.2020</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/portfolio/tasquare/">Tasquare ☑</a> <br>
|
||||
<time class="recent-block__time">01.01.2020</time>
|
||||
</li>
|
||||
|
||||
<li class="recent-block recent-block--right">
|
||||
<a href="/portfolio/snake/">Snake game 🐍 </a> <br>
|
||||
<time class="recent-block__time">01.11.2019</time>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
@ -71,7 +116,7 @@
|
|||
|
||||
<footer>
|
||||
<ul class="contacts">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link">
|
||||
<li><a href="https://github.com/horhik" class=" contact-link" title="github">
|
||||
<pre> oo dP dP dP
|
||||
88 88 88
|
||||
.d8888b. dP d8888P 88d888b. dP dP 88d888b.
|
||||
|
@ -80,7 +125,7 @@
|
|||
`8888P88 dP dP dP dP `88888P' 88Y8888'
|
||||
.88
|
||||
d8888P </pre></a></li>
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link">
|
||||
<li><a href="https://twitter.com/HORHl" class=" contact-link" title="twitter">
|
||||
<pre> dP oo dP dP
|
||||
88 88 88
|
||||
d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
||||
|
@ -89,7 +134,7 @@ d8888P dP dP dP dP d8888P d8888P .d8888b. 88d888b.
|
|||
dP 8888P Y8P dP dP dP `88888P' dP
|
||||
|
||||
</pre></a></li>
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link">
|
||||
<li><a href="mailto:horhik@tuta.io" class=" contact-link" title="Mail">
|
||||
<pre> oo dP
|
||||
88
|
||||
88d8b.d8b. .d8888b. dP 88
|
||||
|
@ -101,5 +146,6 @@ dP dP dP `88888P8 dP dP
|
|||
</ul>
|
||||
<p class="copyright">©2021 <a href="https://site.horhik.xyz/">Horhik.xyz</a></p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -44,12 +44,16 @@
|
|||
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: 'Ubuntu', sans-serif;
|
||||
font-family: 'Ubuntu', 'Twemoji' sans-serif;
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
box-shadow: 0px -30px 20px rgba(0, 0, 0, 0.5);
|
||||
|
@ -68,11 +72,11 @@ a, .link {
|
|||
box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.34); }
|
||||
|
||||
.h1 {
|
||||
font-family: 'Mononoki Bold', 'Fira Code SemiBold';
|
||||
font-family: 'Mononoki Bold', 'Fira Code SemiBold', 'Twemoji';
|
||||
font-size: 2em; }
|
||||
|
||||
p code, quote code, q code {
|
||||
font-family: "Mononoki", monospace;
|
||||
font-family: "Mononoki", "Twemoji", monospace;
|
||||
background: var(--selection);
|
||||
color: var(--cyan);
|
||||
border-radius: 3px;
|
||||
|
@ -216,7 +220,7 @@ p code, quote code, q code {
|
|||
display: block; }
|
||||
|
||||
.copyright {
|
||||
font-family: "Mononoki", monospace;
|
||||
font-family: "Mononoki", "Twemoji", monospace;
|
||||
margin-left: 20px; }
|
||||
|
||||
.portfolio {
|
||||
|
@ -235,7 +239,7 @@ p code, quote code, q code {
|
|||
box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.34);
|
||||
border-radius: 10px;
|
||||
background: var(--background);
|
||||
font-family: "Mononoki", monospace;
|
||||
font-family: "Mononoki", "Twemoji", monospace;
|
||||
text-align: center;
|
||||
margin: 20px 0;
|
||||
max-width: 70vw;
|
||||
|
@ -328,7 +332,7 @@ p code, quote code, q code {
|
|||
|
||||
.blog-header {
|
||||
color: var(--green);
|
||||
font-family: "Mononoki", monospace;
|
||||
font-family: "Mononoki", "Twemoji", monospace;
|
||||
font-size: 2em;
|
||||
display: inline-flex;
|
||||
justify-content: center;
|
||||
|
@ -340,7 +344,7 @@ p code, quote code, q code {
|
|||
font-size: 22px;
|
||||
font-family: Ubuntu; }
|
||||
.blog-post time {
|
||||
font-family: "Mononoki", monospace;
|
||||
font-family: "Mononoki", "Twemoji", monospace;
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
|
|
Loading…
Reference in a new issue