Initial Commit

This commit is contained in:
Quentin Rouland 2025-01-09 15:14:49 +01:00
commit 9fffaebf18
12 changed files with 152 additions and 0 deletions

10
_cobalt.yml Normal file
View File

@ -0,0 +1,10 @@
site:
title: My Dev Blog
description: My Dev Blog
base_url: http://devblog.qrouland.com
posts:
rss: rss.xml
assets:
sass:
style: Nested

10
_defaults/pages.md Normal file
View File

@ -0,0 +1,10 @@
---
layout: default.liquid
---
## Blog!
{% for post in collections.posts.pages %}
#### {{post.title}}
[{{ post.title }}]({{ post.permalink }})
{% endfor %}

10
_defaults/posts.md Normal file
View File

@ -0,0 +1,10 @@
---
layout: default.liquid
title: First Post
is_draft: true
---
# This is our first Post!
Welcome to the first post ever on cobalt.rs!

13
_layouts/default.liquid Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{{ page.title }}</title>
</head>
<body>
<div class="main">
<h1 class="title">{{ page.title }}</p>
<p>{{ page.content }}</p>
</div>
</body>
</html>

0
_sass/base.scss Normal file
View File

16
_site/index.html Normal file
View File

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Index</title>
</head>
<body>
<section class="hero">
<div class="hero-body">
<p class="title">Index</p>
<p class="subtitle"><h2>Blog!</h2>
</p>
</div>
</section>
</body>
</html>

1
_site/rss.xml Normal file
View File

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>My Dev Blog</title><link>http://devblog.qrouland.com</link><description>My Dev Blog</description></channel></rss>

10
index.md Normal file
View File

@ -0,0 +1,10 @@
---
layout: default.liquid
---
## Blog!
{% for post in collections.posts.pages %}
#### {{post.title}}
[{{ post.title }}]({{ post.permalink }})
{% endfor %}

11
posts/cheatsheet-nmap.md Normal file
View File

@ -0,0 +1,11 @@
---
title: Nmap Cheat Sheet
layout: default.liquid
categories: ["Cheat Sheet"]
tags: ["cheats heet", "nmap"]
is_draft: true
---
```bash
nmap -sV
```

51
posts/cheatsheet-tmux.md Normal file
View File

@ -0,0 +1,51 @@
---
title: Tmux Cheat Sheet
layout: default.liquid
categories: ["Cheat Sheet"]
tags: ["cheat sheet", "tmux"]
is_draft: true
---
## Commands
```bash
$ tmux new
$ tmux new -s session_name
$ tmux attach # Default session
$ tmux attach -t session_name
$ tmux switch -t session_name
$ tmux ls # List sessions
$ tmux detach
```
## Panes
```bash
C-b % # vert
C-b " # horiz
C-b hkjl # navigation
C-b HJKL # resize
C-b o # next window
C-b q # show pane numbers
C-b x # close pane
C-b { or } # move windows around
```
## Windows
``` bash
C-b c # New window
C-b 1 # Go to window 1
C-b n # Go to next window
C-b p # Go to previous window
C-b w # List all window
```
## References
* [Tmux official wiki](https://github.com/tmux/tmux/wiki)
* [Devhints](https://devhints.io/tmux)

10
posts/post-1.md Normal file
View File

@ -0,0 +1,10 @@
---
layout: default.liquid
title: First Post
is_draft: true
---
# This is our first Post!
Welcome to the first post ever on cobalt.rs!

10
posts/writeup-box.md Normal file
View File

@ -0,0 +1,10 @@
---
title: Box Write Up
layout: default.liquid
categories: ["Write Up"]
tags: ["write up", "linux"]
is_draft: true
---
# This is our first Post!
Welcome to the first post ever on cobalt.rs!