Skip to content

Commit

Permalink
Update posts and README
Browse files Browse the repository at this point in the history
  • Loading branch information
ctmbl committed Feb 19, 2024
1 parent ff4cda2 commit 1e77599
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Non-exhaustive TODO-list:
- [ ] show posts which `draft` param is `true` in dev mode (if possible)
- [ ] check when building (with builder target) that git submodule is updated


## Features
- renders emojis https://emojibase.dev/shortcodes/?


## Deployment

### Production
Expand Down
2 changes: 1 addition & 1 deletion src/content/posts/short-docker-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Thus, you only have to build the smallest snapshot that run your application for
For a python application, you'll need `python` ofc, maybe some dependencies like `pygame` or `requests` or `discordpy` if you're building a Discord Bot!
Every other things would be useless garbage for your application!!

Factually, to create `docker` images you write a `Dockerfile` ([[3]](#3-dockerfile-example) to get an example ;) ):
Factually, to create `docker` images you write a `Dockerfile` ([[3]](#3-dockerfile-example) to get an example :wink:):
- you base it on a base image (a python image, a debian or ubuntu classically) with the keyword `FROM`.
- then you create the environment you need, maybe run some commands to create folders, install packages? You'll use the `RUN` keyword!
- and finally embed your source code with `COPY` copying the files from the *host* (see the *Note* above) to the images.
Expand Down
6 changes: 3 additions & 3 deletions src/content/posts/useful-daily-linux-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ $ tldr chmod
... (you got it)
```
Now you know every Linux command ;)
Now you know every Linux command :wink:
You'll never (hmm...) read the `man` or google a command again!

> install it on Ubuntu with `sudo apt install tldr`
> /!\ after installation do not forget to `tldr -u` to update it (`tldr tldr` if you forget it :))) )
> /!\ after installation do not forget to `tldr -u` to update it (`tldr tldr` if you forget it :upside_down:)
## beautify your prompt so that you terminal feels like home

Expand Down Expand Up @@ -97,7 +97,7 @@ Of course there are many other commands/tools that you should use:
- `git` and `gh`
- `htop` and `ncdu`
- `gparted`
- `bash` :) (:
- `bash` :upside_down:
- [`complete-alias`](https://github.com/cykerway/complete-alias)
- other prompts
- a good terminal
Expand Down

0 comments on commit 1e77599

Please sign in to comment.