|
You are here |
dwaves.de | ||
| | | | |
thomashunter.name
|
|
| | | | | [AI summary] The article discusses the concept of designing a general-purpose computing machine that can survive for over a century, emphasizing durability, repairability, and self-sufficiency. It critiques modern technology's reliance on planned obsolescence and disposable devices, drawing inspiration from retro computing, Sci-Fi, and a need for simplicity. Key considerations include energy efficiency, open-source software, robust hardware, and the ability to communicate with the environment through various means like Software Defined Radio (SDR). The vision is to create a machine that endures technological, economic, or societal collapse by prioritizing longevity over convenience. | |
| | | | |
github.com
|
|
| | | | | Reverse Engineering Resources About All Platforms(Windows/Linux/macOS/Android/iOS/IoT) And Every Aspect! (More than 3500 open source tools and 2300 posts&videos) - alphaSeclab/awesome-reverse-engineering | |
| | | | |
www.adamsdesk.com
|
|
| | | | | May has arrived and so has another new issue of Little Bits that will feed your curiosity on the journey of exploring this creative digital world. | |
| | | | |
memo.mx
|
|
| | | 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 /go/src/github. | ||