Threads for grepsedawk

    1. 3

      This post doesn’t address another frequent problem I’ve stumbled into, which is forgetting places where you reference a deleted relation in something like a view. E.g., if you render page that displays customer.customer_type.description, it’s super easy to forget there’s no referential integrity to protect you when you soft-delete a customer_type (to prevent it from future-use), and this will blow up when you try to dereference nil to get the description when ActiveRecord tries to fetch the customer_type it doesn’t “see” unless you unscope it first.

      It’s a programming error that should be caught in advance, but I’ve seen this happen way too many times.

      1. 1

        Wait, whoa… default_scope applies to the joins of all queries too? TIL! I’ll have to look into this and make an edit

      2. 1

        This was the major reason that default_scope bit me in a rails project.

    2. 2

      I agree that infinite ranges are best!
      However, I would order the other two differently, or perhaps label them equals.

      Contributors to Rails have repeatedly stated that Arel is considered an internal, private API, and it is not recommended for use in application code. To my knowledge, they also do not explicitly call out changes to Arel in release notes. I realize their pleading gets little attention. They also know their pleading gets little attention. That does not make it a good idea to ignore those pleas.

      In the case of raw SQL for a comparison operator, the two proposed drawbacks are less impactful (in my opinion) than requests from the Rails team.

      Yes, raw SQL is not preferable in a general sense. It also technically has a higher risk of injection, in general cases. However, when used with keyword interpolation, the values will ultimately run through ActiveRecord::ConnectionAdapters::Quoting#quote. If your Ruby Date object (or an ActiveSupport::TimeWithZone object, or any other comparable database type with a Ruby equivalent) would cause an issue in that code, we’ve all got much bigger problems than just less-than and greater-than operators.

      With regards to “database adapter compatibility”, I question whether less-than and greater-than are, in reality, not portable across different SQL databases? I am ignorant where this might be so, and would be happy to learn of those cases.

      But if so, is that transition between two database engines (with such wildly different comparison operators, and therefore presumably other differences?) more likely than changes to a private/internal API, or less likely? It’s a bet on one risk or another, I think either one can be said to be crappy bet in a general sense.

      In the case of these comparison operators (rather than “in general”), it feels like an incredibly minor difference, but one that leans toward the raw SQL. They are both changes which could bring pain. One of the changes you are possibly in of control of: Are you likely to change databases to one which does not support the > and < operators? The other change you do not control: does the Rails core team change something internal to Arel?

      1. 2

        I really really wish queries in ActiveRecord could be built like in Sequel. It’s so much nicer than Arel, which like you said you really shouldn’t be using in production anyway. Honestly, the only way to do anything relatively complex with the database in ActiveRecord involves string interpolation and sanitization. It’s the biggest complaint I have with the entire stack.

        1. 1

          I’ve had some success using interpolation with to_sql (which sanitizes for you).

          It’s still a bit yuck but it’s the least bad alternative I’ve found in rails.

        2. 1

          I have only used Sequel on one side project. I really, really enjoyed it, and wish I had the opportunity to use it at work. Alas, decisions made years ago about this-or-that ORM are not worth the literal business cost to undo at the expense of more impactful, revenue-driving features.

          One of the ideas of ActiveRecord in its early days, as stated by DHH himself, is not that SQL is bad and we should avoid writing it at all costs for some ideological reason. Instead his idea was that the simplest of SQL queries (e.g. a bunch of WHERE clauses with a LIMIT or JOIN thrown in) should be able to be expressed in very simple, application-native code. Not exactly his words, but something like that, as well as some comment about how ActiveRecord works very purposefully to let you write raw SQL when you feel you need to. If I could find the right Rails book I purchased once-upon-a-2010 I would find the exact quote, but I think the idea remains.

          Sequel is great, but I have not used it “in anger” to know where the warts are. ActiveRecord has warts, and I know where they are. Despite those, it is good enough in many cases, and in the cases where it is not, was explicitly built to allow the programmer an “out”, and to write SQL when they really need to.

          I have listened to the The Bike Shed podcast for many years running. During the era when Sean Griffin was a host, he was both paid to contribute to ActiveRecord full-time (I think?) and was building a new, separate ORM in Rust. Some of the discussions provided a very interesting lens into some of the tradeoffs in ActiveRecord: which were inherent, and which were just incidental choices or entrenched legacies that need not remain in an ideal world.

          EDIT: Followup thought. You really do need a mental model for ActiveRecord::Relation when using “ActiveRecord”. Something I contributed at work (and which I hope to open source somehow in 2020) was an extension (patch?) to the awesome_print gem that previews ActiveRecord::Relation more intelligently. After building it, I realized that both junior and mid-level engineers on my team did not completely grok ActiveRecord::Relation, and how that just being able to see bits of it splayed out, in chunks more discrete than just calling #to_sql, helped them feel more confident that what they were building was the right thing.

          1. 1

            The problem with interpolating to_sql or using any form of SQL strings is that ActiveRecord scopes can no longer be composed for any mildly more complicated/useful queries, especially if ActiveRecord tries to alias a sub-query one way or another as strings are exempt from aliasing. ActiveRecord doesn’t parse any SQL strings. This is a problem as you don’t know who or what will consume/compose queries with those scopes using SQL strings later. Changing a scope which is used in many contexts to use literal SQL becomes a very dangerous undertaking as it might break many of its consumers due to the above. So I’m with @colonelpanic on this one. IMO, Rails Core team should either embrace Arel and its direct use or maybe replace it with something better.

          2. 1

            The other thing I’ve had success with in rails: PostgreSQL supports updatable views.

            Turning a monster query into a view is a big, ugly undertaking - but so far I’ve only needed it after a project has become a success (at which point I don’t mind too much) and tends to happen to the least-churned tables (I’ve only had to modify these kind of views once or twice).

      2. 2

        Contributors to Rails have repeatedly stated that Arel is considered an internal, private API, and it is not recommended for use in application code.

        I have very little sympathy for this position because the official query interface is simply not adequate for even mildly complicated use-cases.

        I’ve been using Arel directly, and even patching in new features, for ten years. Can’t think of a time it’s ever been an issue.

        I will continue to use Arel until a better alternative presents itself. String interpolation is not a serious alternative.

      3. 1

        In Rails’ code, the core example of utilizing #arel_table is exactly greater_than: https://github.com/rails/rails/blob/c56d49c26636421afa4f088dc6d6e3c9445aa891/activerecord/lib/active_record/core.rb#L266

        The bigger concern with SQL injection is future developers adding into the string unsafe code, so avoiding them is preferable.

        As far as database compatibility, there are plenty of non-SQL database adapters available, and sticking to some form of Arel or built-in syntax, rather than SQL, keeps it more likely to translate to many different databases. It’s not “a must”, but it’s pretty sweet to swap out adapters on an app and have everything “Just work”

        1. 1

          As far as database compatibility, there are plenty of non-SQL database adapters available, and sticking to some form of Arel or built-in syntax, rather than SQL, keeps it more likely to translate to many different databases.

          I am highly skeptical that there are actually that many databases in use which wouldn’t be just as happy with the simpler greater-than/less-than formulations.

      4. 1

        With regards to “database adapter compatibility”, I question whether less-than and greater-than are, in reality, not portable across different SQL databases? I am ignorant where this might be so, and would be happy to learn of those cases.

        FWIW here are the ORM-to-SQL operator mappings for Django’s four built-in database backends:

        So if there’s a database where > and < aren’t the greater-than/less-than operators, it isn’t one of those four.

    3. 6

      Two words: Foam. Roller.

      1. 1

        Do you just roll out your lower back? Sides or hips maybe?

        1. 3

          I go very gently over my “upper” lower back, if its very bad pain then you need to focus on other areas. IT bands on the side of the thighs, upper back tension, and your ass are other areas to focus on!

          Foam Roller always hurts like a bitch when you start using it, but its a god send and once you get into it daily its easy and feels really good.

          1. 1

            Oh, I always avoided them because they hurt… I guess I’ll try

            1. 2

              It does hurt like a bitch at first, but once you get through the pain its damned amazing! I dont even need to do it daily, or even weekly anymore, a few times a month is all I need now.

        1. 2

          This is pretty close to what my physical therapist taught me: https://www.youtube.com/watch?v=MnWWDAsEfXk

        2. 1

          There’s actually tons of videos on YouTube on how to use foam rollers and other devices for stretching and helping sore muscles. Make sure to check the source - you don’t want some random giving you advice.

          1. 2

            There’s actually tons of videos on YouTube…

            Make sure to check the source - you don’t want some random giving you advice.

            I find that to be a tricky proposition. How do you know which one is good?

            1. 3

              My physiotherapists recommends the PreHab Guys for physical therapy ideas.

              I actually site on a gym ball when I’m not at my standing desk - and I’ve found that has been good for prevent back pain from sitting too long.

          2. 2

            Make sure to check the source - you don’t want some random giving you advice.

            I almost feel that’s what I’d be doing by following your 2 word advice…

            1. 1

              Haha! Well, there’s definitely a range of quality in YouTube. I guess it’s fairly hard to measure if you aren’t used to dealing with fitness types. My general rule of thumb is this: if the person in the video tells you to be gentle with your body, seems to represent a bigger brand than just themselves (say, a gym), and doesn’t try to sell you a particular brand of supplement, they are probably OKish.

              If they are pushing supplements, promising you can do 100 pull-ups if you just workout 10 minutes a day or pretend that their six pack is unrelated to their diet, then you want to stay away.

    4. 1

      Well, is it also true that a VA monitor panel would be definitely better than an IPS?

      1. 4

        IPS is a bit better for reading. If you’re gaming then VA is nicer.

    5. 2

      This just completely cracked me. Not just because it’s obviously wrong to inject data into customer’s traffic (it can break programs/computations that rely on a specific format), but because they just opted for the most stupid way of implementing it. If I understood correctly:

      • they do it on every request

      • it’s not an external script, so it can’t be easily cached nor blocked (via extension)

        1. 1

          Wait, apt repos aren’t https?

    6. 10

      One thing about your article that stood out to me was that you say this injected code breaks accessibility on websites. Unfortunately (depending on your viewpoint,) as far as I know in the US there are no enforceable legal standards to follow website accessibility outside of Section 508 which are bound to federal, state and local government websites.

      However website accessibility is protected as a civil issue, being that they shouldn’t discriminate; it would be interesting to see what result someone suing Comcast for injecting code into all HTTP requests that essentially discriminates against them due to a disability.

      1. 1

        Oooo that’s deep. Interesting insight!

    7. 0

      We all know Comcast is trash, however we won’t be able to change anything.

      1. 2

        Yeah, but I found lots of articles didn’t communicate at the “general public” level of the severity of what these things can cause – from a social and technical level.