Explore >> Select a destination


You are here

www.marcogomiero.com
| | ekhabarov.com
11.0 parsecs away

Travel
| | It's time to bring some automation and awareness to our work by setting up CI/CD pipeline.
| | blog.oddbit.com
10.7 parsecs away

Travel
| | At work we have a cluster of IBM Power 9 systems running OpenShift. The problem with this environment is that nobody runs Power 9 on their desktop, and Docker Hub only offers automatic build support for the x86 architecture. This means there's no convenient options for building Power 9 Docker images...or so I thought. It turns out that Docker provides GitHub actions that make the process of producing multi-architecture images quite simple.
| | firebase.blog
11.4 parsecs away

Travel
| | Adding Crashlytics to a Jetpack Compose app
| | saeedesmaili.com
53.4 parsecs away

Travel
| I came across this Linkedin post from a Google engineer, on a new (in preview) and very interesting BigQuery syntax: GROUP BY ALL. This will save time when writing and specially modifying complex SQL queries on BigQuery. The GROUP BY ALL clause groups rows by inferring grouping keys from the SELECT items. It will exclude expressions with aggregate and window functions, constants, and query parameters for a smart GROUP BY. So instead of GROUP BY name, city, device, browser, date or GROUP BY 1, 2, 3, 4, 5 you would use GROUP BY ALL.