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
#!/bin/bash | |
read -rsn1; clear; echo -e "\nHello all! Let's talk about Vault today\n"; | |
read -rsn1; clear; echo -e "\n\n | |
- Vault solves many problems. But lets talk secret sprawl today | |
- Secrets are spread everywhere (code, config, VCS) | |
- Its hard to reason about who had accessed what | |
- Which secrets were actually used? | |
- If the infrastructure is compromised, it gets difficult to guage the attack surface which makes it even more harder to execute any break glass procedures. |
sed -E -f solver.sed input
where input
is a file containing the maze.
For best results, resize your terminal to match the height of the maze. To disable animations, delete the lines containing p
.
The solver assumes the following:
- The maze only contains the characters
# \nSE
- Every line has the same number of characters
- There is only one start (
S
) and end (E
)
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
@import "minima"; | |
/* Global styling */ | |
$heading-font-family: "Courier New", Courier, monospace !default; | |
@for $i from 1 through 6 { | |
h#{$i} { | |
font-family: $heading-font-family; | |
} | |
} |
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 is part of my tinytinyRSSinstallation | |
# It is used by systemd under Debian Jessie | |
# WorkingDirectory=/var/www/html/ttrss must be YOUR Installationpath without | |
# ending slash / | |
# | |
# vim /lib/systemd/system/ttrss-update.service | |
# systemctl enable ttrss-update.service | |
# systemctl --system daemon-reload | |
# systemctl start ttrss-update.service | |
# systemctl status ttrss-update.service |
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
. | |
├── assets | |
│ ├── images | |
│ ├── sass/less/stylus/css | |
├── lib | |
│ ├── actions | |
│ ├── components | |
│ │ ├── __tests__ | |
│ │ │ └── Avatar.test.jsx | |
│ │ └── Avatar.jsx |
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
. | |
├── actions | |
├── stores | |
├── views | |
│ ├── Anonymous | |
│ │ ├── __tests__ | |
│ │ ├── views | |
│ │ │ ├── Home | |
│ │ │ │ ├── __tests__ | |
│ │ │ │ └── Handler.js |
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
package proxy | |
import ( | |
"io" | |
"log" | |
"net" | |
) | |
func Proxy(srvConn, cliConn *net.TCPConn) { | |
// channels to wait on the close event for each connection |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
NewerOlder