mirror of
https://github.com/Aroy-Art/Aroy-Art-Site.git
synced 2025-04-26 23:27:48 +02:00
Part 1 of Immigration
This commit is contained in:
parent
31c1cf0294
commit
378ea45ba0
17 changed files with 594 additions and 138 deletions
13
content/contact.md
Normal file
13
content/contact.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: Contact 📨️
|
||||
menu: main
|
||||
toc: false
|
||||
authorBox: false
|
||||
breadcrumb: false
|
||||
comments: false
|
||||
share: false
|
||||
contact: true
|
||||
page: true
|
||||
---
|
||||
|
||||
Ingin menyampaikan aspirasi kepada saya, atau ingin menghubungi saya ataupun juga ingin berkenalan/ngobrol bisa saja dengan mengisi form dibawah ini:<br>
|
13
content/post/ANSI-color-codes/content.md
Normal file
13
content/post/ANSI-color-codes/content.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
+++
|
||||
title = "ANSI color codes"
|
||||
subtitle = "The entire table of ANSI color codes."
|
||||
|
||||
date = "2020-12-02"
|
||||
lastmod = "2020-12-16"
|
||||
|
||||
fragment = "content"
|
||||
weight = 100
|
||||
tags = ["ANSI", "color", "codes", "cheat", "sheet"]
|
||||
+++
|
||||
|
||||
<script src="https://gist.github.com/Aroy-Art/c4b79c31720494d7fe97098481fbf029.js"></script>
|
7
content/post/ANSI-color-codes/index.md
Normal file
7
content/post/ANSI-color-codes/index.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
+++
|
||||
title = "ANSI color codes"
|
||||
subtitle = "The entire table of ANSI color codes."
|
||||
|
||||
date = "2021-01-21"
|
||||
tags = ["ANSI", "color", "codes", "cheat", "sheet"]
|
||||
+++
|
10
content/post/_index.md
Normal file
10
content/post/_index.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
+++
|
||||
date = "2020-12-01"
|
||||
lastmod = "2020-12-15"
|
||||
fragment = "list" # declare list fragment
|
||||
weight = 100
|
||||
|
||||
title = "Blog"
|
||||
subtitle = "A list of all blog posts"
|
||||
section = "blog" # section to pull the list of pages
|
||||
+++
|
3
content/post/_index/index.md
Normal file
3
content/post/_index/index.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
+++
|
||||
headless = true
|
||||
+++
|
13
content/post/_index/list.md
Normal file
13
content/post/_index/list.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
+++
|
||||
date = "2020-12-01"
|
||||
fragment = "list" # declare list fragment
|
||||
weight = 150
|
||||
|
||||
#title_align = "left" # Default is center, can be left, right or center
|
||||
|
||||
section = "blog" # section to pull the list of pages
|
||||
tiled = true
|
||||
display_date = true
|
||||
collapsible = false
|
||||
#count = 5
|
||||
+++
|
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
64
content/post/docker-cheat-sheet/content.md
Normal file
64
content/post/docker-cheat-sheet/content.md
Normal file
|
@ -0,0 +1,64 @@
|
|||
+++
|
||||
title = "Docker Cheat Sheet"
|
||||
subtitle = "This is my Docker commands sheat sheet."
|
||||
|
||||
date = "2020-12-02"
|
||||
lastmod = "2020-12-16"
|
||||
|
||||
fragment = "content"
|
||||
weight = 100
|
||||
tags = ["docker", "cheat", "sheet"]
|
||||
+++
|
||||
|
||||

|
||||
|
||||
# A list of docker commands
|
||||
|
||||
---
|
||||
|
||||
### List images
|
||||
|
||||
``` bash
|
||||
docker images [OPTIONS] [REPOSITORY[:TAG]]
|
||||
```
|
||||
|
||||
#### Options
|
||||
|
||||
| Name, shorthand | Default | Description |
|
||||
| :-------------- | :------:| --------------------------------------------------- |
|
||||
| `--all , -a` | | Show all images (default hides intermediate images) |
|
||||
| `--digests` | | Show digests |
|
||||
| `--filter , -f` | | Filter output based on conditions provided |
|
||||
| `--format` | | Pretty-print images using a Go template |
|
||||
| `--no-trunc` | | Don’t truncate output |
|
||||
| `--quiet , -q` | | Only show numeric IDs |
|
||||
|
||||
---
|
||||
|
||||
### Remove one or more containers
|
||||
|
||||
``` bash
|
||||
docker rm [OPTIONS] CONTAINER [CONTAINER...]
|
||||
```
|
||||
|
||||
#### Options
|
||||
|
||||
| Name, shorthand | Default | Description |
|
||||
|:----------------|:-------:| ------------------------------------------------------- |
|
||||
|`--force , -f` | | Force the removal of a running container (uses SIGKILL) |
|
||||
|`--link , -l` | | Remove the specified link |
|
||||
|`--volumes , -v` | | Remove anonymous volumes associated with the container |
|
||||
|
||||
---
|
||||
|
||||
### Stop one or more running containers
|
||||
|
||||
``` Bash
|
||||
docker stop [OPTIONS] CONTAINER [CONTAINER...]
|
||||
```
|
||||
|
||||
#### Options
|
||||
|
||||
| Name, shorthand | Default | Description |
|
||||
|:----------------|:-------:| ------------------------------------------- |
|
||||
|`--time , -t` | 10 | Seconds to wait for stop before killing it. |
|
6
content/post/docker-cheat-sheet/index.md
Normal file
6
content/post/docker-cheat-sheet/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "Docker Cheat Sheet"
|
||||
subtitle = "This is my Docker commands sheat sheet."
|
||||
date = "2020-12-02"
|
||||
tags = ["docker", "cheat", "sheet"]
|
||||
+++
|
11
content/post/hello-world/content.md
Normal file
11
content/post/hello-world/content.md
Normal file
|
@ -0,0 +1,11 @@
|
|||
+++
|
||||
title = "Hello World!"
|
||||
subtitle = "Hello world! This is my first blog post."
|
||||
fragment = "content"
|
||||
weight = 100
|
||||
tags = ["test", "test2"]
|
||||
+++
|
||||
|
||||
Hello world! This is my first blog post.
|
||||
|
||||

