mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-24 20:34:25 +00:00
chore: improved placeholder articles
This commit is contained in:
@@ -51,6 +51,7 @@
|
||||
| ISP | Internet Service Provider | |
|
||||
| JDK | Java Development Kit | |
|
||||
| JRE | Java Runtime Engine | |
|
||||
| KISS | Keep It Simple Stupid | |
|
||||
| LAN | Local Area Network | |
|
||||
| LED | Light Emitting Diode | |
|
||||
| LIFO | Last In First Out | |
|
||||
@@ -59,6 +60,9 @@
|
||||
| ROM | Read-Only Memory | |
|
||||
| RPM | Revolutions Per Minute | |
|
||||
| RPM | RPM Package Manager | Package management system used by Linux distributions like Red Hat, (open)SuSE and Fedora |
|
||||
| SAFE | Scaled Agile FramEwork | |
|
||||
| SOPS | Secrets OPerationS | |
|
||||
| SPIFFE | Secure Production Identity Framework for Everyone | |
|
||||
| SQL | Structured Query Language | |
|
||||
| TCP | Transport Control Protocol | |
|
||||
| UDP | User Datagram Protocol | |
|
||||
@@ -71,13 +75,16 @@
|
||||
| WLAN | Wireless Local Area Network | |
|
||||
| XML | eXtensible Markup Language | |
|
||||
| XSS | Cross-Site Scripting | |
|
||||
| YAGNI | You Ain't Gonna Need It | |
|
||||
|
||||
## Sources
|
||||
|
||||
- [CN (canonicalName vs CommonName) In Active Directory Explained]
|
||||
- [KISS principle is not that simple]
|
||||
|
||||
<!--
|
||||
References
|
||||
-->
|
||||
|
||||
[cn (canonicalname vs commonname) in active directory explained]: https://www.itechguides.com/what-is-cn-in-active-directory/
|
||||
[kiss principle is not that simple]: https://artero.dev/posts/kiss-principle-is-not-that-simple/
|
||||
|
||||
5
knowledge base/devops.placeholder
Normal file
5
knowledge base/devops.placeholder
Normal file
@@ -0,0 +1,5 @@
|
||||
# DevOps
|
||||
|
||||
https://www.youtube.com/watch?v=KJ5u_Kui1sU
|
||||
https://artero.dev/posts/scripts-do-not-scale/
|
||||
https://artero.dev/posts/are-you-a-devops-engineer/
|
||||
1
knowledge base/dotfiles.placeholder
Normal file
1
knowledge base/dotfiles.placeholder
Normal file
@@ -0,0 +1 @@
|
||||
# Dotfiles
|
||||
@@ -1,6 +1,7 @@
|
||||
# Ruby
|
||||
|
||||
```sh
|
||||
brew install 'ruby'
|
||||
```
|
||||
```sh
|
||||
|
||||
SSL_CERT_FILE='path/to/ssl.cert'
|
||||
```
|
||||
|
||||
@@ -1,2 +1,4 @@
|
||||
# Scaled Agile FramEwork
|
||||
|
||||
https://freedium.cfd/
|
||||
https://medium.com/agileinsider/the-illusion-of-safe-unmasking-the-flaws-of-scaled-agile-5b0df6ef77e3
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
# SPIFFE
|
||||
|
||||
https://spiffe.io/
|
||||
|
||||
@@ -1,3 +1,31 @@
|
||||
# Tmux
|
||||
|
||||
| Key combination | Effect |
|
||||
| --------------------------- | -------------------------------------------- |
|
||||
| `ctrl + b` | actuate |
|
||||
| `ctrl + b`, then `c` | create a new window |
|
||||
| `ctrl + b`, then `d` | detach from the current session |
|
||||
| `ctrl + b`, then `n` | pass to the next window |
|
||||
| `ctrl + b`, then `p` | pass to the previous window |
|
||||
| `ctrl + b`, then `0` to `9` | pass to the window identified by that number |
|
||||
|
||||
`tmux new -s named-session` to create a new session named `named-session`
|
||||
`ctrl + b`, then `d` to detach
|
||||
`tmux list-session` to list the active sessions
|
||||
`tmux attach` to attach to the last session
|
||||
`tmux attach -t named-session` to attach to the session named `named-session`
|
||||
|
||||
.tmux.conf
|
||||
```conf
|
||||
set -g default-terminal "screen-256color" # set the default terminal mode to 256 colors
|
||||
set -g history-limit 100000 # set the scrollback size
|
||||
set -g mouse on # enable mouse control (clickable windows, panes, resizable panes)
|
||||
set -g xterm-keys on # pass xterm keys through
|
||||
|
||||
setw -g automatic-rename on # rename the window to reflect the current program
|
||||
set -g renumber-windows on # renumber all windows when a window is closed
|
||||
```
|
||||
|
||||
https://github.com/tmux/tmux/wiki/
|
||||
|
||||
```sh
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# Trufflehog
|
||||
|
||||
https://github.com/trufflesecurity/trufflehog
|
||||
|
||||
alternatives: detect-secrets, gitleaks, ripsecrets
|
||||
|
||||
Reference in New Issue
Block a user