• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics in ~tech with the tag "blogs". Back to normal view / Search all groups
    1. Why won't the Wayback Machine archive my page?

      I have updated the Portuguese section of my blog with many posts that I scavenged from past blogs I've had since 2005. In order for everyone to be able to go through them chronologically, I gave...

      I have updated the Portuguese section of my blog with many posts that I scavenged from past blogs I've had since 2005. In order for everyone to be able to go through them chronologically, I gave them their original dates. In the end of each of these posts there is a link to the original publication, many of which came from the Internet Archive itself.

      One of my oldest blogs was removed from blogspot decades ago either by a hacker or something obscure about blogspot. So I had to use the archived version to reconstruct my history. I was very surprised to find it there because it was seemingly archived a decade after blogspot removed it. I have no idea what happened but I was so glad to find it!

      I have been trying to archive that page for days. The posts within that page are archived but not the page itself. The current August 2025 snapshot is not shown, and if I click on the link that they give me after the archiving process is done, I am directed to a snapshot I did back in May. I have no idea why this is happening, and the "help" section of Wayback Machine doesn't seem to have anyway for me to talk to someone.

      Can someone help?

      This is the page: https://daviramos.com/br/. It is also available at https://daviramos.bearblog.dev/br/, and yes, I tried archiving that one too.

      Thanks!

      9 votes
    2. Can you critique my blog?

      The blog is daviramos.com It is more like a 2000s blog than whatever blog means today. Just things I wanna write sometimes. It is not commercial, no ads. I like fast things. Images are heavily...

      The blog is daviramos.com

      It is more like a 2000s blog than whatever blog means today. Just things I wanna write sometimes. It is not commercial, no ads. I like fast things. Images are heavily optimized, not mandatory, and always inside posts.

      Bearblog is reliable and minimal without being barebones. I wrote about it before, so there's no need to go over it again here.

      I really want to know if the way I’ve organized my blog makes any sense. Please keep in mind that I’m not a developer, programmer, or anything like that. I chose Bearblog partly because I already liked the default theme and didn’t need to change much. I appreciate minimalism, understand Markdown, a little HTML, and can "decode" simple CSS using a mix of intuition, Google, and ChatGPT. I only changed stuff that was not very deep and would not be hard to maintain.

      css style (my changes are in the end)
      :root {
          --width: 720px;
          --font-main: Verdana, sans-serif;
          --font-secondary: Verdana, sans-serif;
          --font-scale: 1em;
          --background-color: #fff;
          --heading-color: #222;
          --text-color: #444;
          --link-color: #3273dc;
          --visited-color:  #8b6fcb;
          --code-background-color: #f2f2f2;
          --code-color: #222;
          --blockquote-color: #222;
      }
      
      @media (prefers-color-scheme: dark) {
          :root {
              --background-color: #01242e;
              --heading-color: #eee;
              --text-color: #ddd;
              --link-color: #8cc2dd;
              --visited-color:  #8b6fcb;
              --code-background-color: #000;
              --code-color: #ddd;
              --blockquote-color: #ccc;
          }
      }
      
      body {
          font-family: var(--font-secondary);
          font-size: var(--font-scale);
          margin: auto;
          padding: 20px;
          max-width: var(--width);
          text-align: left;
          background-color: var(--background-color);
          word-wrap: break-word;
          overflow-wrap: break-word;
          line-height: 1.5;
          color: var(--text-color);
      }
      
      h1, h2, h3, h4, h5, h6 {
          font-family: var(--font-main);
          color: var(--heading-color);
      }
      
      a {
          color: var(--link-color);
          cursor: pointer;
          text-decoration: none;
      }
      
      a:hover {
          text-decoration: underline;
      }
      
      nav a {
          margin-right: 8px;
      }
      
      strong, b {
          color: var(--heading-color);
      }
      
      button {
          margin: 0;
          cursor: pointer;
      }
      
      time {
          font-family: monospace;
          font-style: normal;
          font-size: 15px;
      }
      
      main {
          line-height: 1.6;
      }
      
      table {
          width: 100%;
      }
      
      hr {
          border: 0;
          border-top: 1px dashed;
      }
      
      img {
          max-width: 100%;
      }
      
      code {
          font-family: monospace;
          padding: 2px;
          background-color: var(--code-background-color);
          color: var(--code-color);
          border-radius: 3px;
      }
      
      blockquote {
          border-left: 1px solid #999;
          color: var(--code-color);
          padding-left: 20px;
          font-style: italic;
      }
      
      footer {
          padding: 25px 0;
          text-align: center;
      }
      
      .title:hover {
          text-decoration: none;
      }
      
      .title h1 {
          font-size: 1.5em;
      }
      
      .inline {
          width: auto !important;
      }
      
      .highlight, .code {
          padding: 1px 15px;
          background-color: var(--code-background-color);
          color: var(--code-color);
          border-radius: 3px;
          margin-block-start: 1em;
          margin-block-end: 1em;
          overflow-x: auto;
      }
      
      /* blog post list */
      ul.blog-posts {
          list-style-type: none;
          padding: unset;
      }
      
      ul.blog-posts li {
          display: flex;
      }
      
      ul.blog-posts li span {
          flex: 0 0 130px;
      }
      
      ul.blog-posts li a:visited {
          color: var(--visited-color);
      }
      
      /* MY CHANGES */
      
      /* That is an entirely new class for text */
      /* that goes below an image as a subtitle */
      .subtitle {
          text-align: center;
          font-style: italic;
          font-size: small;
          font-weight: bold;
      }
      
      .upvote-button {
          display: none !important; /* Hides button, overrides other settings */ 
              pointer-events: none; /* Disable mouseif it visible */
      }
      
      .title h1 {
          font-size: 1.2em;
      }
      
      nav a {
          font-size: 0.95em;
      }
      
      footer {
      	font-size: 0.95em;  
      }
      
      .spaced-line {
      	margin: 100px 0;
      	text-align: center;
      }
      
      /* Keep images centered */
      img {
          display: block;
          margin-left: auto;
          margin-right: auto;
      }
      

      For comparison, see Herman's blog to see something closer to the default. He’s the creator of Bearblog.

      Here’s what I’ve changed: the font size for the blog’s name, the navbar, and the footer that says Powered by Bear ʕ•ᴥ•ʔ is slightly smaller (0.95em instead of 1em). I added a guestbook and links to the English and Portuguese pages in the navbar. I also changed the favicon and the site's meta-image to different-sized images of Humphrey Bogart.

      The English and Portuguese pages are in their respective languages and only list posts in those languages. I don’t know if it’s possible to customize the navbar further. EDIT: bearblog has a builtin voting feature which I removed with CSS. All pages and posts are configured with their appropriate language via Bearblog, which I assume browsers and search engines can detect. Does it make sense to make my blog bilingual this way?

      Maybe this is a new feature, but Bearblog lets you organize posts into subfolders/subdomains. So I placed all Brazilian Portuguese posts under /br/, which feels logical and predictable. I haven’t shared them anywhere yet, so there’s no risk of broken links. On the other hand, I already have several English posts that have been shared elsewhere. If I move all English posts under /en/, I’d love to find a way to let the older links keep working gracefully. Is that possible somehow? Maybe that’s a question for Herman, but I have a follow-up: Other than my obsession with tiny details, is there any value in separating my posts under either /br/ or /en/? Titles and URLs are unlikely to conflict between languages, and if they do, I can always add a -pt or -en suffix like in example-post-pt.

      Other than that, I’d welcome any advice on how to improve my blog—whether in big ways or subtle ones.

      Thanks!

      21 votes
    3. The social web is in a transition period

      Have you been visiting just too many different social media platforms lately, checking them out to see what the deal is? Well, same here. It feels like I've been a guest every night in different...

      Have you been visiting just too many different social media platforms lately, checking them out to see what the deal is? Well, same here. It feels like I've been a guest every night in different houses for the past month and I must say: I am exhausted.

      But it's not over, far from it.

      And I'm here to give you a heads up: we've witnessed platforms dying in the past, I'm guessing most of us have been a part of some sort of digital exodus before but I have a feeling that this one is going to be more painful.

      Mainly because we've created so much data over the years and the majority of it got collected by centralised platforms. There are very few ways to take it with us and move elsewhere, it's all locked in.

      Backing up your data now would also be a good idea, before some CEO comes with up the plan that it should be a paid feature.

      I just want to say that this is all to be expected because the social web is in a transition period, and that golden bookmark doesn't exist yet. However, I think there are some contenders for it. What I want to ask is: where will you go next?

      I've got some ideas, feel free to add your preference if I'm missing anything.

      • Threads: Meta's Twitter clone that will be out some time this summer. It will be a federated (ActivityPub-enabled) platform.
      • Bluesky: Jack Dorsey-backed Twitter clone. This one is also federated but it uses AT Protocol.
      • Mastodon: The Twitter clone. It's got a fairly large userbase now, with lots of instances to choose from.
      • Blog: Maybe it's not a bad idea to set up shop on a platform like Micro.blog (which is ActivityPub-enabled and has got community features built-in) and lead a quiet digital life.
      • Threadiverse: Reddit-alikes.
      39 votes
    4. What are some of the best blogs, journals, e-magazines, etc. about programming or software development in general?

      I'm a solo freelance programmer who codes on small to medium sized projects, and I realize that I can upskill myself a lot by keeping up with the industry trends, by listening to what the best in...

      I'm a solo freelance programmer who codes on small to medium sized projects, and I realize that I can upskill myself a lot by keeping up with the industry trends, by listening to what the best in this field have to say. The problem is that there is just so much information overload everywhere, just so many youtube videos and articles that it seems overwhelming to differentiate the wheat from the chaff!

      Since reading is my preferred medium of instruction, I want to know what are the blogs, journals, etc. on this topic with some street cred? And preferably individual experts and blogs, not companies. Company or corporate sites and blogs seem to be more hype than substance these days.

      Which ones do you refer for keeping up to date?

      8 votes
    5. What are your favourite online publications?

      Somewhat inspired by this post, I wondered what (non-personal) blogs/online jounrals you read? Here are some of mine in no particular order. opensource.com for open source devlopment Glimmer for...

      Somewhat inspired by this post, I wondered what (non-personal) blogs/online jounrals you read? Here are some of mine in no particular order.

      *I'm a team member at PrivacyTools.io

      21 votes
    6. I'm on a mass social media detox (Twitter, Instagram, etc.) - What blogs that you read regularly should I check out?

      I limited the intake of high volume news and I'm currently taking a break from social media. I've been enjoying to occasionally visit blogs directly as my source of online reading. I tend to enjoy...

      I limited the intake of high volume news and I'm currently taking a break from social media. I've been enjoying to occasionally visit blogs directly as my source of online reading. I tend to enjoy short essays, opinions, and honest observations. What blogs have you been following lately that you think are worth taking a look at?

      P.s.
      If it's your own, please shoot me a direct message: I'd love to check it out.

      25 votes
    7. What blogs/newsletters do you subscribe to and why?

      Back in the day I was a hardcore Google Reader (RIP) user, and following that I continued to use https://feedly.com/ for many years, but eventually I found myself falling behind on all my feeds...

      Back in the day I was a hardcore Google Reader (RIP) user, and following that I continued to use https://feedly.com/ for many years, but eventually I found myself falling behind on all my feeds and stopped checking it.

      Recently, I signed for Inoreader and I've started reading more blogs again. It also has the nice feature of letting you subscribe to email newsletters too, which is quite nice since I find them annoying to deal with in my email inbox but convenient in the feed reader.

      I'm wondering what blogs and newsletters folks on Tildes subscribe to.

      Here are a few of my favorites:

      Blogs:

      Newsletters:

      This is just a slice. I can share my entire list if people are interested. But I'm curious about what feeds others enjoy, on anything from film and furniture to "movie-set" urbanism. What are you reading?

      20 votes
    8. We need an alternative to Medium, and it’s not Wordpress

      Introduction I hate medium and I think it should die a slow death. I tried to get some information on the subject to substantiate my belief. What Medium Does Bad Medium is slow On Gmetrix,...

      Introduction

      I hate medium and I think it should die a slow death. I tried to get some information on the subject to substantiate my belief.

      What Medium Does Bad

      Medium is slow

      On Gmetrix, medium.com has a F PageSpeed Score, with a 11.8MB Total Page Size and a Fully Loaded Time of 12.4s . A random article got a little better, with a D score

      Pingdom gives Medium a B score, with a page size of Page size 12.4 MB and Load time 2.15s (much better). This is from San Francisco, USA.

      Probably because I’m closer, the results for São Paulo, Brazil, are marginally better. The B score remains, but Load time dropped to 1.68s.

      Tildes gotta a C on GTmetrix and an A on Pingdom. On Google, Tildes got a 98 and medium.com got a 48.

      What is probably more concerning is that builtwith.com’s lists 106 different technologies at use on a single Medium page, ranging from AngularJS to Subversion, Wordpress Grid (aren’t they competitors?), Microsoft Azure and AliExpress. Tildes list only 13 technologies.

      Medium is annoying

      I’m sick and tired of opening a random Medium article and being bombarded with an immediate call to action for me to subscribe or to sign into a useless mailing-list. No: I do not pardon the interruption.

      It’s 2019: I don't wanna sign-in just to read a free fucking article.

      Medium weakens your brand

      On Medium, you’re not a content maker. Your a Medium contributor. There’s a great difference. There are little customization options, but you’re encouraged to strengthen the Medium brand instead of your own.

      Medium does not support Markdown

      In 2019, this is utterly ridiculous. I should be able to write my posts in Emacs, Vim, VS Code, whatever. Markdown is a universal format that simply works and not supporting it natively is unacceptable.

      The Default Editor Sucks

      It forces you to write in a certain (clunky) way and it doesn't work at all.

      Too Much White Space

      Medium uses space poorly.

      Not FOSS

      Wanna host your own? No can do amigo.

      Your content is not (really) yours

      Wanna export your Medium posts? Should be easy, like a single button, right? NOPE. And it can stop working at any time.

      Most Content is Shit

      I don’t wanna generalize, there are some good things on Medium. But most Medium articles are bellow 300-words, full of unnecessary subtitles with nothing more than obvious statements I could easily get from Google. Most Medium articles are from developers trying to leverage their status by showing knowledge of trivial technologies.

      What Medium Does Right

      A Social Network With Content Instead of Content With Social Networking

      This is something no amount of Wordpress widgets will ever top. Medium is a social network. It gets views, it gets you “applauses”, it gets you validation. It’s the Instagram of text content. Medium makes you feel good about yourself, and give you the shot (illusion?) of exposure. Maybe you can be in a publication, which is just an assortment of posts within Medium itself! See, you’re growing! You’re reaching a larger audience! They might even read your stuff!

      The Alternative

      It is obvious that Medium does a lot of things right. It is an actual social network that engages people like no other current blogging tool. People that know better use Medium to their advantage. People use Medium to talk trash about Medium. So we need another Medium. One that is just as social, but that is faster, less annoying, less of walled-garden and respects your content. I’m not in a position to do such a thing yet. But I certainly wish it existed.

      35 votes