From e15aa5447150d31e86590da8b2ebd8e62acadcb8 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 12 Jul 2025 22:46:46 +0300 Subject: Update content for html --- about/resources.html | 204 ++++---- about/showcase.html | 978 +++++++++++++++++-------------------- about/showcase/debroid/image-1.png | 124 ++--- 3 files changed, 611 insertions(+), 695 deletions(-) (limited to 'about') diff --git a/about/resources.html b/about/resources.html index a58ddcef..4999a93b 100644 --- a/about/resources.html +++ b/about/resources.html @@ -50,107 +50,107 @@ In random order:


Technical references



I didn't read them from the beginning to the end, but I am using them to look up things. The books are in random order:


Self-development and soft-skills books



In random order:


Here are notes of mine for some of the books

@@ -159,30 +159,30 @@ Some of these were in-person with exams; others were online learning lectures only. In random order:


Technical guides



These are not whole books, but guides (smaller or larger) which I found very useful. in random order:


Podcasts


@@ -192,60 +192,60 @@ In random order:


Podcasts I liked



I liked them but am not listening to them anymore. The podcasts have either "finished" (no more episodes) or I stopped listening to them due to time constraints or a shift in my interests.


Newsletters I like



This is a mix of tech and non-tech newsletters I am subscribed to. In random order:


Magazines I like(d)



This is a mix of tech I like(d). I may not be a current subscriber, but now and then, I buy an issue. In random order:


Formal education



diff --git a/about/showcase.html b/about/showcase.html index 1c13c828..a5be8e15 100644 --- a/about/showcase.html +++ b/about/showcase.html @@ -13,7 +13,7 @@

Project Showcase



-Generated on: 2025-07-09
+Generated on: 2025-07-12

This page showcases my side projects, providing an overview of what each project does, its technical implementation, and key metrics. Each project summary includes information about the programming languages used, development activity, and licensing. The projects are ordered by recent activity, with the most actively maintained projects listed first.

