ibus VS https-bot

Compare ibus vs https-bot and see what are their differences.

ibus

Intelligent Input Bus for Linux/Unix (by ibus)

https-bot

Find http urls that can be safely replaced by https url (by fishy)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
ibus https-bot
23 8
831 1
1.1% -
8.9 5.4
8 days ago about 3 years ago
C Starlark
GNU Lesser General Public License v3.0 only BSD 3-clause "New" or "Revised" License
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.

ibus

Posts with mentions or reviews of ibus. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-01.
  • From xz to ibus: more questionable tarballs
    5 projects | news.ycombinator.com | 1 Apr 2024
    1.5.29-rc2 was tagged on 9 Nov 2023 [1] and in did not contain "N_("CJK Unified Ideographs Extension I")," in src/ibusunicodegen.h [2].

    Commit 228f0a77b2047ade54e132bab69c0c03f0f41aae from 28 Feb 2023 introduced this change instead. It's the same person who tagged 1.5.29-rc2 and committed 228f0a77b2047ade54e132bab69c0c03f0f41aae which is typically an indication the maintainer tar'd their checked out git folder and accidentally included changes not get committed.

    [1] https://github.com/ibus/ibus/releases/tag/1.5.29-rc2

    [2] https://github.com/ibus/ibus/blob/0ad8e77bd36545974ad8acd0a5...

    [2] https://github.com/ibus/ibus/commit/228f0a77b2047ade54e132ba...

  • gtk+-2.24.33_2 in transaction breaks installed pkg `ibus-1.5.28_2
    1 project | /r/voidlinux | 30 Jun 2023
    On https://github.com/ibus/ibus we can see gtk+ are probably only need for ibus-setup. I would like help to be sure i not miss any step.
  • The reality of Wayland input methods in 2022 (2022)
    3 projects | news.ycombinator.com | 26 May 2023
    I also know input methods work great in Ubuntu (Gnome Wayland) because Gnome supports ibus.

    But the article is specifically about incompatibility of input methods among different DEs: Gnome, KDE, wlroots-based environments such as Sway and Hyprland.

    After many years, ibus still doesn’t work with wlroots: https://github.com/ibus/ibus/issues/2182

    The list of recommended IMEs on Sway are all WIP: https://github.com/swaywm/sway/wiki/Useful-add-ons-for-sway#...

    Most people use fcitx5 with Sway because fcitx5 and Sway both support input method unstable v2. But the article explains that v2 is still not universally supported among wayland DEs, and that’s why it’s problematic.

  • [Steam Gaming] - Player keeps moving in one direction even when direction key not pressed
    1 project | /r/voidlinux | 18 Apr 2023
    Have no idea what the daemon does practically, here is the GitHub page.
  • Fedora Workstation 38 Is Shaping Up To Be Another Fantastic Release
    2 projects | /r/Fedora | 15 Mar 2023
  • Fedora 38 Beta Released
    2 projects | /r/Fedora | 14 Mar 2023
    The F38 beta is currently affected by two (mostly gaming-related) issues that you should be aware of: - https://gitlab.gnome.org/GNOME/mutter/-/issues/2678 -> a lot of SDL-based games have their fullscreen mode broken. The issue is bisected. - https://github.com/ibus/ibus/issues/2480 -> Keyboard input sometimes gets stuck. Issue has already been identified and we're waiting for an ibus release.
  • Missing keyboard events with X11 (inc. Wine) with ibus 1.5.28
    2 projects | /r/linux_gaming | 8 Mar 2023
  • Introducing the common input method
    1 project | /r/linux | 28 Jan 2023
    Also, to add to what u/Pizza-Driver said, it seems that ibus is not yet interoperable with the protocol used by Wayland display servers based on wlroots.
  • What does "Super+." do?
    1 project | /r/gnome | 6 Oct 2022
    I meant ctrl+., but it looks like ibus recently changed their emoji input shortcut back to super+., so the gtk emoji picker should be available via ctrl+. again without requiring changes: https://github.com/ibus/ibus/commit/1520c39d0d6036da725fcecd932883be3f3d3575
  • Disable Super+Period default behavior
    1 project | /r/gnome | 31 Aug 2022
    Looks like it was changed here: https://github.com/ibus/ibus/commit/1520c39d0d6036da725fcecd932883be3f3d3575

https-bot

Posts with mentions or reviews of https-bot. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-04.
  • Show HN: I wrote an HN bot to suggest HTTPS url when people post HTTP URLs
    4 projects | news.ycombinator.com | 4 Apr 2021
    It's inspired by this comment I made: https://news.ycombinator.com/item?id=26599746.

    I actually saw several comments with HTTP URL posted, and that was the only one I bothered to comment on. So I thought that this is something better suited for bots than human.

    I hacked this together over yesterday and today: https://github.com/fishy/https-bot.

    Basically it uses the Firebase API (https://github.com/HackerNews/API) to find comments with HTTP URLs in them, try the HTTPS version, compare the contents, post back a comment if the contents are more than 95% similar.

    The "95% similar" part was actually the first part I wrote in the code. At first I tried a few existing go packages implementing diff/lcs, but most of them was quite slow and does a lot of allocations when I'm comparing two randomly generated 10KiB blobs, so I wrote my own (https://pkg.go.dev/github.com/fishy/https-bot/similarity), which is optimized for space (it does almost no allocations), and it's also faster because allocations are slow. (I know this is an unfair comparison that most of the existing implementations need to give you an output that can be used to reconstruct the two blobs back, so at least some of their allocations are required and unavoidable)

    I also wrote a bug that it would find the same HTTP url in every run and post the same comment over and over again. My apologize to dang or whoever dealt with it (or maybe the system is good enough that it blocked those repetitive comments automatically).

    In the end it successfully made 6 comments across ~4 hours (not including the repetitive ones). All of those comments are flagged (likely due to hn policy), https://news.ycombinator.com/item?id=26692588 is the only one that's still visible to other users at the time of writing, if you are curious.

    I just killed it completely from the request of dang. Although it only lived for a few hours, it's still a fun exercise. Maybe I'll convert it into a reddit bot next? Who knows.

  • A Mathematical Keyboard Layout (2018)
    10 projects | news.ycombinator.com | 4 Apr 2021
    Thank you for the feedback. I added FAQ to the README and answered this question: https://github.com/fishy/https-bot/blob/main/README.md#this-...
  • Show HN: Curated by AI – Virtual Art Space
    1 project | news.ycombinator.com | 4 Apr 2021
  • Reflections on Relativity
    1 project | news.ycombinator.com | 4 Apr 2021
  • A Critique of Common Lisp (1984) [pdf]
    1 project | news.ycombinator.com | 4 Apr 2021
  • Connect with like-minded professionals via audio, video and in-person meetups
    1 project | news.ycombinator.com | 4 Apr 2021
  • The Simtel CD Collection (1994-2001)
    1 project | news.ycombinator.com | 4 Apr 2021

What are some alternatives?

When comparing ibus and https-bot you can also consider the following projects:

fcitx - A Flexible Input Method Framework

https-everywhere - A browser extension that encrypts your communications with many websites that offer HTTPS but still allow unencrypted connections.

fcitx5 - maybe a new fcitx.

Conkey - A keyboard layout for conlangers

rofimoji - Emoji, unicode and general character picker for rofi and rofi-likes

espanso - Cross-platform Text Expander written in Rust

sway - i3-compatible Wayland compositor

yabai - A tiling window manager for macOS based on binary space partitioning

ScienceNotes - Just a keyboard for science notes on a Mac

void-packages - The Void source packages collection

osxkb - Makes keyboard layouts for OSX