Just a small frog hopping from post to post. Because it may be Wednesday my Dudes!

Sometimes in German, sometimes in English.

  • 1 Post
  • 113 Comments
Joined 3 years ago
cake
Cake day: June 14th, 2023

help-circle

  • I speak German and I think you got it right regarding that difficult-to-translate line. The line is kind of odd.

    My theory is that they just needed something to rhyme on Diskussion. The words Diskussion and lohnen do not rhyme exactly. But in German lyric it is a common stylistic choice to omit or shorten a word’s ending from -en to -n. So the rhyme is more like Diskussion - lohn.



  • I am.sorry to hear this. But I feel your pain. A few years ago I had a phone where some apps just where buggy as hell for some reason. There are so many factors contributing to app stability on Android:

    • Android version
    • Possible customisations from the phone manufacturer (bloatware, battery optimisations etc.)
    • Phone hardware, especially working memory and CPU

    My current phone has 8 GB working memory and like 40 GB free memory available. It also runs a approx. five year old LineageOS installation, upgraded each year as stated on their website. Currently its LineageOS 22.2 (android 15).

    All of this may or may not have great impact on how well FF Android runs.


  • Maybe give Iceraven a try. Its a FF Android fork and works with lots of add ons that regular FF android does not offer for some reason.

    https://github.com/fork-maintainers/iceraven-browser

    Edit:

    To be clear, Iceraven does not magically make all add ons usable. But more than regular FF android anyway. From their Readme:

    Our goal is to be a close fork of the new Firefox for Android that seeks to provide users with more options, more opportunities to customize (including a broad extension library), and more information about the pages they visit and how their browsers are interacting with those pages.

    Notable features include:

    • about:config support
    • The ability to attempt to install a much longer list of add-ons than Mozilla’s Fenix version of Firefox accepts. Currently the browser queries this AMO collection Most of them will not work, because they depend on code that Mozilla is still working on writing in android-components, but you may attempt to install them. If you don’t see an add-on you want, you can request it.









  • This is basically one of the core ideas of Ruby: that you can read it like a story. Once you are used to reading it as “do X unless Y”, you will miss it in other languages. Note that I wrote Y, not Y is true. Because often Y is a statement that has meaning in itself.

    Example:

    # imagine that given_name is some text from user input
    
    # this is of course valid:
    user.name = given_name if !user.is_locked
    
    # but this reads more fluently:
    user.name = given_name unless user.is_locked
    

    Ruby also allows using ? as last character in method names, which is a convention for methods that return either true or false.

    Same goes for ! (the bang operator), that is commonly used to tell developers that there exists a non-bang version of the same method as well. The bang method is often the more strict version (e.g. raises an error instead of returning nil; or having side effects compared to the non-bang version).

    So the above example may be more commonly written like this:

    user.name = given_name unless user.locked?
    

    and the question mark makes you automatically adding is or has while reading: Set the user’s name to the given_name unless the user is locked

    Of course this is all by convention and you may also do it different. But that’s how most Ruby code is written.

    To stay consistent, lots of projects use RuboCop, which warns you on inconsistency based on your project’s settings.