|
7
content/post/hello-world/index.md
Normal file
7
content/post/hello-world/index.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
+++
|
||||
title = "Hello World!"
|
||||
subtitle = "Hello world! This is my first blog post."
|
||||
date = "2020-12-01"
|
||||
draft = true
|
||||
tags = ["test", "test2"]
|
||||
+++
|
33
content/post/icon-themes-kde/content.md
Normal file
33
content/post/icon-themes-kde/content.md
Normal file
|
@ -0,0 +1,33 @@
|
|||
+++
|
||||
title = "Themes & Icons in KDE"
|
||||
subtitle = "Where are themes and icons stored in KDE?"
|
||||
fragment = "content"
|
||||
weight = 100
|
||||
date = "2020-12-13"
|
||||
tags = ["kde", "themes", "theme", "icons", "icon", "krita"]
|
||||
+++
|
||||
|
||||
### KDE Global
|
||||
|
||||
Systemwide themes and icons are placed in:
|
||||
|
||||
``` Path
|
||||
/usr/share/plasma/desktoptheme/
|
||||
/usr/share/icons/
|
||||
```
|
||||
|
||||
User spesific themes and icons are placed in:
|
||||
|
||||
``` Path
|
||||
~/.local/share/plasma/desktoptheme/
|
||||
~/.local/share/icons/
|
||||
```
|
||||
|
||||
#### Krita icons and themes
|
||||
|
||||
Icons and themes are storde in:
|
||||
|
||||
``` Path
|
||||
~/.local/share/krita/color-schemes
|
||||
~/.local/share/krita/preset_icons
|
||||
```
|
6
content/post/icon-themes-kde/index.md
Normal file
6
content/post/icon-themes-kde/index.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
+++
|
||||
title = "Themes & Icon in KDE"
|
||||
subtitle = "Where are themes and icons stored in kde?"
|
||||
date = "2020-12-13"
|
||||
tags = ["kde", "themes", "theme", "icons", "icon"]
|
||||
+++
|
|
@ -1,6 +1,71 @@
|
|||
+++
|
||||
fragment = "search"
|
||||
weight = 100
|
||||
title = "Search"
|
||||
background = "light"
|
||||
+++
|
||||
---
|
||||
title: Search 🔍
|
||||
description: Carilah dan tulis sesuatu kata kunci yang sesuai dengan keinginan Anda, dan carilah sampe ketemu!.
|
||||
toc: false
|
||||
authorBox: false
|
||||
breadcrumb: false
|
||||
comments: false
|
||||
share: false
|
||||
search: true
|
||||
page: true
|
||||
---
|
||||
|
||||
<style>
|
||||
.gsc-control-cse,
|
||||
.gsc-result{
|
||||
border: none!important;
|
||||
background-color: transparent!important;
|
||||
}
|
||||
.gsc-result-info,
|
||||
.gsc-orderby-label{
|
||||
color: var(--disabled-text-color)!important;
|
||||
}
|
||||
.gs-title *{
|
||||
color: var(--text-color)!important;
|
||||
font-size: 1.7rem!important;
|
||||
}
|
||||
.gsc-control-cse .gsc-table-result{
|
||||
display: grid;
|
||||
}
|
||||
.gsc-url-top{
|
||||
display: none!important;
|
||||
}
|
||||
.gs-result{
|
||||
padding-bottom: 1rem;
|
||||
border-bottom: 2px solid var(--border-color);
|
||||
}
|
||||
.gs-result .gs-image,
|
||||
.gs-result .gs-promotion-image {
|
||||
vertical-align: middle;
|
||||
border: none;
|
||||
max-width: none;
|
||||
max-height: none;
|
||||
position: initial;
|
||||
display: inline-block;
|
||||
border-radius: 0.3rem;
|
||||
}
|
||||
.gs-result .gs-image:hover,
|
||||
.gs-result .gs-promotion-image:hover{
|
||||
border: none!important;
|
||||
}
|
||||
.gs-webResult:not(.gs-no-results-result):not(.gs-error-result) .gs-snippet, .gs-fileFormatType{
|
||||
color: var(--text-color);
|
||||
font-weight: 400;
|
||||
line-height: 1.7;
|
||||
}
|
||||
.gcsc-more-maybe-branding-root,
|
||||
.gcsc-find-more-on-google,
|
||||
.gcsc-branding-clickable{
|
||||
color: var(--text-color)!important;
|
||||
}
|
||||
.gsc-cursor-page{
|
||||
padding: 1rem;
|
||||
background-color: var(--background-color)!important;
|
||||
border-radius: 0.2em;
|
||||
font-size: 1em;
|
||||
margin: 3rem 0.3rem !important;
|
||||
}
|
||||
.gsc-cursor-box{
|
||||
margin: 3rem 0.3rem !important;
|
||||
}
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue