Explore >> Select a destination


You are here

staydecent.ca
| | wittchen.io
2.5 parsecs away

Travel
| | When we work with Activities in Android, defining different layouts for different screen orientations is easy. The only thing we need to do, is to create two *.xml files with the same name for layouts in two separate directories (res/layout/ and res/layout-land/). In Fragments its not that easy. In such case, we need to perform additional operations in order to achieve our goal. Fragment in Android is not re-inflated on configuration change, but we can recreate layout and repopulate view manually.
| | zserge.com
1.5 parsecs away

Travel
| | Android history: from no architecture to MVP to MVVM to Redux
| | adityarohilla.com
2.4 parsecs away

Travel
| | Hey people! In this tutorial, we'll develop a basic Audio capturing android application. This tutorial is the second part of the series in which we develop basic Android applications. You can find the previous article on Screen mirroring here: Screen mirroring android app Let's start developing our recorder app. The most common way to do...
| | memo.mx
37.8 parsecs away

Travel
| Docker multi-stage build is a great way to build a container images with a minimal footprint. Compiled languages like Go or Rust can take advantage of this by just shipping a binary to a container This is an example from the official docs: FROM golang:1.16 WORKDIR /go/src/github.com/alexellis/href-counter/ RUN go get -d -v golang.org/x/net/html COPY app.go ./ RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app . FROM alpine:latest RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=0 /g...