We propose a new Domain-Specific Language to precisely define the sustainability aspects of an ML model (including the energy costs for its different tasks) that can be exported as an extended Model Card| Modeling Languages
An old Kindle, once jailbroken and running KUAL, can be repurposed as a dashboard for just about anything. I’ve actually done this before - though right now,...| 4DCu.be
Monitoring the air quality in spaces where you spend a lot of time can be a game-changer for your well-being and productivity. However, the air quality monitor built-in a...| 4DCu.be
Effective insulation is key in modern homes, offering comfort and energy efficiency. However, it often comes with a need for better ventilation to maintain a healthy air quality. In this...| 4DCu.be
If you’re looking for a straightforward yet powerful method to safeguard your home or office, a smart motion sensor linked to Home Assistant might be the pe...| 4DCu.be
YamlExtensions is a Ruby gem that enhances YAML functionality by providing deep merge capabilities using the '<<<' operator, making complex YAML configurations more manageable and maintainable.| 200ok.ch
This is the second in a series of posts on building powerful and resilient Rails application templates. In the previous post, we discussed parsing and emitting YAML files with comments. Today, we will be looking at manipulating the database.yml file’s AST.| Fractaled Mind
This is my personal site, where I write about Ruby, programming, and any of my varied fascinations.| fractaledmind.github.io
Mike Farah’s yq yaml processor has a a rich set of operators and functions for advanced usage. In this article, I will illustrate how to update deeply nested elements in yaml. This can be done for both known paths as well as arbitrarily deep paths. Sample yaml We will use the following yaml files to ... yq: updating deeply nested elements| Fabian Lee : Software Engineer
Mike Farah’s yq yaml processor has a a full-featured validation command that is very detailed in its reporting, but the yaml specification itself is very lenient, which means yq may accept scenarios you did not expect (e.g. an empty file). yq -v file.yaml >/dev/null ; echo "final result = $?" Luckily, the yq tips-and-tricks section ... yq: validate yaml syntax| fabianlee.org
VMware Cloud Automation Services went GA 2 days ago, on the 15/1/2019. There is already a ton of blogs, describing the solution. I thought that I would give my view on one of the things, that i find most cool about the solution. Note that i’m no expert, but I already love the solution, and i’m looking forward to learning more about what I, and the customers I talk to, can do with it.| Robert-Jensen.dk
Configuration Objects| The Grumpy Troll
In this article, we learn how to create a Spring Boot based Kubernetes Controller and explore the various components needed to create it.| RefactorFirst
In this article, we understand how Kubernetes handles its resources and create our own Kubernetes Custom Resource Definition (CRD)| RefactorFirst
In this post we're looking at YAML anchors and aliases. We also look at different ways of stopping PyYAML from using references when serializing data structures.| TTL255 - Przemek Rogala's blog
Given a yaml-like file containing key-value pairs like this: 1 2 3 key1: value1 key2: value2 key3: value3 The following function will load it and return the data as a Lua table. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 function read_yaml_file(filename) local file = io.open(filename, "r") if not file then return nil, "Failed to open file: " .. filename end local data = {} for line in file:lines() do local key, value = line:match("(%w+):%s*(.| Ishan Das Sharma