• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics in ~tech with the tag "websites". Back to normal view / Search all groups
    1. Unpopular opinion: Disqus is the Internet's welcoming gift to the small and medium bloggers

      I'm talking about those who host their blogs statically on Github Pages and elsewhere, the small peasants of the Interwebs who collectively make up the biggest portion of it and make its wheels...

      I'm talking about those who host their blogs statically on Github Pages and elsewhere, the small peasants of the Interwebs who collectively make up the biggest portion of it and make its wheels churn with their content and toil.

      All that negativity I'm seeing towards Disqus is baseless. They criticize it for showing ads and being less privacy friendly but then which technology today isn't? Name me one company from Big Tech or Silicon Valley which actually respects their user's privacy in practice, not just words. You'll be left scratching your heads for a long time but no name will come out.

      And I also keep hearing about these "self hosted" alternatives like Commento but none of them have gained any traction. Building and implementing a commenting system isn't easy even though CMS like Wordpress try their best. Unless you implement social OAuth logins like Github or Google, not many folks will like to interact on your site by singing up for a whole new site account, especially true if you're a small blogger who has just started. And managing all the data communication between the frontend and backend isn't easy.

      With Disqus, we get this whole setup and workflow readymade with nice looking dashboard and all, and that too for gratis, not a dime to pay! Then why shouldn't a blogger use it, I'm yet to hear any justifiable answer to this question.

      8 votes
    2. What are the best websites/programs for creating mood boards / image collages / 'visual lists'?

      Hullo! I'm very much a list person, but I'm also very much a visual person. So, I've found that simple grids of images work really well for me when I want to plan and organize information,...

      Hullo! I'm very much a list person, but I'm also very much a visual person. So, I've found that simple grids of images work really well for me when I want to plan and organize information, aesthetics, etc. However, I've struggled to find my ideal website or program that allows me to do this.

      My wants:

      • To upload images with minimal clicks. (My workflow would likely be to find an image somewhere, get the image's URL, navigate to a page, and upload via URL, without necessarily needing to enter form fields or save an image locally first.)
      • To display medium resolution images as clear thumbnails (e.g. anywhere from 200x200 to 500x500). Enough for detail, but not necessarily "HD".
      • To offer the ability to crop (or even just display) images as square thumbnails (for the purposes of a neat and uniform grid) without me having to go through https://squareanimage.com (real website!) for every single image.
      • To categorize images into groups (i.e. to display a set of images as a coherent little grid/gallery). I'm not picky about whether this is done via fixed category pages, or tags + filtering.
      • To maybe add extra information attached to each image (e.g. descriptions, links, etc.) without necessarily cluttering the grid.
      • As for whether the service is public or private, cloud-based or local, I don't really mind!

      Some of the options I've tried:

      • Wordpress: Really nice grid-based themes, but the "blog post"-based system feels cumbersome for what I'm trying to do (images only). So many clicks to add images and make new posts.
      • Tumblr: Lovely for content discovery, the quick reblog feature saves a lot of clicks, and tagging is flexible. But, this has many of the same downsides as Wordpress (lots of clicks to upload your own images, post-based system), and Tumblr as a platform is so much more than what I'm looking for (don't want/need social features).
      • Pinterest: 10/10 for content discovery -- their image similarity algorithms and image search are unmatched. Wonderful for quickly spinning up a collage of themed pictures. But, horrid for uploading new pictures, given that they'll become public pins with comments/links/etc. Too many clicks + unnecessary fields. I worry about attribution for artists with Pinterest specifically -- I don't want to perpetuate a lack of attribution with publicly re-shareable images. Also, the collages are very busy with ads and unnecessary text. Plus, it's kind of cumbersome to reorganize images between boards if you want to change your board scheme.
      • Pinry: Open source, self-hosted version of Pinterest. Was a bit too rough around the edges the last time I tried to use it, but maybe it's good enough now?
      • Are.na: A bit too... New York trendy? For my tastes. Also, the social elements aren't really my thing... Also, costly!!!
      • Google Keep: Surprisingly good? Perhaps the best option I've tried? For image notes, it's very flexible with regards to grid-based layouts, tagging, adding optional details, adding multiple images to a single note, etc. My main criticisms are that uploading images and tagging notes does take quite a few clicks; the grid stops being aligned the moment your notes begin to differ (e.g. add images of varying size, add titles/details, etc.), so it can start to look a bit visually cluttered; the UI doesn't seem to be designed with many tags in mind; the default layout shows all notes (I never want this).
      • Local files and folders: Dead simple, but with very few features. Thumbnail views in file explorers are really space inefficient compared to grid-based image galleries.
      • Random photo organizing software: Largely geared towards actual photos taken with an actual camera (real life subjects, camera EXIF data, organizing by date taken, etc.). Too many unnecessary features for my needs, not enough features geared towards digital non-photo images (e.g. graphics).
      • "Speed dial" new tab pages for browsers: Helps me organize bookmarks! I like being able to see the icons, like a desktop for webapps. I will use image grids for everything.
      • Artwork grids in media libraries / tracking websites: Plex, MusicBee, Letterboxd, Goodreads, Anime-Planet... you are heaven to me.

      Here is a gallery of screenshots for websites/services I have tried, to give you an idea of how I use these services. The first one (tumblr) is the closest to visually ideal (dense + uniform grid), but Keep is the closest to ideal feature-wise. Surely there is a website or service I'm missing that could be the best of both worlds!

      10 votes
    3. Kagi recently changed their dark mode, fix inside

      Since I know quite a few tilderinos use Kagi (far higher percentage than the standard population) I figured this might interest some of you. Kagi pushed out a new Dark theme that is not dark. It's...

      Since I know quite a few tilderinos use Kagi (far higher percentage than the standard population) I figured this might interest some of you.

      Kagi pushed out a new Dark theme that is not dark. It's possibly even worse than Googles non-dark official Dark mode.

      Here is a CSS fix you can throw in your custom css section in settings that I whipped up for some people in the Discord, should be useful.

          :root {  
        --custom-bg-color: #090c10;
      
        --search-result-gap: 20px;
        --search-result-gap-mobile: 10px;
        --app-bg: var(--custom-bg-color);
        --search-result-title: #fff;
        --primary-visited: #aaa;
        /*! --quick-search-bg: #000; */
        --color-search-input: var(--custom-bg-color);
        --result-item-title-border: rgba(255,255,255,0.25);
        --search-result-date-bg: rgba(255,255,255,0.15);
      }
      
      .__sri-time {
        font-size: 12px;
        border-radius: 2px;
        margin-right: 3px
      }
      
      .__sri-desc {
        padding-top: 3px;
      }
      
      .__sri-title {
        margin-bottom: 5px;
      }
      
      .__sri-url .__sri_url_path_box {
        margin-top: 0px;
      }
      
      @media screen and (max-width: 1300px) {
        .search-result, .sri-group {
          padding-top: 0px !important;
          padding-bottom: 0px !important;
          margin-bottom: var(--search-result-gap-mobile) !important;
        }
      }  
      

      This fixes the colors, padding, and some other general weirdness they introduced. They also don't follow their own variable specs so I introduced two new ones in there so you can modify to your liking (namely padding between links on mobile and desktop).

      26 votes