• 0 Posts
  • 27 Comments
Joined 3 years ago
cake
Cake day: October 3rd, 2021

help-circle





  • It could, but not necessarily.

    char **args can just mean you have a pointer which points to an address, and at that address, you can get a second address. Follow the second address, there is a char saved there.

    On the other hand, char *args[] means " follow this address to find a list of characters".


  • I used to use Gboard for Cantonese input. I downloaded fcitx5 reading your comment and tried it for some time. There are some features noticeably missing compared to Gboard.

    • top numeric row
    • single-hand mode
    • simplified and traditional characters selection#

    # Found it. It’s in the settings bar at the top of the typing area. Click it open and go deep inside it.

    What Gboard and fcitx5 both don’t have for Jyutping input is glide typing. I wish fcitx5 have it because it is really what could make me switch and not look back. Gboard in general has better finger tap detection/correction because duh Google had more data to train on. But I will definitely start using fcitx5 because being open source is sufficient for me to switch.

    For languages that isn’t supported by its plugins like Japanese, I have to keep using Gboard though.





  • Rebasing is for advanced git users who knows what he’s doing. If one does not know how to use it or not feeling comfortable in general, he can happily take his own code and try to merge it into the latest version instead. No one is judging.

    For the rest of the world where projects are open-source, more often than not, not those projects inside a corporation where only the team lead is making decisions, it’s a powerful tool to settle down conflicts sort out history.

    One does not need to change the history again, if he’s not comfortable with it. Just use git as if it’s centralised VCS like SVN. No big deal. In fact, in corporations you do. There only needs to be one person who manages the repository.