Remote work is killing big offices. Cities must change to survive

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.

https://stackoverflow.blog/2022/06/06/remote-work-is-killing-big-offices-cities-must-change-to-survive/?utm_source=Iterable&utm_medium=email&utm_campaign=the_overflow_newsletter

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

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