-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
188 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.hugo_build.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
``` | ||
# check changes | ||
hugo server -D | ||
# deploy changes | ||
hugo -D && git commit -am "up content" && git push | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
+++ | ||
title = '{{ replace .File.ContentBaseName "-" " " | title }}' | ||
date = {{ .Date }} | ||
draft = true | ||
+++ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
+++ | ||
title = 'Crypto introduction' | ||
date = 2024-03-23T16:15:01+01:00 | ||
draft = true | ||
tags = ['crypto'] | ||
+++ | ||
|
||
Such a thing happened and I started a new job in the crypto domain knowing nothing about it. | ||
|
||
Here are a few links which make me more aware of what's happening: | ||
|
||
* [DEX](https://www.coinbase.com/en-gb/learn/crypto-basics/what-is-a-dex) - what is it and what are its advantages compared to centralized exchanges | ||
* [The Open Network Architecture](https://blog.ton.org/the-architecture-behind-the-open-network) - an overview of the TON network architecture and ideas | ||
* [How to build your own blockchain](https://bigishdata.com/2017/10/17/write-your-own-blockchain-part-1-creating-storing-syncing-displaying-mining-and-proving-work/) - a step-by-step guide for building a simple blockchain. Look into [my repo](https://github.com/sild/educhain) to see what happened! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
+++ | ||
title = 'How to build such blog' | ||
date = 2023-12-06T19:32:50+01:00 | ||
draft = false | ||
tags = ['articles'] | ||
+++ | ||
|
||
[Here](https://habr.com/en/articles/778900/) is a short guide on how you can build a page like this yourself using [Hugo](https://gohugo.io/). | ||
|
||
Few snippets for quick onboarding: | ||
|
||
create new post: `hugo new post/my_new_post.md` | ||
|
||
edit that post: `vim /content/post/my_new_post.md` | ||
|
||
run local test server to check your changes: `hugo server -D` | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
printf "\033[0;32mDeploying to Github!..\033[0m\n" | ||
|
||
msg="rebuilding site $(date)" | ||
if [ -n "$*" ]; then | ||
msg="$*" | ||
fi | ||
|
||
echo "" | ||
echo "" | ||
echo "Commit changes to $(pwd)" | ||
hugo -D | ||
|
||
cd public | ||
|
||
echo "" | ||
echo "" | ||
echo "Commit changes to $(pwd)" | ||
git add . | ||
git commit -m "$msg" | ||
git push origin | ||
|
||
cd .. | ||
echo "" | ||
echo "" | ||
echo "Commit changes to $(pwd)" | ||
git add . | ||
git commit -m "$msg" | ||
git push origin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
baseURL = 'https://sild.github.io/' | ||
languageCode = 'en-us' | ||
title = "Sild's blog" | ||
theme = 'hugo-theme-hello-friend-ng' | ||
paginate = 10 | ||
|
||
[params] | ||
dateform = "Jan 2, 2006" | ||
dateformShort = "Jan 2" | ||
dateformNum = "2006-01-02" | ||
dateformNumTime = "2006-01-02 15:04" | ||
|
||
homeSubtitle = "Job and Education" | ||
|
||
# Set disableReadOtherPosts to true in order to hide the links to other posts. | ||
disableReadOtherPosts = false | ||
|
||
# Enable sharing buttons, if you like | ||
enableSharingButtons = true | ||
|
||
# Show a global language switcher in the navigation bar | ||
#enableGlobalLanguageMenu = true | ||
|
||
# Metadata mostly used in document's head | ||
description = "Job and Education" | ||
keywords = "blog,sild" | ||
images = [""] | ||
|
||
[taxonomies] | ||
category = "categories" | ||
tag = "tags" | ||
|
||
[languages] | ||
[languages.en] | ||
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>' | ||
[languages.en.params.logo] | ||
logoText = "Hi" | ||
logoHomeLink = "/" | ||
|
||
[[menu.main]] | ||
identifier = "posts" | ||
name = "Posts" | ||
url = "/posts" | ||
|
||
[[menu.main]] | ||
identifier = "tags" | ||
name = "Tags" | ||
url = "/tags" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,27 @@ | ||
<?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 Sild's blog</title> | ||
<link>https://sild.github.io/posts/</link> | ||
<description>Recent content in Posts on Sild's blog</description> | ||
<generator>Hugo -- gohugo.io</generator> | ||
<language>en</language> | ||
<copyright><a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a></copyright> | ||
<lastBuildDate>Sat, 23 Mar 2024 16:15:01 +0100</lastBuildDate> | ||
<atom:link href="https://sild.github.io/posts/index.xml" rel="self" type="application/rss+xml" /> | ||
|
||
<item> | ||
<title>Crypto introduction</title> | ||
<link>https://sild.github.io/posts/crypto_introduction/</link> | ||
<pubDate>Sat, 23 Mar 2024 16:15:01 +0100</pubDate> | ||
|
||
<guid>https://sild.github.io/posts/crypto_introduction/</guid> | ||
<description>Such a thing happened and I started a new job in the crypto domain knowing nothing about it. | ||
Here are a few links which make me more aware of what&rsquo;s happening: | ||
DEX - what is it and what are its advantages compared to centralized exchanges The Open Network Architecture - an overview of the TON network architecture and ideas How to build your own blockchain - a step-by-step guide for building a simple blockchain.</description> | ||
<content type="html"><![CDATA[<p>Such a thing happened and I started a new job in the crypto domain knowing nothing about it.</p> | ||
<p>Here are a few links which make me more aware of what’s happening:</p> | ||
<ul> | ||
<li><a href="https://www.coinbase.com/en-gb/learn/crypto-basics/what-is-a-dex">DEX</a> - what is it and what are its advantages compared to centralized exchanges</li> | ||
<li><a href="https://blog.ton.org/the-architecture-behind-the-open-network">The Open Network Architecture</a> - an overview of the TON network architecture and ideas</li> | ||
<li><a href="https://bigishdata.com/2017/10/17/write-your-own-blockchain-part-1-creating-storing-syncing-displaying-mining-and-proving-work/">How to build your own blockchain</a> - a step-by-step guide for building a simple blockchain. Look into <a href="https://github.com/sild/educhain">my repo</a> to see what happened!</li> | ||
</ul> | ||
]]></content> | ||
</item> | ||
|
||
<item> | ||
<title>How to build such blog</title> | ||
<link>https://sild.github.io/posts/how_to_build_it/</link> | ||
<pubDate>Wed, 06 Dec 2023 19:32:50 +0100</pubDate> | ||
|
||
<guid>https://sild.github.io/posts/how_to_build_it/</guid> | ||
<description>Here is a short guide on how you can build a page like this yourself using Hugo. | ||
Few snippets for quick onboarding: | ||
create new post: hugo new post/my_new_post.md | ||
edit that post: vim /content/post/my_new_post.md | ||
run local test server to check your changes: hugo server -D</description> | ||
<content type="html"><![CDATA[<p><a href="https://habr.com/en/articles/778900/">Here</a> is a short guide on how you can build a page like this yourself using <a href="https://gohugo.io/">Hugo</a>.</p> | ||
<p>Few snippets for quick onboarding:</p> | ||
<p>create new post: <code>hugo new post/my_new_post.md</code></p> | ||
<p>edit that post: <code>vim /content/post/my_new_post.md</code></p> | ||
<p>run local test server to check your changes: <code>hugo server -D</code></p> | ||
]]></content> | ||
</item> | ||
|
||
</channel> | ||
<channel> | ||
<title>Posts on Sild's blog</title> | ||
<link>https://sild.github.io/posts/</link> | ||
<description>Recent content in Posts on Sild's blog</description> | ||
<generator>Hugo</generator> | ||
<language>en</language> | ||
<copyright><a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a></copyright> | ||
<lastBuildDate>Sat, 23 Mar 2024 16:15:01 +0100</lastBuildDate> | ||
<atom:link href="https://sild.github.io/posts/index.xml" rel="self" type="application/rss+xml" /> | ||
<item> | ||
<title>Crypto introduction</title> | ||
<link>https://sild.github.io/posts/crypto_introduction/</link> | ||
<pubDate>Sat, 23 Mar 2024 16:15:01 +0100</pubDate> | ||
<guid>https://sild.github.io/posts/crypto_introduction/</guid> | ||
<description><p>Such a thing happened and I started a new job in the crypto domain knowing nothing about it.</p>
<p>Here are a few links which make me more aware of what&rsquo;s happening:</p>
<ul>
<li><a href="https://www.coinbase.com/en-gb/learn/crypto-basics/what-is-a-dex">DEX</a> - what is it and what are its advantages compared to centralized exchanges</li>
<li><a href="https://blog.ton.org/the-architecture-behind-the-open-network">The Open Network Architecture</a> - an overview of the TON network architecture and ideas</li>
<li><a href="https://bigishdata.com/2017/10/17/write-your-own-blockchain-part-1-creating-storing-syncing-displaying-mining-and-proving-work/">How to build your own blockchain</a> - a step-by-step guide for building a simple blockchain. Look into <a href="https://github.com/sild/educhain">my repo</a> to see what happened!</li>
</ul></description> | ||
</item> | ||
<item> | ||
<title>How to build such blog</title> | ||
<link>https://sild.github.io/posts/how_to_build_it/</link> | ||
<pubDate>Wed, 06 Dec 2023 19:32:50 +0100</pubDate> | ||
<guid>https://sild.github.io/posts/how_to_build_it/</guid> | ||
<description><p><a href="https://habr.com/en/articles/778900/">Here</a> is a short guide on how you can build a page like this yourself using <a href="https://gohugo.io/">Hugo</a>.</p>
<p>Few snippets for quick onboarding:</p>
<p>create new post: <code>hugo new post/my_new_post.md</code></p>
<p>edit that post: <code>vim /content/post/my_new_post.md</code></p>
<p>run local test server to check your changes: <code>hugo server -D</code></p></description> | ||
</item> | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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>Articles on Sild's blog</title> | ||
<link>https://sild.github.io/tags/articles/</link> | ||
<description>Recent content in Articles on Sild's blog</description> | ||
<generator>Hugo</generator> | ||
<language>en</language> | ||
<copyright><a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a></copyright> | ||
<lastBuildDate>Wed, 06 Dec 2023 19:32:50 +0100</lastBuildDate> | ||
<atom:link href="https://sild.github.io/tags/articles/index.xml" rel="self" type="application/rss+xml" /> | ||
<item> | ||
<title>How to build such blog</title> | ||
<link>https://sild.github.io/posts/how_to_build_it/</link> | ||
<pubDate>Wed, 06 Dec 2023 19:32:50 +0100</pubDate> | ||
<guid>https://sild.github.io/posts/how_to_build_it/</guid> | ||
<description><p><a href="https://habr.com/en/articles/778900/">Here</a> is a short guide on how you can build a page like this yourself using <a href="https://gohugo.io/">Hugo</a>.</p>
<p>Few snippets for quick onboarding:</p>
<p>create new post: <code>hugo new post/my_new_post.md</code></p>
<p>edit that post: <code>vim /content/post/my_new_post.md</code></p>
<p>run local test server to check your changes: <code>hugo server -D</code></p></description> | ||
</item> | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
resources/_gen/assets/scss/scss/main.scss_38b1322b728d0fc31bc0aabb683ebc6d.content
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.