wingo VS regex

Compare wingo vs regex and see what are their differences.

wingo

A fully-featured window manager written in Go. (by BurntSushi)

regex

An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs. (by rust-lang)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
wingo regex
7 91
981 3,355
- 1.4%
0.0 8.9
over 1 year ago 11 days ago
Go Rust
Do What The F*ck You Want To Public License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

wingo

Posts with mentions or reviews of wingo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-15.
  • Framework 13 with AMD Ryzen 7040 Series Makes for a Great Linux Laptop
    4 projects | news.ycombinator.com | 15 Nov 2023
    I've been using X11 on my Framework laptop for years. No desktop environment at all. Just my regulard old school window manager[1]. No KDE or GNOME. But also no XFCE.

    The only thing I had to do to get scaling working for me was set two environment variables[2].

    I was indeed worried about this when I bought the laptop. Prior to this, I avoided anything with resolutions higher than 1920x1200. But it turned out that everything mostly worked with a couple tweaks.

    I think the only real issue I've run into is `git gui`. As I understand it, the GUI toolkit it uses doesn't support scaling? Not sure. I ended up working around it by just increasing font sizes. I suppose this exposes the weakness that is probably impacting you: the scaling on my laptop is being done by the GUI toolkits, not the display server or compositor. (I don't always run a compositor, but when I do, I use `picom`. Mostly just to avoid tearing.)

    [1]: https://github.com/BurntSushi/wingo

    [2]: https://github.com/BurntSushi/dotfiles/blob/ea3a88e6160f4244...

  • Zv/9Problems: A Tiling Window Manager for Plan9
    2 projects | news.ycombinator.com | 5 Sep 2023
    I used Wingo (https://github.com/BurntSushi/wingo) for a while and it did the floating/tiling mix pretty well.

    I also used StumpWM (https://stumpwm.github.io/) for years, primarily in purely-tiling mode. The killer feature for me was that you (the user) define frames on the desktop, and then windows are placed into frames rather than resizing and re-jiggering everything whenever a new window opens.

  • This week in KDE: “More Wayland fixes”
    2 projects | news.ycombinator.com | 18 Mar 2023
    Yeah I remember activities from over a decade ago. I don't recall ever being able to get it to work right.

    I ended up writing my own WM instead: https://github.com/BurntSushi/wingo

  • Tauri reached 1.0
    2 projects | /r/rust | 16 Jun 2022
    That's why I went and wrote my own window manager that breaks this aspect of EWMH so that workspaces can be changed independently on each head: https://github.com/BurntSushi/wingo/
  • Rust Moderation Team Resigns
    17 projects | news.ycombinator.com | 22 Nov 2021
  • What DE/WM are using ?
    5 projects | /r/archlinux | 15 Aug 2021
    Wingo
  • Feature Request: What are the most important features for you?
    1 project | /r/framework | 28 Jul 2021
    Switching to a desktop environment is a no-go for me. (I wrote my own WM.) So I'm very likely going to be spending quite a bit of time trying to find a configuration that works for my eyes. I don't mind putting in that time, I'm just hoping that I can find something that works. But others might bounce off. This is actually why I have historically not purchased laptops with HiDPI displays, specifically to avoid dealing with this problem. I made an exception this time because there are so many other great aspects of the laptop.

regex

Posts with mentions or reviews of regex. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-24.
  • Zed is now open source
    26 projects | news.ycombinator.com | 24 Jan 2024
    The homepage has a benchmark that compares Zed's "insertion latency" to other editors, and this is the description:

    > Open input.rs at the end of line 21 in rust-lang/regex. Type z 10 times, measure how long it takes for each z to display since hitting the z key.

    Could someone clarify what that means? My interpretation of that was to go to https://github.com/rust-lang/regex/blob/master/regex-cli/arg... and start typing 'z' at the end of line 21, but that doesn't seem to make any sense. I guess that repo got refactored and those instructions are out of date?

  • CryptoFlow: Building a secure and scalable system with Axum and SvelteKit - Part 3
    3 projects | dev.to | 8 Jan 2024
    We also used the avenue to sluggify the question title. We used regex to fish out and replace all occurrences of punctuation and symbol characters with an empty string and using the itertools crate, we joined the words back together into a single string, where each word is separated by a hyphen ("-").
  • Command Line Rust is a great book
    4 projects | /r/rust | 8 Dec 2023
    Command-Line Rust taught me how to use crates like clap, assert_cmd, and regex. I felt lost before because I didn't know about Rust's ecosystem--which is arguably as important as the language itself. Also, looking up and comparing libraries is a tiring task! blessed.rs is nice but Command-Line Rust really saved me from analysis paralysis.
  • Common Rust Lifetime Misconceptions
    4 projects | news.ycombinator.com | 4 Dec 2023
    burntsushi actually regrets making regex replace return a Cow: https://github.com/rust-lang/regex/issues/676#issuecomment-6.... I’m glad it does, and wish it took an impl Into> there, for the reasons discussed in the issue, but burntsushi has a lot more experience of the practical outcomes of this. Just something more to think about.
  • Advent of Code 2023 is nigh
    19 projects | news.ycombinator.com | 1 Dec 2023
    I'm not familiar with the AoC problem. You might be able to. But RegexSet doesn't give you match offsets.

    You can drop down to regex-automata, which does let you do multi-regex search and it will tell you which patterns match[1]. The docs have an example of a simple lexer[2]. But... that will only give you non-overlapping matches.

    You can drop down to an even lower level of abstraction and get multi-pattern overlapping matches[3], but it's awkward. The comment there explains that I had initially tried to provide a higher level API for it, but was unsure of what the semantics should be. Getting the starting position in particular is a bit of a wrinkle.

    [1]: https://docs.rs/regex-automata/latest/regex_automata/meta/in...

    [2]: https://docs.rs/regex-automata/latest/regex_automata/meta/st...

    [3]: https://github.com/rust-lang/regex/blob/837fd85e79fac2a4ea64...

  • Text Showdown: Gap Buffers vs. Ropes
    3 projects | news.ycombinator.com | 9 Oct 2023
    It’s not quite that simple, but folks are working on it.

    https://github.com/rust-lang/regex/issues/425#issuecomment-1...

    https://github.com/helix-editor/helix/pull/211#issuecomment-...

  • Please ask questions (rust-lang/regex)
    1 project | /r/hypeurls | 30 Aug 2023
    1 project | news.ycombinator.com | 28 Aug 2023
  • ScripterC - Rust-lang set
    2 projects | /r/scripterc | 13 Aug 2023
    Dependencies used: - regex - unicode_reader - rust decimal - tokio
  • Regex Engine Internals as a Library
    5 projects | news.ycombinator.com | 5 Jul 2023
    https://www.cs.princeton.edu/courses/archive/fall19/cos226/l... and https://kean.blog/post/lets-build-regex are excellent introductions to implementing a (very) simplified regex engine: construct a nondetermistic finite state automaton for the regex, then perform a graph search on the resulting digraph; if the vertex corresponding to your end state is reachable, you have a match.

    I think this exercise is valuable for anyone writing regexes to not only understand that there's less magic than one might think, but also to visualize a bunch of balls bouncing along an NFA - that bug you inevitably hit in production due to catastrophic backtracking now takes on a physical meaning!

    Separately re: the OP, https://github.com/rust-lang/regex/issues/822 (and specifically BurntSushi's comment at the very end of the issue) adds really useful context to the paragraph in the OP about niche APIs: https://blog.burntsushi.net/regex-internals/#problem-request... - searching with multiple regexes simultaneously against a text is both incredibly complex and incredibly useful, and I can't wait to see what the community comes up with for this pattern!

What are some alternatives?

When comparing wingo and regex you can also consider the following projects:

team - Rust teams structure

re2 - modern regular expression syntax everywhere with a painless upgrade path [Moved to: https://github.com/SonOfLilit/kleenexp]

xgb - The X Go Binding is a low-level API to communicate with the X server. It is modeled on XCB and supports many X extensions.

node-re2 - node.js bindings for RE2: fast, safe alternative to backtracking regular expression engines.

Elm - Compiler for Elm, a functional language for reliable webapps.

zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

NCoC - No Code of Conduct: A Code of Conduct for Adults in Open Source Software

ngrams - (Read-only) Generate n-grams

pkgstats.archlinux.de - Arch Linux package statistics website

regex-benchmark - It's just a simple regex benchmark of different programming languages.

byteorder - Rust library for reading/writing numbers in big-endian and little-endian.

whatlang-rs - Natural language detection library for Rust. Try demo online: https://whatlang.org/