-
Selektive Wahrnehmung: Wenn unser Gehirn Informationen filtert
-
🔉 #0080 - Jim Highsmith - From the Wild West to Agile and Beyond
-
Sociocracy vs Holacracy: What are the similarities and differences between them?
-
From Concept to Market: Using Value Stream Mapping to Accelerate Product Development
-
Go vs Python, employability for a grad / junior dev? ➡️ The environment has been difficult for quite some time and is getting more and more difficult since chatgpt but not only of it.
-
Death by design patterns, or On the cognitive load of the abstractions in the source code
-
I embarrassed myself in front of a principal engineer because I couldn’t write a Bash script.
-
A Guide to Problem-Solving for Software Developers with Examples ➡️ imho a lot more important to a developer as coding. My ranking would be soft skills, criticial thinking, problem solving, resiliency, coding, be curious, continuous learning
Get number of files in (large) dir and subdirs more: fd | wc -l
Some awk from: https://keentolearn.medium.com/linux-cheatsheet-for-devops-e4f4cd4631aa
pass the pattern ‘INFO’ and condition to print columns 1, 2, 3, and 6 of a log file:
awk '/INFO/ {print $1 $2 $3 $6} logfile.txt
This will split on delimiter and print the values of columns 1 and 3 in the output:
awk -F',' '{print $1, $3}' fruits.txt
This will split on delimiter and then the marks of students and will print their names if marks are greater than 75:
awk -F',' '$2 > 75 {print $1}' marks.txt
reveal.js standalone presentation (deploy a single file):
pandoc --standalone --self-contained -t revealjs input.md -o output.html -V reveal.js-4.5.0\js\reveal.js --include-in-header=style.css -V theme:dracula
Convert json.txt to yaml with yq and pipe it to vim:
yq eval -P "json.txt" | vim -