Page 34 of 128 (2549 total posts)

July 2022

10-07-2022
Broken
Beginners Guide to Udev in Linux – The Geek Diary

Beginners Guide to Udev in Linux – The Geek Diary

Source: thegeekdiary.com

Udev is really cryptic and advanced. It is often hard to trobuleshoot if you need to. What is it? Udev is the device manager for the Linux kernel. Udev dynamically creates or removes device node files at boot time in the /dev directory for all types of devices. Udev is now part of systemd as you can see by viewing the “udev” file names included with the systemd RPM package.

Tags: udev udev-rules how-to linux advanced robotics
08-07-2022
Home - Coder v1 v1.32 docs

Home - Coder v1 v1.32 docs

Source: coder.com

This looks pretty interesting. Sort of what I've been trying to home grow. "Coder is a self-hosted platform that allows organizations to securely provision developer workspaces (featuring remote IDEs and all related resources) for DevOps, platform, and software engineering teams."

Tags: cloud cluster self-hosted development docker
03-07-2022
Ruby Style Guide

Ruby Style Guide

Source: ruby-style-guide.shopify.dev

This is a very reasonable, rational, practical style guide. “Shopify's Ruby Style Guide. Always useful to see how the ruby experts do it!”

Tags: ruby style rubocop how-to

June 2022

30-06-2022
The strange relationship between objects, functions, generators and coroutines

The strange relationship between objects, functions, generators and coroutines

Source: packt.com

The strange relationship between objects, functions, generators and coroutines In this article, I’d like to investigate some relationships between functions, objects, generators and coroutines in Python. At a theoretical level, these are very different concepts, but because of Python’s dynamic nature, many of them can appear to be used interchangeably. I discuss useful applications of […]

Tags: python how-to objects functions
29-06-2022
A Gentle Introduction to Particle Swarm Optimization

A Gentle Introduction to Particle Swarm Optimization

Source: machinelearningmastery.com

Particle swarm optimization (PSO) is one of the bio-inspired algorithms and it is a simple one to search for an optimal solution in the solution space. It is different from other optimization algorithms in such a way that only the objective function is needed and it is not dependent on the gradient or any differential […]

Tags: PSO machine-learning evolutionary-algorithms python py-sci-kit how-to