Skip to content
  • Hjem
  • Seneste
  • Etiketter
  • Populære
  • Verden
  • Bruger
  • Grupper
Temaer
  • 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 (No Skin)
  • No Skin
Kollaps
FARVEL BIG TECH
  1. Forside
  2. Ikke-kategoriseret
  3. I’ve been working on this for a while, but let’s make it official: I started a little Tumblr-like microblog about software craft and quality!

I’ve been working on this for a while, but let’s make it official: I started a little Tumblr-like microblog about software craft and quality!

Planlagt Fastgjort Låst Flyttet Ikke-kategoriseret
91 Indlæg 42 Posters 0 Visninger
  • Ældste til nyeste
  • Nyeste til ældste
  • Most Votes
Svar
  • Svar som emne
Login for at svare
Denne tråd er blevet slettet. Kun brugere med emne behandlings privilegier kan se den.
  • mx@typo.socialM mx@typo.social

    @splorp @mwichary @cogdog Slightly offtopic, but I still use `/photo.gne?id=` URL to find where I downloaded certain photos years ago: https://www.flickr.com/photo.gne?rb=1&id=3399133066

    splorp@mastodon.socialS This user is from outside of this forum
    splorp@mastodon.socialS This user is from outside of this forum
    splorp@mastodon.social
    wrote sidst redigeret af
    #76

    @mx @mwichary @cogdog Just the fact that those legacy Game Neverending URIs still function after all this time is mind-blowing.

    mwichary@mastodon.onlineM 1 Reply Last reply
    0
    • luke@typo.socialL luke@typo.social

      @splorp @mwichary @cogdog look at that patina on that bus design. Just don’t look at the poorly applied window tint.

      splorp@mastodon.socialS This user is from outside of this forum
      splorp@mastodon.socialS This user is from outside of this forum
      splorp@mastodon.social
      wrote sidst redigeret af
      #77

      @Luke @mwichary @cogdog Those air pockets make my teeth hurt.

      1 Reply Last reply
      0
      • splorp@mastodon.socialS splorp@mastodon.social

        @mx @mwichary @cogdog Just the fact that those legacy Game Neverending URIs still function after all this time is mind-blowing.

        mwichary@mastodon.onlineM This user is from outside of this forum
        mwichary@mastodon.onlineM This user is from outside of this forum
        mwichary@mastodon.online
        wrote sidst redigeret af
        #78

        @splorp @mx @cogdog Cool URIs Never End

        dokas@mas.toD 1 Reply Last reply
        0
        • mwichary@mastodon.onlineM mwichary@mastodon.online

          @splorp @mx @cogdog Cool URIs Never End

          dokas@mas.toD This user is from outside of this forum
          dokas@mas.toD This user is from outside of this forum
          dokas@mas.to
          wrote sidst redigeret af
          #79

          @mwichary @splorp @mx @cogdog Just wanted to pipe up and mention that while the photo.gne trick isn't advertised it's known and so useful I even have a Launchbar search plugin for it.

          1 Reply Last reply
          0
          • mez@mastodon.nzM mez@mastodon.nz

            @mwichary Regarding the note about adding a human friendly slug to the end of a URL, do you have a thought or preference to putting that part before the unique id?

            flickr.com/mwichary/sets/alishan-forest-railway-72177720330077904

            On an app I run I went with that style so the all the human readable bits could be typed and autocompleted. It does seem to be a little harder to read since it’s in the middle of the text though.

            For example: https://app.mythic.nz/book/public-storybooks/sharable-public-storybooks/v4dUmg8Jjk6LmQYQlqy6Pw

            `public-storybooks` is the collection slug, and `sharable-public-storybooks` is the page title slug.

            imsop@tech.lgbtI This user is from outside of this forum
            imsop@tech.lgbtI This user is from outside of this forum
            imsop@tech.lgbt
            wrote sidst redigeret af
            #80

            @mez @mwichary

            Off the top of my head...

            ID first means the URL can survive truncation of the slug part. Particularly good if you can keep the prefix short.

            Slug first means URLs sort in alphabetical order by their slug. Maybe more suitable for small numbers of items, like a blog?

            ID first is also marginally easier to construct a URL by hand - you generally don't need to add a fake slug, just end the URL at the ID and it still meets the pattern

            Random example of slug-first that happened to be in my history:
            - canonical URL: https://www.hollywoodreporter.com/tv/tv-news/stargate-revived-prime-video-new-series-1236431118/
            - doesn't work with only ID: https://www.hollywoodreporter.com/tv/tv-news/1236431118/
            - works if you know the format and add a fake slug: https://www.hollywoodreporter.com/tv/tv-news/yeehaw-1236431118/

            mwichary@mastodon.onlineM 1 Reply Last reply
            0
            • imsop@tech.lgbtI imsop@tech.lgbt

              @mez @mwichary

              Off the top of my head...

              ID first means the URL can survive truncation of the slug part. Particularly good if you can keep the prefix short.

              Slug first means URLs sort in alphabetical order by their slug. Maybe more suitable for small numbers of items, like a blog?

              ID first is also marginally easier to construct a URL by hand - you generally don't need to add a fake slug, just end the URL at the ID and it still meets the pattern

              Random example of slug-first that happened to be in my history:
              - canonical URL: https://www.hollywoodreporter.com/tv/tv-news/stargate-revived-prime-video-new-series-1236431118/
              - doesn't work with only ID: https://www.hollywoodreporter.com/tv/tv-news/1236431118/
              - works if you know the format and add a fake slug: https://www.hollywoodreporter.com/tv/tv-news/yeehaw-1236431118/

              mwichary@mastodon.onlineM This user is from outside of this forum
              mwichary@mastodon.onlineM This user is from outside of this forum
              mwichary@mastodon.online
              wrote sidst redigeret af
              #81

              @imsop @mez In theory a well-functioning URL bar/omnibox should handle both, so that’s somewhat reassuring.

              imsop@tech.lgbtI 1 Reply Last reply
              0
              • mwichary@mastodon.onlineM mwichary@mastodon.online

                @imsop @mez In theory a well-functioning URL bar/omnibox should handle both, so that’s somewhat reassuring.

                imsop@tech.lgbtI This user is from outside of this forum
                imsop@tech.lgbtI This user is from outside of this forum
                imsop@tech.lgbt
                wrote sidst redigeret af
                #82

                @mwichary @mez
                I actually found the example by typing "-123" into Firefox's address bar and looking what it came up with 🙃

                However, Firefox's completion searches history by both URL and title, in any order. If I type "new stargate series", I get both that article and https://reactormag.com/stargate-amazon-mgm-studios/

                1 Reply Last reply
                0
                • cogdog@cosocial.caC cogdog@cosocial.ca

                  @mwichary I love the Flickr url pattern. You could not find a collections link with knowing the pattern.

                  I am fine with the unique id as shorter url. Also knowing where it is in a downloaded photo allows the secret url trick to find the original page https://cogdogblog.com/2015/10/flickr-trickr/

                  paulmison@sfba.socialP This user is from outside of this forum
                  paulmison@sfba.socialP This user is from outside of this forum
                  paulmison@sfba.social
                  wrote sidst redigeret af
                  #83

                  @cogdog @mwichary the URL structure for images (id, secret, size) is described in the API docs. https://www.flickr.com/services/api/misc.urls.html
                  (I built a few things on the Flickr API circa 2005-2010. I suspect I can still remember some of the flickr.photos.search arguments.)

                  cogdog@cosocial.caC 1 Reply Last reply
                  0
                  • paulmison@sfba.socialP paulmison@sfba.social

                    @cogdog @mwichary the URL structure for images (id, secret, size) is described in the API docs. https://www.flickr.com/services/api/misc.urls.html
                    (I built a few things on the Flickr API circa 2005-2010. I suspect I can still remember some of the flickr.photos.search arguments.)

                    cogdog@cosocial.caC This user is from outside of this forum
                    cogdog@cosocial.caC This user is from outside of this forum
                    cogdog@cosocial.ca
                    wrote sidst redigeret af
                    #84

                    @paulmison @mwichary That api has held strong, With little more the docs and the Flickr PHP library I built two sites like 12 years ago that use the API and they still work

                    https://pechaflickr.net/
                    https://5card.Cogdogblog.com

                    1 Reply Last reply
                    0
                    • mwichary@mastodon.onlineM mwichary@mastodon.online

                      In which I celebrate the craft of Flickr’s original, amazing URL scheme: https://unsung.aresluna.org/unsung-heroes-flickrs-urls-scheme/

                      mwichary@mastodon.onlineM This user is from outside of this forum
                      mwichary@mastodon.onlineM This user is from outside of this forum
                      mwichary@mastodon.online
                      wrote sidst redigeret af
                      #85

                      I don’t know if this is spicy (I honestly don’t even know what “spicy” means anymore on the internet), but wrote what I learned about making a bug process work for more people than just engineers: https://unsung.aresluna.org/how-to-make-sure-a-designer-never-files-a-bug-again/

                      mwichary@mastodon.onlineM 1 Reply Last reply
                      0
                      • mwichary@mastodon.onlineM mwichary@mastodon.online

                        I don’t know if this is spicy (I honestly don’t even know what “spicy” means anymore on the internet), but wrote what I learned about making a bug process work for more people than just engineers: https://unsung.aresluna.org/how-to-make-sure-a-designer-never-files-a-bug-again/

                        mwichary@mastodon.onlineM This user is from outside of this forum
                        mwichary@mastodon.onlineM This user is from outside of this forum
                        mwichary@mastodon.online
                        wrote sidst redigeret af
                        #86

                        For my 150th (!) post, a look back at Apple’s breathing lights: https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/

                        michaelporter@ottawa.placeM vga256@mastodon.tomodori.netV kwramm@mastodon.gamedev.placeK pierrenick@hachyderm.ioP stuartmarks@mastodon.socialS 5 Replies Last reply
                        1
                        0
                        • mwichary@mastodon.onlineM mwichary@mastodon.online

                          For my 150th (!) post, a look back at Apple’s breathing lights: https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/

                          michaelporter@ottawa.placeM This user is from outside of this forum
                          michaelporter@ottawa.placeM This user is from outside of this forum
                          michaelporter@ottawa.place
                          wrote sidst redigeret af
                          #87

                          @mwichary Ha, you've reminded me of an old MacBook I had when I was teaching that did that. The kids in the class noticed the “breathing” 😄

                          1 Reply Last reply
                          0
                          • mwichary@mastodon.onlineM mwichary@mastodon.online

                            For my 150th (!) post, a look back at Apple’s breathing lights: https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/

                            vga256@mastodon.tomodori.netV This user is from outside of this forum
                            vga256@mastodon.tomodori.netV This user is from outside of this forum
                            vga256@mastodon.tomodori.net
                            wrote sidst redigeret af
                            #88

                            @mwichary what a nicely written post. thank you. i always found the sleep light’s rhythm very cozy on my iBook/PB/iMac G5, but hadn’t realized the period was tuned to human breathing. just a wonderful detail. the apple I fell in love with of the 2000s.

                            1 Reply Last reply
                            0
                            • mwichary@mastodon.onlineM mwichary@mastodon.online

                              For my 150th (!) post, a look back at Apple’s breathing lights: https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/

                              kwramm@mastodon.gamedev.placeK This user is from outside of this forum
                              kwramm@mastodon.gamedev.placeK This user is from outside of this forum
                              kwramm@mastodon.gamedev.place
                              wrote sidst redigeret af
                              #89

                              @mwichary to me, this stuff DID sell it. The attention to detail is just what made those machines special and a joy to use. That's what "going the extra mile" looks like in product design

                              1 Reply Last reply
                              0
                              • mwichary@mastodon.onlineM mwichary@mastodon.online

                                For my 150th (!) post, a look back at Apple’s breathing lights: https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/

                                pierrenick@hachyderm.ioP This user is from outside of this forum
                                pierrenick@hachyderm.ioP This user is from outside of this forum
                                pierrenick@hachyderm.io
                                wrote sidst redigeret af
                                #90

                                @mwichary What a nice post. I had actually totally forgotten about them. Especially the ones in the latch button of the PowerBooks. It really was so soothing.

                                1 Reply Last reply
                                0
                                • mwichary@mastodon.onlineM mwichary@mastodon.online

                                  For my 150th (!) post, a look back at Apple’s breathing lights: https://unsung.aresluna.org/just-a-little-detail-that-wouldnt-sell-anything/

                                  stuartmarks@mastodon.socialS This user is from outside of this forum
                                  stuartmarks@mastodon.socialS This user is from outside of this forum
                                  stuartmarks@mastodon.social
                                  wrote sidst redigeret af
                                  #91

                                  @mwichary Interesting. I didn’t pick up on the “breathing” aspect but I recall that the slow pulsing was quite soothing. It was also useful and usable: it conveyed information if you looked at it, without attracting attention to itself.

                                  By contrast, many things (like cursors) blink too fast for my taste, saying “Hurry up and type something!” Even a non-blinking red LED, like on a TV in a darkened hotel room, is too harsh. I carry a roll of gaffer tape in my travel kit for such situations.

                                  1 Reply Last reply
                                  0
                                  • tokeriis@helvede.netT tokeriis@helvede.net shared this topic
                                  Svar
                                  • Svar som emne
                                  Login for at svare
                                  • Ældste til nyeste
                                  • Nyeste til ældste
                                  • Most Votes


                                  • Log ind

                                  • Har du ikke en konto? Tilmeld

                                  • Login or register to search.
                                  Powered by NodeBB Contributors
                                  Graciously hosted by data.coop
                                  • First post
                                    Last post
                                  0
                                  • Hjem
                                  • Seneste
                                  • Etiketter
                                  • Populære
                                  • Verden
                                  • Bruger
                                  • Grupper