@@ -27,9 +27,8 @@
  • ⇢ ⇢ timr
  • ⇢ ⇢ tasksamurai
  • ⇢ ⇢ rexfiles
  • -
  • ⇢ ⇢ dtail
  • -
  • ⇢ ⇢ wireguardmeshgenerator
  • ⇢ ⇢ ior
  • +
  • ⇢ ⇢ wireguardmeshgenerator
  • ⇢ ⇢ ds-sim
  • ⇢ ⇢ sillybench
  • ⇢ ⇢ gos
  • @@ -39,12 +38,13 @@
  • ⇢ ⇢ quicklogger
  • ⇢ ⇢ docker-gpodder-sync-server
  • ⇢ ⇢ terraform
  • +
  • ⇢ ⇢ gogios
  • ⇢ ⇢ docker-radicale-server
  • ⇢ ⇢ docker-anki-sync-server
  • ⇢ ⇢ gorum
  • ⇢ ⇢ guprecords
  • -
  • ⇢ ⇢ gogios
  • ⇢ ⇢ randomjournalpage
  • +
  • ⇢ ⇢ dtail
  • ⇢ ⇢ sway-autorotate
  • ⇢ ⇢ photoalbum
  • ⇢ ⇢ algorithms
  • @@ -68,44 +68,45 @@
  • ⇢ ⇢ japi
  • ⇢ ⇢ perl-poetry
  • ⇢ ⇢ ipv6test
  • -
  • ⇢ ⇢ cpuinfo
  • ⇢ ⇢ loadbars
  • +
  • ⇢ ⇢ cpuinfo
  • ⇢ ⇢ perldaemon
  • ⇢ ⇢ awksite
  • ⇢ ⇢ jsmstrade
  • ⇢ ⇢ netcalendar
  • ⇢ ⇢ ychat
  • -
  • ⇢ ⇢ vs-sim
  • ⇢ ⇢ hsbot
  • ⇢ ⇢ fype
  • +
  • ⇢ ⇢ vs-sim

  • Overall Statistics




    Projects



    gitsyncer





    GitSyncer is a cross-platform repository synchronization tool that automatically keeps Git repositories in sync across multiple hosting platforms like GitHub, Codeberg, and private SSH servers. It solves the common problem of maintaining consistent code across different Git hosting services by cloning repositories, adding all configured platforms as remotes, and continuously merging and pushing changes bidirectionally while handling branch creation and conflict detection.
    @@ -115,19 +116,14 @@ View on Codeberg
    View on GitHub

    -Go from internal/cli/handlers.go:
    +Go from internal/showcase/images.go:

    -func LoadConfig(configPath string) (*config.Config, error) {
    -	if configPath == "" {
    -		configPath = findDefaultConfigPath()
    -		if configPath == "" {
    -			return nil, fmt.Errorf("no configuration file found")
    -		}
    -	}
    -	
    -	fmt.Printf("Loaded configuration from: %s\n", configPath)
    -	return config.Load(configPath)
    +func isGitHostedImage(url string) bool {
    +	return strings.Contains(url, "github.com") || 
    +		strings.Contains(url, "githubusercontent.com") ||
    +		strings.Contains(url, "codeberg.org") ||
    +		strings.Contains(url, "codeberg.page")
     }
     

    @@ -138,13 +134,13 @@ func LoadConfig(configPath string) (*config.Config, error) {

    @@ -155,10 +151,14 @@ func LoadConfig(configPath string) (*config.Config, error) { View on Codeberg
    View on GitHub

    -Go from internal/version.go:
    +Go from internal/live/live.go:

    -const Version = "v0.0.0"
    +func tick() tea.Cmd {
    +	return tea.Tick(time.Second, func(t time.Time) tea.Msg {
    +		return tickMsg(t)
    +	})
    +}
     

    ---
    @@ -168,14 +168,14 @@ const Version = "v0.0.0"

    tasksamurai screenshot
    @@ -189,39 +189,10 @@ const Version = "v0.0.0" View on Codeberg
    View on GitHub

    -Go from internal/ui/table.go:
    +Go from internal/version.go:

    -func editDescriptionCmd(description string) tea.Cmd {
    -	return func() tea.Msg {
    -		tmpFile, err := os.CreateTemp("", "tasksamurai-desc-*.txt")
    -		if err != nil {
    -			return descEditDoneMsg{err: err, tempFile: ""}
    -		}
    -		tmpPath := tmpFile.Name()
    -		
    -		_, err = tmpFile.WriteString(description)
    -		tmpFile.Close()
    -		if err != nil {
    -			os.Remove(tmpPath)
    -			return descEditDoneMsg{err: err, tempFile: ""}
    -		}
    -		
    -		editor := os.Getenv("EDITOR")
    -		if editor == "" {
    -			editor = "vi"
    -		}
    -		
    -		c := exec.Command(editor, tmpPath)
    -		c.Stdin = os.Stdin
    -		c.Stdout = os.Stdout
    -		c.Stderr = os.Stderr
    -		
    -		return tea.ExecProcess(c, func(err error) tea.Msg {
    -			return descEditDoneMsg{err: err, tempFile: tmpPath}
    -		})()
    -	}
    -}
    +const Version = "0.9.2"
     

    ---
    @@ -229,13 +200,13 @@ func editDescriptionCmd(description string) tea.Cmd {

    rexfiles




    @@ -247,73 +218,64 @@ func editDescriptionCmd(description string) tea.Cmd { View on Codeberg
    View on GitHub

    -Shell from frontends/scripts/sitestats.sh:
    +Perl from frontends/scripts/foostats.pl:

    -STATSFILE=/tmp/sitestats.csv
    -BOTSFILE=/tmp/sitebots.txt
    -TOP=20
    +sub write ( $path, $content ) {
    +    open my $fh, '>', "$path.tmp"
    +      or die "\nCannot open file: $!";
    +    print $fh $content;
    +    close $fh;
    +
    +    rename
    +      "$path.tmp",
    +      $path;
    +}
     

    ---

    -

    dtail


    +

    ior





    -dtail screenshot
    +ior screenshot

    -DTail is a distributed log processing system written in Go that allows DevOps engineers to tail, cat, and grep log files across thousands of servers concurrently. It provides secure access through SSH authentication and respects UNIX file system permissions, making it ideal for enterprise environments where log analysis needs to scale horizontally across large server fleets. The tool supports advanced features like compressed file handling (gzip/zstd) and distributed MapReduce aggregations for complex log analytics.
    +Based on my analysis of the codebase, here's a comprehensive summary of the I/O Riot NG (ior) project:

    -dtail screenshot
    +ior screenshot

    -The system uses a client-server architecture where dtail servers run on target machines (listening on port 2222) and clients connect to multiple servers simultaneously. It can also operate in serverless mode for local operations. The implementation leverages SSH for secure communication, includes sophisticated connection throttling and resource management, and provides specialized tools (dcat, dgrep, dmap) for different log processing tasks. The MapReduce functionality supports SQL-like queries with server-side local aggregation and client-side final aggregation, enabling powerful distributed analytics across log data.
    +**I/O Riot NG** is a Linux-based performance monitoring tool that uses eBPF (extended Berkeley Packet Filter) to trace synchronous I/O system calls and analyze their execution times. This tool is particularly valuable for system performance analysis, allowing developers and system administrators to visualize I/O bottlenecks through detailed flamegraphs. It serves as a modern successor to the original I/O Riot project, migrating from SystemTap/C to a Go/C/BPF implementation for better performance and maintainability.

    -View on Codeberg
    -View on GitHub
    +The architecture combines kernel-level tracing with user-space analysis: eBPF programs (internal/c/ior.bpf.c) attach to kernel tracepoints to capture syscall entry/exit events, which are then processed by a Go-based event loop (internal/eventloop.go) that correlates enter/exit pairs, tracks file descriptors, and measures timing. The tool can operate in real-time mode for live monitoring or post-processing mode to generate flamegraphs from previously collected data using the Inferno flamegraph library. Key features include filtering capabilities for specific processes or file patterns, comprehensive statistics collection, and support for various I/O syscalls like open, read, write, close, and dup operations.
    +
    +View on Codeberg
    +View on GitHub

    -Go from internal/io/signal/signal.go:
    +Go from internal/file/file.go:

    -func InterruptCh(ctx context.Context) <-chan string {
    -	sigIntCh := make(chan os.Signal, 10)
    -	gosignal.Notify(sigIntCh, os.Interrupt)
    -	sigOtherCh := make(chan os.Signal, 10)
    -	gosignal.Notify(sigOtherCh, syscall.SIGHUP, syscall.SIGTERM, syscall.SIGQUIT)
    -	statsCh := make(chan string)
    -
    -	go func() {
    -		for {
    -			select {
    -			case <-sigIntCh:
    -				select {
    -				case statsCh <- "Hint: Hit Ctrl+C again to exit":
    -					select {
    -					case <-sigIntCh:
    -						os.Exit(0)
    -					case <-time.After(time.Second * time.Duration(config.InterruptTimeoutS)):
    -					}
    -				default:
    -				}
    -			case <-sigOtherCh:
    -				os.Exit(0)
    -			case <-ctx.Done():
    -				return
    -			}
    -		}
    -	}()
    -	return statsCh
    +func NewFd(fd int32, name []byte, flags int32) FdFile {
    +	f := FdFile{
    +		fd:    fd,
    +		name:  types.StringValue(name),
    +		flags: Flags(flags),
    +	}
    +	if f.flags == -1 {
    +		panic(fmt.Sprintf("DEBUG with -1 flags: %v", f))
    +	}
    +	return f
     }
     

    @@ -328,7 +290,7 @@ func InterruptCh(ctx context.Context) <-chan string {
  • 📈 Lines of Code: 396
  • 📄 Lines of Documentation: 24
  • 📅 Development Period: 2025-04-18 to 2025-05-11
  • -
  • 🔥 Recent Activity: 71.7 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 74.9 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🏷️ Latest Release: v1.0.0 (2025-05-11)

  • @@ -353,51 +315,6 @@ def initialize(myself)
    ---

    -

    ior


    -
    -
    -
    -ior screenshot
    -
    -Based on my analysis of the codebase, here's a comprehensive summary of the I/O Riot NG (ior) project:
    -
    -ior screenshot
    -
    -**I/O Riot NG** is a Linux-based performance monitoring tool that uses eBPF (extended Berkeley Packet Filter) to trace synchronous I/O system calls and analyze their execution times. This tool is particularly valuable for system performance analysis, allowing developers and system administrators to visualize I/O bottlenecks through detailed flamegraphs. It serves as a modern successor to the original I/O Riot project, migrating from SystemTap/C to a Go/C/BPF implementation for better performance and maintainability.
    -
    -The architecture combines kernel-level tracing with user-space analysis: eBPF programs (internal/c/ior.bpf.c) attach to kernel tracepoints to capture syscall entry/exit events, which are then processed by a Go-based event loop (internal/eventloop.go) that correlates enter/exit pairs, tracks file descriptors, and measures timing. The tool can operate in real-time mode for live monitoring or post-processing mode to generate flamegraphs from previously collected data using the Inferno flamegraph library. Key features include filtering capabilities for specific processes or file patterns, comprehensive statistics collection, and support for various I/O syscalls like open, read, write, close, and dup operations.
    -
    -View on Codeberg
    -View on GitHub
    -
    -C from tools/forktest.c:
    -
    -
    -int main() {
    -    int fd = open("testfile", O_WRONLY| O_CREAT, 0644);
    -    if (fd < 0) {
    -        perror("open");
    -        return 1;
    -    }
    -    int flags = fcntl(fd, F_GETFL);
    -    printf("Parent: File access mode is O_RDWR|O_CREAT (%d %d %d)\n", flags,
    -      O_RDWR|O_CREAT, O_WRONLY|O_CREAT);
    -
    -    pid_t pid = fork();
    -
    -
    ----
    -

    ds-sim




    @@ -489,7 +394,7 @@ func main() {
  • 📈 Lines of Code: 3967
  • 📄 Lines of Documentation: 411
  • 📅 Development Period: 2024-05-04 to 2025-06-12
  • -
  • 🔥 Recent Activity: 114.5 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 117.8 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🏷️ Latest Release: v1.0.0 (2025-03-04)
  • 🤖 AI-Assisted: This project was partially created with the help of generative AI
  • @@ -506,16 +411,29 @@ func main() { View on Codeberg
    View on GitHub

    -Go from internal/platforms/linkedin/linkedin.go:
    +Go from internal/config/args.go:

    -func postImageToLinkedInAPI(ctx context.Context, personURN, accessToken,
    -  imagePath string) (string, error) {
    -	uploadURL, imageURN, err := initializeImageUpload(ctx, personURN, accessToken)
    -	if err != nil {
    -		return imageURN, err
    +func (a *Args) ParsePlatforms(platformStrs string) error {
    +	a.Platforms = make(map[string]int)
    +
    +	for _, platformInfo := range strings.Split(platformStrs, ",") {
    +		parts := strings.Split(platformInfo, ":")
    +		platformStr := parts[0]
    +
    +		if len(parts) > 1 {
    +			var err error
    +			a.Platforms[platformStr], err = strconv.Atoi(parts[1])
    +			if err != nil {
    +				return err
    +			}
    +		} else {
    +			colour.Infoln("No message length specified for", platformStr, "so assuming
    +			  500")
    +			a.Platforms[platformStr] = 500
    +		}
     	}
    -	return imageURN, performImageUpload(ctx, imagePath, uploadURL, accessToken)
    +	return nil
     }
     

    @@ -526,13 +444,13 @@ func postImageToLinkedInAPI(ctx context.Context, personURN, accessToken,

    Based on the README and project structure, **foostats** is a privacy-respecting web analytics tool written in Perl specifically designed for OpenBSD systems. It processes both traditional HTTP/HTTPS logs and Gemini protocol logs to generate comprehensive traffic statistics while maintaining visitor privacy through SHA3-512 IP hashing. The tool is built for the foo.zone ecosystem and similar sites that need analytics without compromising user privacy.
    @@ -568,7 +486,7 @@ sub write ( $path, $content ) {
  • 📈 Lines of Code: 1373
  • 📄 Lines of Documentation: 48
  • 📅 Development Period: 2024-12-05 to 2025-02-28
  • -
  • 🔥 Recent Activity: 138.3 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 141.6 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🧪 Status: Experimental (no releases yet)

  • @@ -580,16 +498,17 @@ sub write ( $path, $content ) { View on Codeberg
    View on GitHub

    -Ruby from lib/dslkeywords/package.rb:
    +Ruby from lib/dslkeywords/given.rb:

    -def package(name, &block)
    -  return unless @conds_met
    +def respond_to_missing? = true
     
    -  f = Package.new(name)
    -  f.packages(f.instance_eval(&block))
    -  self << f
    -  f
    +def met?
    +  return false if @conds.key?(:hostname) && Socket.gethostname !=
    +    @conds[:hostname].to_s
    +
    +  true
    +end
     

    ---
    @@ -603,7 +522,7 @@ def package(name, &block)
  • 📈 Lines of Code: 2268
  • 📄 Lines of Documentation: 1180
  • 📅 Development Period: 2021-05-21 to 2025-07-09
  • -
  • 🔥 Recent Activity: 200.7 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 204.0 days (avg. age of last 42 commits)
  • ⚖️ License: GPL-3.0
  • 🏷️ Latest Release: 3.0.0 (2024-10-01)

  • @@ -640,7 +559,7 @@ while read -r src; do
  • 📈 Lines of Code: 917
  • 📄 Lines of Documentation: 33
  • 📅 Development Period: 2024-01-20 to 2025-07-06
  • -
  • 🔥 Recent Activity: 448.3 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 451.6 days (avg. age of last 42 commits)
  • ⚖️ License: MIT
  • 🏷️ Latest Release: v0.0.3 (2025-07-06)

  • @@ -712,7 +631,7 @@ func createPreferenceWindow(a fyne.App) fyne.Window {
  • 📈 Lines of Code: 12
  • 📄 Lines of Documentation: 3
  • 📅 Development Period: 2024-03-24 to 2024-03-24
  • -
  • 🔥 Recent Activity: 472.1 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 475.4 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🧪 Status: Experimental (no releases yet)

  • @@ -750,7 +669,7 @@ aws: build
  • 📈 Lines of Code: 2850
  • 📄 Lines of Documentation: 52
  • 📅 Development Period: 2023-08-27 to 2025-04-05
  • -
  • 🔥 Recent Activity: 502.1 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 505.4 days (avg. age of last 42 commits)
  • ⚖️ License: MIT
  • 🧪 Status: Experimental (no releases yet)

  • @@ -762,17 +681,73 @@ aws: build View on Codeberg
    View on GitHub

    -HCL from s3-org-buetow-tfstate/main.tf:
    +HCL from org-buetow-base/ecr.tf:

    -terraform {
    -  backend "s3" {
    -    bucket = "org-buetow-tfstate"
    -    key    = "s3-org-buetow-tfstate/terraform.tfstate"
    -    region = "eu-central-1"
    -    encrypt = true
    +resource "aws_ecr_repository" "radicale-read" {
    +  name = "radicale"
    +
    +  tags = {
    +    Name = "radicale"
       }
     }
    +
    +resource "aws_iam_policy" "ecr_radicale_read" {
    +
    +
    +---
    +
    +

    gogios


    +
    +
    +
    +gogios screenshot
    +
    +Gogios is a lightweight, minimalistic monitoring tool written in Go designed for small-scale server monitoring. It executes standard Nagios-compatible check plugins and sends email notifications only when service states change, making it ideal for personal infrastructure or small environments with limited resources. The tool emphasizes simplicity over complexity, avoiding the bloat of enterprise monitoring solutions like Nagios, Icinga, or Prometheus by eliminating features like web UIs, databases, contact groups, and clustering.
    +
    +The implementation follows a clean architecture with concurrent check execution, dependency management, and persistent state tracking. Key features include state-based notifications (only alerts on status changes), configurable retry logic, federation support for distributed monitoring, and stale detection for checks that haven't run recently. The tool is configured via JSON and requires only a local mail transfer agent for notifications. It's designed to run via cron jobs and supports high-availability setups through simple dual-server configurations, making it perfect for users who want effective monitoring without operational overhead.
    +
    +View on Codeberg
    +View on GitHub
    +
    +Go from internal/check.go:
    +
    +
    +func (c check) run(ctx context.Context, name string) checkResult {
    +	cmd := exec.CommandContext(ctx, c.Plugin, c.Args...)
    +
    +	var bytes bytes.Buffer
    +	cmd.Stdout = &bytes
    +	cmd.Stderr = &bytes
    +
    +	if err := cmd.Run(); err != nil {
    +		if ctx.Err() == context.DeadlineExceeded {
    +			return checkResult{name, "Check command timed out", time.Now().Unix(),
    +			  nagiosCritical, false}
    +		}
    +	}
    +
    +	parts := strings.Split(bytes.String(), "|")
    +	output := strings.TrimSpace(parts[0])
    +
    +	ec := cmd.ProcessState.ExitCode()
    +	if ec < int(nagiosOk) || ec > int(nagiosUnknown) {
    +		ec = int(nagiosUnknown)
    +	}
    +
    +	return checkResult{name, output, time.Now().Unix(), nagiosCode(ec), false}
    +}
     

    ---
    @@ -786,7 +761,7 @@ terraform {
  • 📈 Lines of Code: 32
  • 📄 Lines of Documentation: 3
  • 📅 Development Period: 2023-12-31 to 2023-12-31
  • -
  • 🔥 Recent Activity: 555.7 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 558.9 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🧪 Status: Experimental (no releases yet)

  • @@ -824,7 +799,7 @@ run: build
  • 📈 Lines of Code: 29
  • 📄 Lines of Documentation: 3
  • 📅 Development Period: 2023-08-13 to 2024-01-01
  • -
  • 🔥 Recent Activity: 648.9 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 652.2 days (avg. age of last 42 commits)
  • ⚖️ License: MIT
  • 🧪 Status: Experimental (no releases yet)

  • @@ -863,7 +838,7 @@ aws:
  • 📈 Lines of Code: 1525
  • 📄 Lines of Documentation: 15
  • 📅 Development Period: 2023-04-17 to 2023-11-19
  • -
  • 🔥 Recent Activity: 701.0 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 704.3 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🧪 Status: Experimental (no releases yet)

  • @@ -875,15 +850,16 @@ aws: View on Codeberg
    View on GitHub

    -Go from internal/utils/string.go:
    +Go from internal/vote/vote.go:

    -	"strings"
    -)
    +func New(conf config.Config, ids ...string) (Vote, error) {
    +	var v Vote
    +
    +	v.FromID = conf.MyID
    +	v.IDs = ids
     
    -func StripPort(addr string) string {
    -	parts := strings.Split(addr, ":")
    -	return parts[0]
    +	return v, nil
     }
     

    @@ -898,7 +874,7 @@ func StripPort(addr string) string {
  • 📈 Lines of Code: 312
  • 📄 Lines of Documentation: 416
  • 📅 Development Period: 2013-03-22 to 2025-05-18
  • -
  • 🔥 Recent Activity: 751.1 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 754.3 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: v1.0.0 (2023-04-29)

  • @@ -933,76 +909,6 @@ method output-trim(Str \str, UInt \line-limit --> Str) {
    ---

    -

    gogios


    -
    -
    -⚠️ **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.
    -
    -gogios screenshot
    -
    -Gogios is a lightweight, minimalistic monitoring tool written in Go designed for small-scale server monitoring. It executes standard Nagios-compatible check plugins and sends email notifications only when service states change, making it ideal for personal infrastructure or small environments with limited resources. The tool emphasizes simplicity over complexity, avoiding the bloat of enterprise monitoring solutions like Nagios, Icinga, or Prometheus by eliminating features like web UIs, databases, contact groups, and clustering.
    -
    -The implementation follows a clean architecture with concurrent check execution, dependency management, and persistent state tracking. Key features include state-based notifications (only alerts on status changes), configurable retry logic, federation support for distributed monitoring, and stale detection for checks that haven't run recently. The tool is configured via JSON and requires only a local mail transfer agent for notifications. It's designed to run via cron jobs and supports high-availability setups through simple dual-server configurations, making it perfect for users who want effective monitoring without operational overhead.
    -
    -View on Codeberg
    -View on GitHub
    -
    -Go from internal/state.go:
    -
    -
    -func readState(conf config) (state, error) {
    -	s := state{
    -		stateFile: fmt.Sprintf("%s/state.json", conf.StateDir),
    -		checks:    make(map[string]checkState),
    -	}
    -
    -	if _, err := os.Stat(s.stateFile); err != nil {
    -		return s, nil
    -	}
    -
    -	file, err := os.Open(s.stateFile)
    -	if err != nil {
    -		return s, err
    -	}
    -	defer file.Close()
    -
    -	bytes, err := io.ReadAll(file)
    -	if err != nil {
    -		return s, err
    -	}
    -
    -	if err := json.Unmarshal(bytes, &s.checks); err != nil {
    -		return s, err
    -	}
    -
    -	var obsolete []string
    -	for name := range s.checks {
    -		if _, ok := conf.Checks[name]; !ok {
    -			obsolete = append(obsolete, name)
    -		}
    -	}
    -
    -	for _, name := range obsolete {
    -		delete(s.checks, name)
    -		log.Printf("State of %s is obsolete (removed)", name)
    -	}
    -
    -	return s, nil
    -}
    -
    -
    ----
    -

    randomjournalpage




    @@ -1037,6 +943,63 @@ declare -i NUM_PAGES_TO_EXTRACT=42 # This is the answear!
    ---

    +

    dtail


    +
    +
    +⚠️ **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.
    +
    +dtail screenshot
    +
    +DTail is a distributed log processing system written in Go that allows DevOps engineers to tail, cat, and grep log files across thousands of servers concurrently. It provides secure access through SSH authentication and respects UNIX file system permissions, making it ideal for enterprise environments where log analysis needs to scale horizontally across large server fleets. The tool supports advanced features like compressed file handling (gzip/zstd) and distributed MapReduce aggregations for complex log analytics.
    +
    +dtail screenshot
    +
    +The system uses a client-server architecture where dtail servers run on target machines (listening on port 2222) and clients connect to multiple servers simultaneously. It can also operate in serverless mode for local operations. The implementation leverages SSH for secure communication, includes sophisticated connection throttling and resource management, and provides specialized tools (dcat, dgrep, dmap) for different log processing tasks. The MapReduce functionality supports SQL-like queries with server-side local aggregation and client-side final aggregation, enabling powerful distributed analytics across log data.
    +
    +View on Codeberg
    +View on GitHub
    +
    +Go from internal/io/fs/readfilelcontext.go:
    +
    +
    +func (f *readFile) lContextNotMatched(ctx context.Context, ls *ltxState,
    +	lines chan<- *line.Line, rawLine *bytes.Buffer) readStatus {
    +
    +	if ls.processAfter && ls.after > 0 {
    +		ls.after--
    +		myLine := line.New(rawLine, f.totalLineCount(), 100, f.globID)
    +
    +		select {
    +		case lines <- myLine:
    +		case <-ctx.Done():
    +			return abortReading
    +		}
    +
    +	} else if ls.processBefore {
    +		select {
    +		case ls.beforeBuf <- rawLine:
    +		default:
    +			pool.RecycleBytesBuffer(<-ls.beforeBuf)
    +			ls.beforeBuf <- rawLine
    +		}
    +	}
    +
    +	return continueReading
    +}
    +
    +
    +---
    +

    sway-autorotate




    @@ -1081,7 +1044,7 @@ declare -r SCREEN=eDP-1
  • 📈 Lines of Code: 342
  • 📄 Lines of Documentation: 39
  • 📅 Development Period: 2011-11-19 to 2022-04-02
  • -
  • 🔥 Recent Activity: 1278.9 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 1282.2 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.5.0 (2022-02-21)

  • @@ -1124,7 +1087,7 @@ scalephotos () {
  • 📈 Lines of Code: 1728
  • 📄 Lines of Documentation: 18
  • 📅 Development Period: 2020-07-12 to 2023-04-09
  • -
  • 🔥 Recent Activity: 1430.0 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 1433.3 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1137,21 +1100,16 @@ scalephotos () { View on Codeberg
    View on GitHub

    -Go from queue/elementarypriority.go:
    +Go from queue/priority.go:

    -func (q *ElementaryPriority[T]) DeleteMax() T {
    -	if q.Empty() {
    -		return 0
    -	}
    -
    -	ind, max := q.max()
    -	for i := ind + 1; i < q.Size(); i++ {
    -		q.a[i-1] = q.a[i]
    -	}
    -	q.a = q.a[0 : len(q.a)-1]
    -
    -	return max
    +type PriorityQueue interface {
    +	Insert(a int)
    +	Max() (max int)
    +	DeleteMax() int
    +	Empty() bool
    +	Size() int
    +	Clear()
     }
     

    @@ -1166,7 +1124,7 @@ func (q *ElementaryPriority[T]) DeleteMax() T {
  • 📈 Lines of Code: 671
  • 📄 Lines of Documentation: 19
  • 📅 Development Period: 2018-05-26 to 2025-01-21
  • -
  • 🔥 Recent Activity: 1431.8 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 1435.1 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1196,11 +1154,11 @@ def out(message, prefix, flag = :none)

    @@ -1224,7 +1182,7 @@ def out(message, prefix, flag = :none)
  • 📈 Lines of Code: 51
  • 📄 Lines of Documentation: 69
  • 📅 Development Period: 2014-03-24 to 2022-04-23
  • -
  • 🔥 Recent Activity: 1911.0 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 1914.3 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1259,7 +1217,7 @@ sub hello() {
  • 📈 Lines of Code: 12420
  • 📄 Lines of Documentation: 610
  • 📅 Development Period: 2018-03-01 to 2020-01-22
  • -
  • 🔥 Recent Activity: 2452.5 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 2455.8 days (avg. age of last 42 commits)
  • ⚖️ License: Apache-2.0
  • 🏷️ Latest Release: 0.5.1 (2019-01-04)

  • @@ -1285,7 +1243,7 @@ sub hello() {
  • 📈 Lines of Code: 919
  • 📄 Lines of Documentation: 12
  • 📅 Development Period: 2015-01-02 to 2021-11-04
  • -
  • 🔥 Recent Activity: 2961.2 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 2964.5 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 1.1.3 (2015-01-02)

  • @@ -1298,7 +1256,7 @@ sub hello() { View on Codeberg
    View on GitHub

    -Perl from src/StaticFarm/API.pm:
    +Perl from debian/staticfarm-apache-handlers/usr/share/staticfarm/apache/handlers/StaticFarm/API.pm:

     sub handler {
    @@ -1357,7 +1315,7 @@ sub handler {
     
  • 📈 Lines of Code: 18
  • 📄 Lines of Documentation: 49
  • 📅 Development Period: 2014-03-24 to 2021-11-05
  • -
  • 🔥 Recent Activity: 3197.1 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3200.4 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1381,7 +1339,7 @@ sub handler {
  • 📈 Lines of Code: 5360
  • 📄 Lines of Documentation: 789
  • 📅 Development Period: 2015-01-02 to 2021-11-05
  • -
  • 🔥 Recent Activity: 3463.8 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3467.1 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 1.0.1 (2015-01-02)

  • @@ -1394,7 +1352,7 @@ sub handler { View on Codeberg
    View on GitHub

    -Perl from debian/mon/usr/share/mon/lib/MAPI/RESTlos.pm:
    +Perl from lib/MON/Cache.pm:

     sub new {
    @@ -1419,7 +1377,7 @@ sub new {
     
  • 📈 Lines of Code: 273
  • 📄 Lines of Documentation: 32
  • 📅 Development Period: 2015-09-29 to 2021-11-05
  • -
  • 🔥 Recent Activity: 3468.0 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3471.2 days (avg. age of last 42 commits)
  • ⚖️ License: Apache-2.0
  • 🏷️ Latest Release: 0 (2015-10-26)

  • @@ -1456,7 +1414,7 @@ def initialize
  • 📈 Lines of Code: 1839
  • 📄 Lines of Documentation: 412
  • 📅 Development Period: 2015-01-02 to 2021-11-05
  • -
  • 🔥 Recent Activity: 3547.6 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3550.9 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 1.0.2 (2015-01-02)

  • @@ -1469,34 +1427,23 @@ def initialize View on Codeberg
    View on GitHub

    -Perl from lib/PINGDOMFETCH/Pingdom.pm:
    +Perl from lib/PINGDOMFETCH/Pingdomfetch.pm:

     sub new {
    -    my ( $class, $config ) = @_;
    +    my ( $class, $opts ) = @_;
     
    -    my $app_key  = $config->get('pingdom.api.app.key');
    -    my $host     = $config->get('pingdom.api.host');
    -    my $port     = $config->get('pingdom.api.port');
    -    my $protocol = $config->get('pingdom.api.protocol');
    -
    -    my $json = JSON->new()->allow_nonref();
    -
    -
    -    my $headers = {
    -        'App-key'    => $app_key,
    -        'User-Agent' => 'pingdomfetch',
    -    };
    -
    -    my $url_base = "$protocol://$host:$port";
    +    my $config  = PINGDOMFETCH::Config->new($opts);
    +    my $pingdom = PINGDOMFETCH::Pingdom->new($config);
     
         my $self = bless {
    -        config   => $config,
    -        json     => $json,
    -        url_base => $url_base,
    -        headers  => $headers,
    +        config       => $config,
    +        pingdom      => $pingdom,
    +        dots_counter => 0,
         }, $class;
     
    +    $self->init_from_to_interval();
    +
         return $self;
     }
     
    @@ -1512,7 +1459,7 @@ sub new {
  • 📈 Lines of Code: 499
  • 📄 Lines of Documentation: 8
  • 📅 Development Period: 2015-05-24 to 2021-11-03
  • -
  • 🔥 Recent Activity: 3558.3 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3561.6 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.1 (2015-06-01)

  • @@ -1525,23 +1472,40 @@ sub new { View on Codeberg
    View on GitHub

    -Go from utils/utils.go:
    +Go from process/process.go:

    -func Slurp(what *string, path string) error {
    -	bytes, err := ioutil.ReadFile(path)
    +func new(pidstr string) (Process, error) {
    +	pid, err := strconv.Atoi(pidstr)
     	if err != nil {
    -		return err
    +		return Process{}, err
    +	}
    +
    +	timestamp := int32(time.Now().Unix())
    +	p := Process{Pid: pid, Timestamp: timestamp}
    +	var rawIo string
    +
    +	if err = utils.Slurp(&rawIo, fmt.Sprintf("/proc/%d/io", pid)); err != nil {
    +		return p, err
    +	}
    +
    +	if err = p.parseRawIo(rawIo); err != nil {
    +		return p, err
    +	}
    +
    +	if err = utils.Slurp(&p.Comm, fmt.Sprintf("/proc/%d/comm", pid)); err != nil {
    +		return p, err
    +	}
    +
    +	err = utils.Slurp(&p.Cmdline, fmt.Sprintf("/proc/%d/cmdline", pid))
    +
    +	if p.Cmdline == "" {
    +		p.Id = fmt.Sprintf("(%s) %s", pidstr, p.Comm)
     	} else {
    -		for _, byte := range bytes {
    -			if byte == 0 {
    -				*what += " "
    -			} else {
    -				*what += string(byte)
    -			}
    -		}
    +		p.Id = fmt.Sprintf("(%s) %s", pidstr, p.Cmdline)
     	}
    -	return nil
    +
    +	return p, err
     }
     

    @@ -1554,7 +1518,7 @@ func Slurp(what *string, path string) error {
  • 📊 Commits: 670
  • 📈 Lines of Code: 1675
  • 📅 Development Period: 2011-03-06 to 2018-12-22
  • -
  • 🔥 Recent Activity: 3614.0 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3617.2 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🏷️ Latest Release: v1.0.0 (2018-12-22)

  • @@ -1569,22 +1533,18 @@ func Slurp(what *string, path string) error { View on Codeberg
    View on GitHub

    -Perl from Xerl/XML/Element.pm:
    +Perl from Xerl/XML/Reader.pm:

    -sub starttag {
    -  my $self = $_[0];
    -  my ( $name, $temp ) = ( $_[1], undef );
    -
    -  return $self if $self->get_name() eq $name;
    -  return undef if ref $self->get_array() ne 'ARRAY';
    +sub open {
    +  my $self = shift;
     
    -  for ( @{ $self->get_array() } ) {
    -    $temp = $_->starttag($name);
    -    return $temp if defined $temp;
    +  if ( -f $self->get_path() ) {
    +    return 0;
    +  }
    +  else {
    +    return 1;
       }
    -
    -  return undef;
     }
     

    @@ -1599,7 +1559,7 @@ sub starttag {
  • 📈 Lines of Code: 88
  • 📄 Lines of Documentation: 148
  • 📅 Development Period: 2015-06-18 to 2015-12-05
  • -
  • 🔥 Recent Activity: 3662.1 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3665.3 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1614,26 +1574,17 @@ sub starttag { View on Codeberg
    View on GitHub

    -Shell from storage/sdcard1/Linux/jessie.sh:
    +Shell from data/local/userinit.sh:

    -function mount_chroot {
    -  mountpoint $ROOT
    -  if [ $? -ne 0 ]; then 
    -    losetup $LOOP_DEVICE $ROOT.img
    -    busybox mount -t ext4 $LOOP_DEVICE $ROOT
    -  fi
    -  for mountpoint in proc dev sys dev/pts; do
    -    mountpoint $ROOT/$mountpoint
    -    if [ $? -ne 0 ]; then
    -      busybox mount --bind /$mountpoint $ROOT/$mountpoint
    -    fi
    -  done
    -  mountpoint $ROOT/storage/sdcard1
    -  if [ $? -ne 0 ]; then
    -    busybox mount --bind /storage/sdcard1 $ROOT/storage/sdcard1
    +while : ; do
    +  if [ -d /storage/sdcard1/Linux/jessie ]; then
    +    cd /storage/sdcard1/Linux && /system/bin/sh jessie.sh start_services
    +    /system/bin/date
    +    exit 0
       fi
    -}
    +  /system/bin/sleep 1
    +done
     

    ---
    @@ -1647,7 +1598,7 @@ function mount_chroot {
  • 📈 Lines of Code: 1681
  • 📄 Lines of Documentation: 539
  • 📅 Development Period: 2014-03-10 to 2021-11-03
  • -
  • 🔥 Recent Activity: 3940.1 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3943.3 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 1.0.2 (2014-11-17)

  • @@ -1688,7 +1639,7 @@ class BIGIP(object):
  • 📈 Lines of Code: 65
  • 📄 Lines of Documentation: 228
  • 📅 Development Period: 2013-03-22 to 2021-11-04
  • -
  • 🔥 Recent Activity: 3994.5 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 3997.8 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.0.0.0 (2013-03-22)

  • @@ -1724,7 +1675,7 @@ build:
  • 📈 Lines of Code: 136
  • 📄 Lines of Documentation: 96
  • 📅 Development Period: 2013-03-22 to 2021-11-05
  • -
  • 🔥 Recent Activity: 4007.5 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4010.8 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.2.0 (2014-07-05)

  • @@ -1760,7 +1711,7 @@ build:
  • 📈 Lines of Code: 134
  • 📄 Lines of Documentation: 106
  • 📅 Development Period: 2013-03-22 to 2021-11-05
  • -
  • 🔥 Recent Activity: 4015.0 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4018.2 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.1.5 (2014-06-22)

  • @@ -1784,7 +1735,7 @@ build:
  • 📈 Lines of Code: 493
  • 📄 Lines of Documentation: 26
  • 📅 Development Period: 2009-09-27 to 2021-11-02
  • -
  • 🔥 Recent Activity: 4058.3 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4061.5 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.9.3 (2014-06-14)

  • @@ -1825,7 +1776,7 @@ function findbin () {
  • 📈 Lines of Code: 286
  • 📄 Lines of Documentation: 144
  • 📅 Development Period: 2013-03-22 to 2021-11-05
  • -
  • 🔥 Recent Activity: 4063.3 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4066.6 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: 0.4.3 (2014-06-16)

  • @@ -1849,7 +1800,7 @@ function findbin () {
  • 📈 Lines of Code: 191
  • 📄 Lines of Documentation: 8
  • 📅 Development Period: 2014-03-24 to 2014-03-24
  • -
  • 🔥 Recent Activity: 4124.6 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4127.8 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1862,18 +1813,18 @@ function findbin () { View on Codeberg
    View on GitHub

    -Perl from math.pl:
    +Perl from perllove.pl:

    -do { int'egrate'; sub trade; };
    -do { exp'onentize' and abs'olutize' };
    -study and study and study and study;
    -
    -foreach $topic ({of, math}) {
    -you, m/ay /go, to, limits }
    -
    -do { not qw/erk / unless $success 
    -and m/ove /o;$n and study };
    +no strict;
    +no warnings;
    +we: do { print 'love'
    +or warn and die 'slow'
    +unless not defined true #respect
    +} for reverse'd', qw/mind of you/
    +and map { 'me' } 'into', undef $mourning;
    +__END__ 
    +v2 Copyright (2005, 2006) by Paul C. Buetow, http://paul.buetow.org
     

    ---
    @@ -1885,7 +1836,7 @@ and m/ove /o;$n and study };
  • 📊 Commits: 7
  • 📈 Lines of Code: 80
  • 📅 Development Period: 2011-07-09 to 2015-01-13
  • -
  • 🔥 Recent Activity: 4204.6 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4207.9 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🧪 Status: Experimental (no releases yet)

  • @@ -1930,40 +1881,16 @@ if ($ENV{SERVER_NAME} eq 'ipv6.buetow.org') {
    ---

    -

    cpuinfo


    -
    -
      -
    • 💻 Languages: Shell (53.2%), Make (46.8%)
    • -
    • 📚 Documentation: Text (100.0%)
    • -
    • 📊 Commits: 28
    • -
    • 📈 Lines of Code: 124
    • -
    • 📄 Lines of Documentation: 75
    • -
    • 📅 Development Period: 2010-11-05 to 2021-11-05
    • -
    • 🔥 Recent Activity: 4245.3 days (avg. age of last 42 commits)
    • -
    • ⚖️ License: No license found
    • -
    • 🏷️ Latest Release: 1.0.2 (2014-06-22)
    • -

    -⚠️ **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.
    -
    -**cpuinfo** is a small command-line utility that provides a human-readable summary of CPU information on Linux systems. It parses /proc/cpuinfo using AWK to extract and display key processor details including the CPU model, cache size, number of physical processors, cores, and whether hyper-threading is enabled. The tool calculates total CPU frequency and bogomips across all cores, making it easier to understand complex multi-core and multi-processor configurations at a glance.
    -
    -The implementation is remarkably simple - a single shell script that uses GNU AWK to parse the kernel's CPU information and format it into a clear, structured output. It's particularly useful for system administrators and developers who need to quickly understand CPU topology, especially on servers with multiple processors or complex threading configurations where the raw /proc/cpuinfo output can be overwhelming.
    -
    -View on Codeberg
    -View on GitHub
    -
    ----
    -

    loadbars



    • 💻 Languages: Perl (97.4%), Make (2.6%)
    • -
    • 📚 Documentation: Text (100.0%)
    • +
    • 📚 Documentation: Text (93.5%), Markdown (6.5%)
    • 📊 Commits: 527
    • 📈 Lines of Code: 1828
    • -
    • 📄 Lines of Documentation: 100
    • +
    • 📄 Lines of Documentation: 107
    • 📅 Development Period: 2010-11-05 to 2015-05-23
    • -
    • 🔥 Recent Activity: 4275.4 days (avg. age of last 42 commits)
    • +
    • 🔥 Recent Activity: 4215.4 days (avg. age of last 42 commits)
    • ⚖️ License: No license found
    • 🏷️ Latest Release: 0.7.5 (2014-06-22)

    @@ -1976,20 +1903,43 @@ if ($ENV{SERVER_NAME} eq 'ipv6.buetow.org') { View on Codeberg
    View on GitHub

    -Perl from lib/Loadbars/HelpDispatch.pm:
    +Perl from lib/Loadbars/Utils.pm:

    -sub create () {
    -    my $hosts = '';
    -
    -    my $textdesc = <<END;
    -For more help please consult the manual page or press the 'h' hotkey during
    -  program execution and watch this terminal window. 
    -END
    +sub trim (\$) {
    +    my $str = shift;
    +    $$str =~ s/^[\s\t]+//;
    +    $$str =~ s/[\s\t]+$//;
    +    return undef;
    +}
     

    ---

    +

    cpuinfo


    +
    +
      +
    • 💻 Languages: Shell (53.2%), Make (46.8%)
    • +
    • 📚 Documentation: Text (100.0%)
    • +
    • 📊 Commits: 28
    • +
    • 📈 Lines of Code: 124
    • +
    • 📄 Lines of Documentation: 75
    • +
    • 📅 Development Period: 2010-11-05 to 2021-11-05
    • +
    • 🔥 Recent Activity: 4248.5 days (avg. age of last 42 commits)
    • +
    • ⚖️ License: No license found
    • +
    • 🏷️ Latest Release: 1.0.2 (2014-06-22)
    • +

    +⚠️ **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.
    +
    +**cpuinfo** is a small command-line utility that provides a human-readable summary of CPU information on Linux systems. It parses /proc/cpuinfo using AWK to extract and display key processor details including the CPU model, cache size, number of physical processors, cores, and whether hyper-threading is enabled. The tool calculates total CPU frequency and bogomips across all cores, making it easier to understand complex multi-core and multi-processor configurations at a glance.
    +
    +The implementation is remarkably simple - a single shell script that uses GNU AWK to parse the kernel's CPU information and format it into a clear, structured output. It's particularly useful for system administrators and developers who need to quickly understand CPU topology, especially on servers with multiple processors or complex threading configurations where the raw /proc/cpuinfo output can be overwhelming.
    +
    +View on Codeberg
    +View on GitHub
    +
    +---
    +

    perldaemon



      @@ -1997,7 +1947,7 @@ END
    • 📊 Commits: 110
    • 📈 Lines of Code: 614
    • 📅 Development Period: 2011-02-05 to 2022-04-21
    • -
    • 🔥 Recent Activity: 4324.8 days (avg. age of last 42 commits)
    • +
    • 🔥 Recent Activity: 4328.1 days (avg. age of last 42 commits)
    • ⚖️ License: Custom License
    • 🏷️ Latest Release: v1.4 (2022-04-29)

    @@ -2010,21 +1960,17 @@ END View on Codeberg
    View on GitHub

    -Perl from lib/PerlDaemon/RunModules.pm:
    +Perl from lib/PerlDaemonModules/ExampleModule2.pm:

    -sub new ($$) {
    +sub new ($$$) {
       my ($class, $conf) = @_;
     
       my $self = bless { conf => $conf }, $class;
    +  $self->{counter} = 0;
     
    -  my $modulesdir = $conf->{'daemon.modules.dir'};
    -  my $logger = $conf->{logger};
    -  my %loadedmodules;
    -  my %scheduler;
    -
    -  if (-d $modulesdir) {
    -    $logger->logmsg("Loading modules from $modulesdir");
    +  return $self;
    +}
     

    ---
    @@ -2038,7 +1984,7 @@ sub new ($$) {
  • 📈 Lines of Code: 122
  • 📄 Lines of Documentation: 10
  • 📅 Development Period: 2011-01-27 to 2014-06-22
  • -
  • 🔥 Recent Activity: 4655.8 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4659.1 days (avg. age of last 42 commits)
  • ⚖️ License: No license found
  • 🏷️ Latest Release: v0.2 (2011-01-27)

  • @@ -2084,7 +2030,7 @@ function read_config_values(config_file) {
  • 📈 Lines of Code: 720
  • 📄 Lines of Documentation: 6
  • 📅 Development Period: 2008-06-21 to 2021-11-03
  • -
  • 🔥 Recent Activity: 4718.5 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 4721.8 days (avg. age of last 42 commits)
  • ⚖️ License: Custom License
  • 🏷️ Latest Release: v0.3 (2009-02-08)

  • @@ -2139,7 +2085,7 @@ public SPrefs(Component parent, HashMap<String,String> options) {
  • 📈 Lines of Code: 17380
  • 📄 Lines of Documentation: 947
  • 📅 Development Period: 2009-02-07 to 2021-05-01
  • -
  • 🔥 Recent Activity: 5349.2 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 5352.5 days (avg. age of last 42 commits)
  • ⚖️ License: GPL-2.0
  • 🏷️ Latest Release: v0.1 (2009-02-08)

  • @@ -2156,18 +2102,13 @@ public SPrefs(Component parent, HashMap<String,String> options) { View on Codeberg
    View on GitHub

    -Java from sources/client/helper/DateSpinner.java:
    +Java from sources/client/inputforms/CreateNewEvent.java:

    -private void initComponents() {
    -    setLayout(new FlowLayout(FlowLayout.LEFT, 4, 4));
    +private final static long serialVersionUID = 1L;
     
    -    spinnerDateModel = new SpinnerDateModel(date, null, null, Calendar.MONTH);
    -    JSpinner jSpinner = new JSpinner(spinnerDateModel);
    -    new JSpinner.DateEditor(jSpinner, "MM/yy");
    -
    -    add(jSpinner);
    -}
    +private final static String[] labels =
    +    { "Description: ", "Category: ", "Place: ", "Yearly: ", "Date: "};
     

    ---
    @@ -2181,7 +2122,7 @@ private void initComponents() {
  • 📈 Lines of Code: 67884
  • 📄 Lines of Documentation: 127
  • 📅 Development Period: 2008-05-15 to 2014-06-30
  • -
  • 🔥 Recent Activity: 5369.5 days (avg. age of last 42 commits)
  • +
  • 🔥 Recent Activity: 5372.7 days (avg. age of last 42 commits)
  • ⚖️ License: GPL-2.0
  • 🏷️ Latest Release: yhttpd-0.7.2 (2013-04-06)

  • @@ -2198,40 +2139,6 @@ private void initComponents() {
    ---

    -

    vs-sim


    -
    -
      -
    • 💻 Languages: Java (98.6%), Shell (0.8%), XML (0.4%)
    • -
    • 📚 Documentation: LaTeX (98.4%), Text (1.4%), Markdown (0.2%)
    • -
    • 📊 Commits: 411
    • -
    • 📈 Lines of Code: 14582
    • -
    • 📄 Lines of Documentation: 2903
    • -
    • 📅 Development Period: 2008-05-15 to 2022-04-03
    • -
    • 🔥 Recent Activity: 5385.5 days (avg. age of last 42 commits)
    • -
    • ⚖️ License: Custom License
    • -
    • 🏷️ Latest Release: v1.0 (2008-08-24)
    • -

    -⚠️ **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.
    -
    -vs-sim screenshot
    -
    -VS-Sim is an open-source distributed systems simulator written in Java, developed as a diploma thesis at Aachen University of Applied Sciences. It provides a visual environment for simulating and understanding distributed system algorithms including consensus protocols (one-phase/two-phase commit), time synchronization (Berkeley, Lamport, vector clocks), and communication patterns (multicast, broadcast, reliable messaging). The simulator is useful for educational purposes, allowing students and researchers to visualize complex distributed system concepts through interactive simulations.
    -
    -The implementation features a modular architecture with separate packages for core processes, events, protocols, and visualization. It includes pre-built protocol implementations, a GUI-based simulator with start/pause/reset controls, serialization support for saving simulations, and comprehensive time modeling systems. The codebase demonstrates clean separation of concerns with abstract base classes for extensibility and a plugin-like protocol system for easy addition of new distributed algorithms.
    -
    -View on Codeberg
    -View on GitHub
    -
    -Java from sources/exceptions/VSNegativeNumberException.java:
    -
    -
    -public class VSNegativeNumberException extends Exception {
    -    private static final long serialVersionUID = 1L;
    -}
    -
    -
    ----
    -

    hsbot



      @@ -2239,7 +2146,7 @@ public class VSNegativeNumberException extends Exception {
    • 📊 Commits: 80
    • 📈 Lines of Code: 601
    • 📅 Development Period: 2009-11-22 to 2011-10-17
    • -
    • 🔥 Recent Activity: 5444.8 days (avg. age of last 42 commits)
    • +
    • 🔥 Recent Activity: 5448.1 days (avg. age of last 42 commits)
    • ⚖️ License: Custom License
    • 🧪 Status: Experimental (no releases yet)

    @@ -2252,19 +2159,19 @@ public class VSNegativeNumberException extends Exception { View on Codeberg
    View on GitHub

    -Haskell from HsBot/Plugins/MessageCounter.hs:
    +Haskell from HsBot/Plugins/PrintMessages.hs:

    -module HsBot.Plugins.MessageCounter (makeMessageCounter) where
    +module HsBot.Plugins.PrintMessages (makePrintMessages) where
     
     import HsBot.Plugins.Base
     
     import HsBot.Base.Env
     import HsBot.Base.State
     
    -import HsBot.IRC.User
    -
    -update user = user { userMessages = 1 + userMessages user }
    +printMessages :: CallbackFunction
    +printMessages str sendMessage env@(Env state _) = do
    +   putStrLn $ (currentChannel state) ++ " "
     

    ---
    @@ -2272,13 +2179,13 @@ update user = user { userMessages = 1 + userMessages user }

    fype



      -
    • 💻 Languages: C (71.2%), C/C++ (20.7%), HTML (6.6%), Make (1.5%)
    • -
    • 📚 Documentation: Text (60.3%), LaTeX (39.7%)
    • +
    • 💻 Languages: C (72.1%), C/C++ (20.7%), HTML (5.7%), Make (1.5%)
    • +
    • 📚 Documentation: Text (71.3%), LaTeX (28.7%)
    • 📊 Commits: 99
    • -
    • 📈 Lines of Code: 8954
    • -
    • 📄 Lines of Documentation: 1432
    • -
    • 📅 Development Period: 2008-05-15 to 2014-06-30
    • -
    • 🔥 Recent Activity: 5831.5 days (avg. age of last 42 commits)
    • +
    • 📈 Lines of Code: 10196
    • +
    • 📄 Lines of Documentation: 1741
    • +
    • 📅 Development Period: 2008-05-15 to 2021-11-03
    • +
    • 🔥 Recent Activity: 5609.9 days (avg. age of last 42 commits)
    • ⚖️ License: Custom License
    • 🧪 Status: Experimental (no releases yet)

    @@ -2291,19 +2198,28 @@ update user = user { userMessages = 1 + userMessages user } View on Codeberg
    View on GitHub

    -C from src/core/scanner.h:
    +---

    -
    -typedef struct {
    -   int i_current_line_nr;
    -   int i_current_pos_nr;
    -   int i_num_tokenends;
    -   char *c_filename;
    -   char *c_codestring;
    -   FILE *fp;
    -   List *p_list_token;
    -   TokenType tt_last;
    -
    +

    vs-sim


    +
    +
      +
    • 📚 Documentation: Markdown (100.0%)
    • +
    • 📊 Commits: 411
    • +
    • 📈 Lines of Code: 0
    • +
    • 📄 Lines of Documentation: 7
    • +
    • 📅 Development Period: 2008-05-15 to 2015-05-23
    • +
    • 🔥 Recent Activity: 5809.1 days (avg. age of last 42 commits)
    • +
    • ⚖️ License: No license found
    • +
    • 🏷️ Latest Release: v1.0 (2008-08-24)
    • +

    +⚠️ **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.
    +
    +VS-Sim is an open-source distributed systems simulator written in Java, developed as a diploma thesis at Aachen University of Applied Sciences. It provides a visual environment for simulating and understanding distributed system algorithms including consensus protocols (one-phase/two-phase commit), time synchronization (Berkeley, Lamport, vector clocks), and communication patterns (multicast, broadcast, reliable messaging). The simulator is useful for educational purposes, allowing students and researchers to visualize complex distributed system concepts through interactive simulations.
    +
    +The implementation features a modular architecture with separate packages for core processes, events, protocols, and visualization. It includes pre-built protocol implementations, a GUI-based simulator with start/pause/reset controls, serialization support for saving simulations, and comprehensive time modeling systems. The codebase demonstrates clean separation of concerns with abstract base classes for extensibility and a plugin-like protocol system for easy addition of new distributed algorithms.
    +
    +View on Codeberg
    +View on GitHub