Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. I am writing a blog post about why it is bad to use AI.

I am writing a blog post about why it is bad to use AI.

Scheduled Pinned Locked Moved Uncategorized
36 Posts 20 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • glyph@mastodon.socialG glyph@mastodon.social

    serious question though, is there a requests (or httpx or treq or whatever) compatible selenium driver so that I can write a simple Python CLI that just says "give me URL please" and Safari does all the HTTP traffic so it can get the request body with all my ridiculous CAPTCHAs and news website logins in it

    coderanger@cloudisland.nzC This user is from outside of this forum
    coderanger@cloudisland.nzC This user is from outside of this forum
    coderanger@cloudisland.nz
    wrote last edited by
    #4

    @glyph ytdlp has some underlying features like this, might be a thing you could import but probably not a public api 🙂

    nicr9@techhub.socialN 1 Reply Last reply
    0
    • coderanger@cloudisland.nzC coderanger@cloudisland.nz

      @glyph ytdlp has some underlying features like this, might be a thing you could import but probably not a public api 🙂

      nicr9@techhub.socialN This user is from outside of this forum
      nicr9@techhub.socialN This user is from outside of this forum
      nicr9@techhub.social
      wrote last edited by
      #5

      @coderanger @glyph yeah! There's a feature where you point it at your browser's state directory (which for Firefox you can find in about:profiles) and it can borrow all of your cookies. I've definitely wanted to figure out how to quickly implement this in scripts in the past... But then my attention span jumps out a window...

      1 Reply Last reply
      0
      • glyph@mastodon.socialG glyph@mastodon.social

        serious question though, is there a requests (or httpx or treq or whatever) compatible selenium driver so that I can write a simple Python CLI that just says "give me URL please" and Safari does all the HTTP traffic so it can get the request body with all my ridiculous CAPTCHAs and news website logins in it

        glyph@mastodon.socialG This user is from outside of this forum
        glyph@mastodon.socialG This user is from outside of this forum
        glyph@mastodon.social
        wrote last edited by
        #6

        we live in hell but at least PyPI works in hell

        eichin@mastodon.mit.eduE 1 Reply Last reply
        0
        • glyph@mastodon.socialG glyph@mastodon.social

          (I did not actually do this. But it is an advertised feature of chrome, and I am pretty sure it would "work", as much as any AI-based solution "works".)

          phil@fed.bajsicki.comP This user is from outside of this forum
          phil@fed.bajsicki.comP This user is from outside of this forum
          phil@fed.bajsicki.com
          wrote last edited by
          #7

          @glyph@mastodon.social I can confirm this works, I use this at work occasionally to ensure our documentation is complete.

          1 Reply Last reply
          0
          • glyph@mastodon.socialG glyph@mastodon.social

            serious question though, is there a requests (or httpx or treq or whatever) compatible selenium driver so that I can write a simple Python CLI that just says "give me URL please" and Safari does all the HTTP traffic so it can get the request body with all my ridiculous CAPTCHAs and news website logins in it

            jay@oldos.meJ This user is from outside of this forum
            jay@oldos.meJ This user is from outside of this forum
            jay@oldos.me
            wrote last edited by
            #8

            @glyph we needed to do this for ironic, originally implemented it as selenium but switched to a Firefox extension

            jay@oldos.meJ 1 Reply Last reply
            0
            • jay@oldos.meJ jay@oldos.me

              @glyph we needed to do this for ironic, originally implemented it as selenium but switched to a Firefox extension

              jay@oldos.meJ This user is from outside of this forum
              jay@oldos.meJ This user is from outside of this forum
              jay@oldos.me
              wrote last edited by
              #9

              @glyph https://opendev.org/openstack/ironic/src/branch/master/tools/vnc-container/extension

              glyph@mastodon.socialG 1 Reply Last reply
              0
              • jay@oldos.meJ jay@oldos.me

                @glyph https://opendev.org/openstack/ironic/src/branch/master/tools/vnc-container/extension

                glyph@mastodon.socialG This user is from outside of this forum
                glyph@mastodon.socialG This user is from outside of this forum
                glyph@mastodon.social
                wrote last edited by
                #10

                @jay I need safari specifically and it looks like selenium works well enough

                1 Reply Last reply
                0
                • glyph@mastodon.socialG glyph@mastodon.social

                  we live in hell but at least PyPI works in hell

                  eichin@mastodon.mit.eduE This user is from outside of this forum
                  eichin@mastodon.mit.eduE This user is from outside of this forum
                  eichin@mastodon.mit.edu
                  wrote last edited by
                  #11

                  @glyph heh, my side project this week was the reverse of that - selenium to "run" a page (lots of javascript based partial execution) and click a button (which rewrote part of the page without reloading)... and then extract a URL from that and use requests to cleanly get a Location: header out (basically forcing the service to canonicalize itself for me.)

                  1 Reply Last reply
                  0
                  • glyph@mastodon.socialG glyph@mastodon.social

                    serious question though, is there a requests (or httpx or treq or whatever) compatible selenium driver so that I can write a simple Python CLI that just says "give me URL please" and Safari does all the HTTP traffic so it can get the request body with all my ridiculous CAPTCHAs and news website logins in it

                    cthos@mastodon.cthos.devC This user is from outside of this forum
                    cthos@mastodon.cthos.devC This user is from outside of this forum
                    cthos@mastodon.cthos.dev
                    wrote last edited by
                    #12

                    @glyph Yeah, halfway through this thread I was going to suggest Selenium so looks like you got it.

                    1 Reply Last reply
                    0
                    • glyph@mastodon.socialG glyph@mastodon.social

                      serious question though, is there a requests (or httpx or treq or whatever) compatible selenium driver so that I can write a simple Python CLI that just says "give me URL please" and Safari does all the HTTP traffic so it can get the request body with all my ridiculous CAPTCHAs and news website logins in it

                      mborus@mastodon.socialM This user is from outside of this forum
                      mborus@mastodon.socialM This user is from outside of this forum
                      mborus@mastodon.social
                      wrote last edited by
                      #13

                      @glyph instead of Selenium, you may want to check out Playwright. https://pypi.org/project/playwright/

                      It allows browser automation in a very pythonic way - also headless. It installs its own Chrome/Firefox/Safari and avoids any configuration you done to your browser installs.

                      bitprophet@social.coopB 1 Reply Last reply
                      0
                      • mborus@mastodon.socialM mborus@mastodon.social

                        @glyph instead of Selenium, you may want to check out Playwright. https://pypi.org/project/playwright/

                        It allows browser automation in a very pythonic way - also headless. It installs its own Chrome/Firefox/Safari and avoids any configuration you done to your browser installs.

                        bitprophet@social.coopB This user is from outside of this forum
                        bitprophet@social.coopB This user is from outside of this forum
                        bitprophet@social.coop
                        wrote last edited by
                        #14

                        @mborus @glyph this, Playwright has been really nice to use in my experience!

                        1 Reply Last reply
                        0
                        • glyph@mastodon.socialG glyph@mastodon.social

                          I am writing a blog post about why it is bad to use AI. It is extremely heavily sourced. I have a tedious automation problem formatting my citations. No problem, I think. I will write a computer program. The computer program does not work, because websites are blocking simple computer programs in an effort to block AI. Solution? Simple. Browser comes with AI embedded, browses like a human, has all my cookies. Just ask the AI. It sails through the primitive anti-AI measures easily.

                          mcc@mastodon.socialM This user is from outside of this forum
                          mcc@mastodon.socialM This user is from outside of this forum
                          mcc@mastodon.social
                          wrote last edited by
                          #15

                          @glyph When I think about "AI" I often think about how we had cities built to be navigated by people, and then we rebuilt the cities to be more easily navigated by cars, and now people without cars can't navigate the cities because we specifically designed them to require cars

                          paul_ipv6@infosec.exchangeP wyatt_h_knott@mstdn.socialW fayedrake@furry.engineerF lne@social.praxis.nycL 4 Replies Last reply
                          1
                          0
                          • glyph@mastodon.socialG glyph@mastodon.social

                            I am writing a blog post about why it is bad to use AI. It is extremely heavily sourced. I have a tedious automation problem formatting my citations. No problem, I think. I will write a computer program. The computer program does not work, because websites are blocking simple computer programs in an effort to block AI. Solution? Simple. Browser comes with AI embedded, browses like a human, has all my cookies. Just ask the AI. It sails through the primitive anti-AI measures easily.

                            nom@mk.spook.socialN This user is from outside of this forum
                            nom@mk.spook.socialN This user is from outside of this forum
                            nom@mk.spook.social
                            wrote last edited by
                            #16

                            @glyph@mastodon.social Rather than writing the browser to accept the AI, write the browser to be controlled from BASH + ZSH. Then we all can use it to our advantage. Not just the UI.

                            Web browsers are really lame... very old tech with piles of the worst engineering on top the world has ever seen. Worse than Windows 95/98. Worse than MacOS8. Worse than CICS+RACF. Worst product ever constructed.

                            But if you build the control mechanism for the web you can still redesign the web clients to be something decent. So that's the way I think it should be done... rather than an "AI interface for the web."

                            1 Reply Last reply
                            0
                            • mcc@mastodon.socialM mcc@mastodon.social

                              @glyph When I think about "AI" I often think about how we had cities built to be navigated by people, and then we rebuilt the cities to be more easily navigated by cars, and now people without cars can't navigate the cities because we specifically designed them to require cars

                              paul_ipv6@infosec.exchangeP This user is from outside of this forum
                              paul_ipv6@infosec.exchangeP This user is from outside of this forum
                              paul_ipv6@infosec.exchange
                              wrote last edited by
                              #17

                              @mcc @glyph

                              an important lesson.

                              the flip side is that cities in the netherlands, in france, etc. have reversed this, reclaimed areas as more suitable for pedestrians and bikes. let's see if we can't do some trend reversal in tech too.

                              tarmil@mastodon.tarmil.frT 1 Reply Last reply
                              0
                              • mcc@mastodon.socialM mcc@mastodon.social

                                @glyph When I think about "AI" I often think about how we had cities built to be navigated by people, and then we rebuilt the cities to be more easily navigated by cars, and now people without cars can't navigate the cities because we specifically designed them to require cars

                                wyatt_h_knott@mstdn.socialW This user is from outside of this forum
                                wyatt_h_knott@mstdn.socialW This user is from outside of this forum
                                wyatt_h_knott@mstdn.social
                                wrote last edited by
                                #18

                                @mcc @glyph and now even the robot cars have problems driving around the cities

                                1 Reply Last reply
                                0
                                • fayedrake@furry.engineerF fayedrake@furry.engineer

                                  @mcc @glyph @mhoye I had that argument with a previous employer over mob programming.

                                  They were trying to make everyone do it, it was burning some of us out.

                                  Their response was “you can just not do it and the rest of the team will do it without you”.

                                  Well, oh Einstein of managers, what do you think is going to happen when all the tools and communication structures the team uses assume mob programming, just like is required to do it properly? It’s not a real option to just not engage. You’ve just forced several of your staff out of a job because it was that or burning them out within weeks, and you’ve managed to paint it as their fault.

                                  Ever since then I’ve been incredibly cynical about any “cultural shifts”. If it’s optional then it’s totally not optional they just don’t want to take the responsibility.

                                  fayedrake@furry.engineerF This user is from outside of this forum
                                  fayedrake@furry.engineerF This user is from outside of this forum
                                  fayedrake@furry.engineer
                                  wrote last edited by
                                  #19

                                  @mcc @glyph @mhoye But yes. One of the contributing factors to the AI issue is that Google Search has been purposely been made worse. Right now the drive to make people use Gemini only doubles down on that incentive.

                                  1 Reply Last reply
                                  0
                                  • mcc@mastodon.socialM mcc@mastodon.social

                                    @glyph When I think about "AI" I often think about how we had cities built to be navigated by people, and then we rebuilt the cities to be more easily navigated by cars, and now people without cars can't navigate the cities because we specifically designed them to require cars

                                    fayedrake@furry.engineerF This user is from outside of this forum
                                    fayedrake@furry.engineerF This user is from outside of this forum
                                    fayedrake@furry.engineer
                                    wrote last edited by
                                    #20

                                    @mcc @glyph @mhoye I had that argument with a previous employer over mob programming.

                                    They were trying to make everyone do it, it was burning some of us out.

                                    Their response was “you can just not do it and the rest of the team will do it without you”.

                                    Well, oh Einstein of managers, what do you think is going to happen when all the tools and communication structures the team uses assume mob programming, just like is required to do it properly? It’s not a real option to just not engage. You’ve just forced several of your staff out of a job because it was that or burning them out within weeks, and you’ve managed to paint it as their fault.

                                    Ever since then I’ve been incredibly cynical about any “cultural shifts”. If it’s optional then it’s totally not optional they just don’t want to take the responsibility.

                                    fayedrake@furry.engineerF griotspeak@soc.mod-12.comG 2 Replies Last reply
                                    0
                                    • glyph@mastodon.socialG glyph@mastodon.social

                                      I am writing a blog post about why it is bad to use AI. It is extremely heavily sourced. I have a tedious automation problem formatting my citations. No problem, I think. I will write a computer program. The computer program does not work, because websites are blocking simple computer programs in an effort to block AI. Solution? Simple. Browser comes with AI embedded, browses like a human, has all my cookies. Just ask the AI. It sails through the primitive anti-AI measures easily.

                                      timwardcam@c.imT This user is from outside of this forum
                                      timwardcam@c.imT This user is from outside of this forum
                                      timwardcam@c.im
                                      wrote last edited by
                                      #21

                                      @glyph I asked the corporate AI how to circumvent some tedious corporate security restrictions. Instead of reporting me it gave me some useful suggestions.

                                      1 Reply Last reply
                                      0
                                      • fayedrake@furry.engineerF fayedrake@furry.engineer

                                        @mcc @glyph @mhoye I had that argument with a previous employer over mob programming.

                                        They were trying to make everyone do it, it was burning some of us out.

                                        Their response was “you can just not do it and the rest of the team will do it without you”.

                                        Well, oh Einstein of managers, what do you think is going to happen when all the tools and communication structures the team uses assume mob programming, just like is required to do it properly? It’s not a real option to just not engage. You’ve just forced several of your staff out of a job because it was that or burning them out within weeks, and you’ve managed to paint it as their fault.

                                        Ever since then I’ve been incredibly cynical about any “cultural shifts”. If it’s optional then it’s totally not optional they just don’t want to take the responsibility.

                                        griotspeak@soc.mod-12.comG This user is from outside of this forum
                                        griotspeak@soc.mod-12.comG This user is from outside of this forum
                                        griotspeak@soc.mod-12.com
                                        wrote last edited by
                                        #22

                                        @FayeDrake @mcc @glyph @mhoye What about mob programming burned folks out? I’ve always kinda wished mob programming or pair programming was more common than “go off somewhere and return with the PR” but it sounds like it didn’t have much upside where you were

                                        mcc@mastodon.socialM glyph@mastodon.socialG fayedrake@furry.engineerF 3 Replies Last reply
                                        0
                                        • griotspeak@soc.mod-12.comG griotspeak@soc.mod-12.com

                                          @FayeDrake @mcc @glyph @mhoye What about mob programming burned folks out? I’ve always kinda wished mob programming or pair programming was more common than “go off somewhere and return with the PR” but it sounds like it didn’t have much upside where you were

                                          mcc@mastodon.socialM This user is from outside of this forum
                                          mcc@mastodon.socialM This user is from outside of this forum
                                          mcc@mastodon.social
                                          wrote last edited by
                                          #23

                                          @griotspeak @FayeDrake @glyph @mhoye Is mob programming the one with random encounters

                                          mhoye@cosocial.caM 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups