Orestis Floros
Orestis Floros
Some time ago I copied the rofi-power script and made some modifications in the way it handles options: https://github.com/orestisf1993/dotfiles/blob/d94285bb77d7ff3e0fc69c66f8a1b04b7ed79df6/binaries/bin/i3-rofi-actions It uses an associative array to store the options and a...
Hello, I am trying to compile [libsodium](https://github.com/jedisct1/libsodium) which has a [shell script](https://github.com/jedisct1/libsodium/blob/master/dist-build/wasm32-wasi.sh) to build with WebAssembly support, using wasi-sdk. The script executes correctly by default but when I try to...
## Current behavior `alttab` initializes a window list using the `initWinList` function: https://github.com/sagb/alttab/blob/09bc40c21f71c9a70074a9d70ce01404545fd40e/src/win.c#L550 ## Desired behavior `alttab` accepts a new argument, say `-window_list_command` which, when called, returns a list of...
**Motivation** The [CI cache](https://github.com/elastic/cloudbeat/actions/caches) is constantly hitting the GitHub 10GB limit.  As far as I am aware, it's not possible to increase this limit. This likely impacts the performance...
**Motivation** Upgrade our Azure benchmark from 2.0.0 to 2.1.0 (released 2024-02-13) This will correct the misleading phrasing for rule 3.5 https://github.com/elastic/cloudbeat/issues/1416#issuecomment-1956221974 **Definition of done** What needs to be completed at...
**Motivation** [Shellcheck](https://www.shellcheck.net/) is a very popular shell script linter, its usage is recommended as a best practice when developing shell scripts. Expand the shellcheck linter usage to other scripts in...
**Motivation** Why are we doing this task? what is the value to the user? **Definition of done** What needs to be completed at the end of this task - [...
**Motivation** The [revive](https://github.com/mgechev/revive) linter offers various checks for Go best-practices and common bugs and can help with code consistency and code review. It is currently disabled in our golangci.yml. **Definition...
**Motivation** The dependency review CI always flags go.mod updates to the elastic/beats repo as it always detects [CVE-2023-49922](https://github.com/advisories/GHSA-hj4r-2c9c-29h3). This probably has to do with being forced to use a v7...
**Motivation** The AWS go SDK provides paginators for list operation of its API: https://aws.github.io/aws-sdk-go-v2/docs/making-requests/#using-paginators Instead, in our codebase, we are using the manual way of paginating which involves checking the...