Meget spændene og inspirende artikel om fremtiden for arbejde, som meget godt rammer de tanker jeg selv har om det at arbejde og udfordringer for i det. Jeg finder det selv ofte meningsløst at bruge timer om dagen på transport for at tage et headsæt på i et storrumskontor og derefter bruge en masse værktøjer som er lavet til at arbejde asynkront.
Kategori: Uncategorized
Strong teams are more than just connected, they are communities – Stack Overflow Blog
Strong teams are more than just connected, they are communities – Stack Overflow Blog
— Read on stackoverflow.blog/2021/10/27/strong-teams-are-more-than-just-connected-they-are-communities/
Fast way to share text from commandline
If you want to share text you can do it with https://hastebin.com and then inside your .bash-aliases or similar define a function like
export HASTE_SERVER=https://hastebin.com
haste () {
a=$(cat)
curl -X POST -s -d "$a" $HASTE_SERVER/documents | awk -F '"' -v haste_server=$HASTE_SERVER '{ print haste_server"/"$4 }'
}
If you want to share somefile from commandline with
cat somefile | haste
and it will respond with e.g
https://hastebin.com/ibejajiful.bash
that points to the shared text from somefile. To get text down into a localfile again do
curl https://hastebin.com/raw/ibejajiful > somefile
and your have a local version of that file.
Notice that you should not share important information with this tool as it is not secure.
Like/dislike journal when working as developer
In this post I will keep a list on what I like and dislike when working as a developer over the last month. Be aware that I in this month startet in a new team and company.
Like
Chose my own equipment
Chose my own software
Chosen when to work remote
Chose together with my team who should run meetings
Learn online
Learn from collegues
Work with a new framework
Deploy my own code
Update status online in writtimg
Test driven development
Dislike
Micromanagement
Status meetings
Handle deployments with changes that I did not do
Tedious release cycles
Execute commands that should have been automated
Debugging
Ports and linux
This command displays ports in use and by which process. I like to add this to my alias file as ports.
ports=’netstat -tulpn’
Tools for my mac
On my mac I want the following tools available to make programming to be more effective:
Applications
https://code.visualstudio.com/
https://hub.docker.com/editions/community/docker-ce-desktop-mac
Servers
Kafka Connect Concepts & Example
Kafka Connect is used to connect Kafka with external systems such as database, storage, and messaging systems for data import and export in a …
Kafka Connect Concepts & Example
Event-driven APIs and schema governance for Apache Kafka: Get ready for Kafka Summit Europe 2021
As a developer, I’m always excited to attend the Kafka Summit, happening this year from May 11 to 12. There are so many great sessions addressing …
Event-driven APIs and schema governance for Apache Kafka: Get ready for Kafka Summit Europe 2021
Building resilient event-driven architectures with Apache Kafka
Even though cloud-native computing has been around for some time—the Cloud Native Computing Foundation was started in 2015; an eon in computer time—…
Building resilient event-driven architectures with Apache Kafka
How To Create Kubernetes Jobs/Cron Jobs – Getting Started Guide
Kubernetes jobs are primarily meant for short-lived and batch workloads. It runs for completion instead of other objects like deployment, replicasets…
How To Create Kubernetes Jobs/Cron Jobs – Getting Started Guide