Łukasz Lach (@lach_dev) 's Twitter Profile
Łukasz Lach

@lach_dev

Docker Captain | Jedi Master | University Lecturer | Conference speaker | Software Architect | #Cyberpunk2077 #Witcher | command-not-found.com

ID: 1081350291595948032

linkhttps://lach.dev calendar_today05-01-2019 00:42:54

1,1K Tweet

635 Followers

661 Following

Techno Tim (@technotimlive) 's Twitter Profile Photo

Proxmox 9.1 adds support for OCI containers. That means you can now run Docker-style workloads inside Proxmox using LXC. I tested it, showed how it works, and covered the current limitations. youtu.be/gDZVrYhzCes

sysxplore (@sysxplore) 's Twitter Profile Photo

Quick Linux tip: Working with CSV files in the terminal? You can make them readable by aligning columns neatly with column: $ cat inventory.csv | column -t -s, The -s, flag tells it to use commas as separators, and -t formats the output into a clean table. Perfect for quick

Quick Linux tip:

Working with CSV files in the terminal?

You can make them readable by aligning columns neatly with column:

$ cat inventory.csv | column -t -s,

The -s, flag tells it to use commas as separators, and -t formats the output into a clean table.

Perfect for quick
Ilir Aliu - eu/acc (@iliraliu_) 's Twitter Profile Photo

AI in robotics gets all the attention right now, but sometimes the most interesting work is very practical. Viet built a small vision system that counts potatoes on a conveyor belt. No giant dataset. No huge model. Just a clear problem and a smart setup. He used Ultralytics’

Melisa♡ (@xmliisu) 's Twitter Profile Photo

Gemini Nano Banana 3.0 Prompt: { "project_constraints": { "facial_rendering": "100% original facial features (Do not edit the face)", "resolution": "1200x1200px", "output_quality": "Photo-realistic, 8K resolution" }, "camera_and_style": {

Gemini Nano Banana 3.0 

Prompt:

{
  "project_constraints": {
    "facial_rendering": "100% original facial features (Do not edit the face)",
    "resolution": "1200x1200px",
    "output_quality": "Photo-realistic, 8K resolution"
  },
  "camera_and_style": {
Faizan (@codoyevskyy) 's Twitter Profile Photo

So I was as usual learning about Docker and got to know that Docker networking is so freaking good. When you create a Docker container, it by default takes up the bridge network and the container is assigned a private IP by the internal IPAM (IP Address Management) driver

So I was as usual learning about Docker and got to know that Docker networking is so freaking good.

When  you create a Docker container, it by default takes up the bridge  network and the container is assigned a private IP by the internal IPAM  (IP Address Management) driver
Hussein Nasser (@hnasr) 's Twitter Profile Photo

These days we don't see close attention paid to protocol efficiency as it used it in early 2000s. Take WebSockets, a protocol designed in 2010 perhaps earlier, it was optimized to keep the header size is small as possible. Instead of using a fixed size header for the payload

These days we don't see close attention paid to protocol efficiency as it used it in early 2000s. 

Take WebSockets, a protocol designed in 2010 perhaps earlier, it was optimized to keep the header size is small as possible. 

Instead of using a fixed size header for the payload
Ivan Velichko (@iximiuz) 's Twitter Profile Photo

What are Linux Mount Namespaces and How Containers Use Them 🧐 When you create or modify a file in one Docker container, the change is usually not visible in another. However, this is not because these two containers use different mount (mnt) namespaces. Each Linux container's

What are Linux Mount Namespaces and How Containers Use Them 🧐

When you create or modify a file in one Docker container, the change is usually not visible in another. However, this is not because these two containers use different mount (mnt) namespaces.

Each Linux container's
Branko (@brankopetric00) 's Twitter Profile Photo

Everyone screams "use Alpine for smaller images." Then you spend hours debugging why your Python package won't compile. The problem: - musl libc instead of glibc - Missing build dependencies - Wheels don't work - Native extensions fail - OpenSSL incompatibilities You saved

Jason Fried (@jasonfried) 's Twitter Profile Photo

Jeremy, a 19-year veteran of 37signals, calmly walks through the process moving 5+ petabytes of data and billions of individual files off AWS and onto our own on-prem storage setup without a second of downtime. The how, the time, and the tooling, it's all in here. Watch:

HackingHub (@hackinghub_io) 's Twitter Profile Photo

Do you know how to turn a single moment of root access into long-term persistence? Using sudo chmod +s /bin/bash is a classic technique.👇 #Linux #Linuxcommand