Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TU
Posts
11
Comments
212
Joined
2 yr. ago

    • uBlock origin - block ad
    • Dark reader - add dark mode to every website
    • Tridactyl - keyboard navigation
    • Bitwarden - password manager
    • YouTube enhancer - add improvement to YT
    • SponsorBlock - block sponsor segment in YT video
    • Base16 theme - have gruvboxdark theme
  • In my experience. ORM has its limitations.

    You can only depend on ORM upto a point. Beyond that you have to go use Arel (relationship algebra in Ruby), execute prepared SQL statement, trigger and functions.

    I use ORM for concise, easier to read and maintainable code. e.g. joining three or more tables in SQL is cumbersum and verbose. Writing related multiple query is too time consuming, etc.

    I learnt from relational algebra, SQL, ORM to vendor specific SQL.