• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics in ~tech with the tag "internet". Back to normal view / Search all groups
    1. Highlighting text in Wikipedia scrolls up too fast?

      To be honest I have some problems explaining what I mean, which might be why I can't find a solution or explanaition for it. I use firefox on Linux and out of habit i highlight text while reading...

      To be honest I have some problems explaining what I mean, which might be why I can't find a solution or explanaition for it.

      I use firefox on Linux and out of habit i highlight text while reading it. I always did that and it helps me to read a lot faster and to relax my eyes while reading. It's something i don't think i can get rid of, even if I tried, it's just so deeply burned in.
      As well I use to scroll the text I'm reading to the top out of the same reasons or maybe it's just habit as well, but I realised I cannot get rid of it as well :-)

      So no to my problem:
      Usually this works flawless, i can highlight text and have the cursor where I'm reading in the topmost visible line. But for some strange reason this does not work in the "new" wikipedia layout. where if I highlight text in the upper third of the page it scrolls upwards quite fast which just fucks up everything and makes my day bad. (this behaviour is not present in the old design which e.g. the germand wikipedia still uses)

      Is it me?
      Is it my browser?
      Is there a way to get rid of this, so I can keep my workflow while reading and learing on wikipedia? Is somebody else observing this behaviour?
      Where can I even start to look for a solution? I don't even know what to look for.

      It truly bothers me, as I'm close to every day on it, and it might be my favorite website.
      I heard there is a way to switch to the old wikipedia layout, which might be a workaround. But I actually like the new Layout a lot, so if there is a way to avoid that it would be great :-)

      18 votes
    2. Is it time to get offline?

      I like modern tech, but I'm slowly coming to hate the internet. I read Cal Newport's Digital Minimalism late last year and found it preaching to the choir, but noticed that most of the negative...

      I like modern tech, but I'm slowly coming to hate the internet.

      I read Cal Newport's Digital Minimalism late last year and found it preaching to the choir, but noticed that most of the negative effects of technology use were actually from internet use. The attention economy, privacy violations, enshittification, etc. are all mostly byproducts of the internet being so tightly integrated into our lives. When I heard about CVE potentially losing its funding (I know very litte about CS or anything related to software, so I'm unsure of how big a threat this really is to an end-user), the thought popped into my head... "is it time to get offline?".

      I am 20 years old, so my entire life has been spent in a world where devices are connected to the internet far more often than not, and I wonder if it's time to switch to an "offline first" mentality? I already embrace this philosophy when it comes to music, downloading the songs I want to my computer and syncing them to my phone through iTunes, but this would take that one step further: turn on my computer's wi-fi to check emails, read through the new posts here, check some other sites, etc. and then turn it off until I explicitly need to do something online.

      I'm lucky enough that most of the (important) things I do on my computer can be done 90% offline, but I wonder if it's even worth doing? I'm curious to hear thoughts on this from the people of Tildes, or any methods that you have implemented in your life.


      EDIT: I should clarify: I already have basically no social media, I use beeper to see my instagram DMs (I can't really get rid of this without abandoning any age-adjacent social life) and that's it. You could call Discord and Tildes social medias, but that's maybe pushing it. I'm more talking about the recent resurgence of physical media and reframing the internet as something that is accessed rather than omnipresent in my usage habits.

      56 votes
    3. 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
    4. Do 5g home internet modems get better cell reception than mobile phones?

      I think the answer is probably yes, but I wanted to double check. Does anyone here have experience with them? For clarity, this is the home modems that you can buy for stationary 5g internet. This...

      I think the answer is probably yes, but I wanted to double check. Does anyone here have experience with them? For clarity, this is the home modems that you can buy for stationary 5g internet. This is not those pocket, battery powered personal hotspots.

      I just moved into a new studio in France. Despite literally every other building on the street having fiber, my studio does not have it. So I am stuck with DSL, since France doesn’t use cable for internet service. My dsl gets 2-10 Mbps down and 0.25-1 up. This is abysmal, especially the upload.

      The other problem is the building is such a good shield against radio waves. With Orange, supposedly the best mobile carrier in France, I get exactly zero service, even sticking my phone out the window.

      There is a carrier called Free, that does offer a 5g home internet box. To test it out, I got a Free (but not free) SIM card for my phone. Sticking it out the window, I get about the same speeds as my DSL box provides.

      So there is the impetuous for my question. Should I expect their 5g home internet box to be about the same speeds as my iPhone, or can I expect them to be faster and more reliable, since it isn’t battery powered and can me larger?

      11 votes
    5. Is it possible to completely hide one’s activity on the Internet from one’s ISP?

      As the years go by, I’ve become increasingly annoyed (I choose that word intentionally) at the thought that there’s some “record” of my activity on the Internet somewhere, which was probably put...

      As the years go by, I’ve become increasingly annoyed (I choose that word intentionally) at the thought that there’s some “record” of my activity on the Internet somewhere, which was probably put together by my ISP. I “don’t have anything to hide” (other than perhaps the one or other ROM or movie that I download), but I also don’t want to randomly get fined or put in prison if, in a few years, our governments decide to retroactively criminalize certain activities (I’m thinking mostly about piracy).

      I’m not tech savvy though. That’s not because I haven’t tried. I have. I spent countless hours reading about how one can keep one’s activity on the Internet “private”. To my knowledge, it isn’t actually possible. I mean, even if I didn’t use my real name anywhere, or didn’t have any social media accounts (thankfully, I don’t), just the fact that I have to use an ISP to surf the web means that at least they are “spying” on me.

      So, I’m approaching all of you wonderful, tech savvy people (rather than ChatGPT or a search engine) to ask you if there’s something that I’m missing, and if there is a way (preferably a fool-proof one) to stop my ISP (or “anyone” for that matter) from collecting data on my activity on the Internet (particularly when I download ROMs or movies, which is the only “illegal” thing that I ever do).

      24 votes
    6. Long-term experiences with Google search alternatives?

      I've tried DDG for some time, but I keep finding myself using !g to find better results. I read a comment on Reddit that you just need to get used to searching things differently, but I'm starting...

      I've tried DDG for some time, but I keep finding myself using !g to find better results. I read a comment on Reddit that you just need to get used to searching things differently, but I'm starting to think that DDG just isn't very good. Kagi works well and I use the free version a bit for academic stuff, but I don't see myself paying for a search engine. Anyone have long-term reviews of search engines like Brave, Qwant, etc.?

      45 votes
    7. Anyone interested in trying out Kagi? (trial giveaway: round #2)

      We recently did a Kagi trial giveaway, and I have since received another email from Kagi with 3 additional trial codes. I'm assuming other Kagi subscribers also received the same thing (I got my...

      We recently did a Kagi trial giveaway, and I have since received another email from Kagi with 3 additional trial codes. I'm assuming other Kagi subscribers also received the same thing (I got my email on February 25 with the subject line "A treat from us"), so I figure we're due for another giveaway topic.

      As before, if you would like an invite, please request it in a comment.

      If you have invites to give, please PM them to requesters, then reply to their comment so that other givers will know they've been sent one and don't double up.

      50 votes
    8. To those who have been trying out Kagi: what do you think of it?

      It’s been about a month and a half since our big Kagi trial giveaway, which means most people are probably about halfway through their trial periods, so I figured we were due for a follow-up. To...

      It’s been about a month and a half since our big Kagi trial giveaway, which means most people are probably about halfway through their trial periods, so I figured we were due for a follow-up.

      To those who started using it recently, what are your thoughts?

      What do you like and dislike about Kagi?

      Do you think you will continue your subscription past the end of the trial?


      Note: I’m not affiliated with Kagi in any way besides being a happy customer myself. I’m asking this entirely out of curiosity.

      54 votes
    9. What are some traditional internet forums that you still use?

      I'm trying to go beyond Reddit and Tildes when it comes to some particular interests. I dislike Federated websites due to their usability issues, but I also get the impression that they try to...

      I'm trying to go beyond Reddit and Tildes when it comes to some particular interests. I dislike Federated websites due to their usability issues, but I also get the impression that they try to replicate or improve on Twitter. I never used or cared for Twitter in the first place.

      I found TrekBBS which looks great, but I was wondering about similar forums for my other interests, such as science fiction literature, classic movies, etc.

      So I am curious to know about everyone's favorite old-school forums that are still active and cool!

      The websites are not required to be actually old, as long as they work similarly to traditional internet forums.

      71 votes
    10. I hate 2FA

      I get that it’s supposed to make things more secure, but it feels like a constant chore every time I try to log in somewhere. Grab a code from my phone. Check my email. Open an authenticator app....

      I get that it’s supposed to make things more secure, but it feels like a constant chore every time I try to log in somewhere. Grab a code from my phone. Check my email. Open an authenticator app. Repeat this process for every single account, over and over.

      I know there are tools like YubiKey that are supposed to make 2FA easier, but the reality is that most websites don’t even support them.

      I already use a password manager, and all my passwords are long, randomized, and secure. Is there something I am missing that makes this easier, or is this just as infuriating for everyone else?

      75 votes
    11. How would you moderate this scenario?

      I'm one of the moderators of a small / medium community. I've been doing it for around a year, with no prior experience at moderating or helping to foster an online community. We have a section...

      I'm one of the moderators of a small / medium community. I've been doing it for around a year, with no prior experience at moderating or helping to foster an online community.

      We have a section for jokes and humour, and somebody posted one of those "train dilemma" memes. It gave the choice of letting the train hit one of several groups of people. It was general enough to not name anyone specific. The options were similar to:

      Let the train hit:
      a) Nintendo developers
      b) Sony developers
      c) Microsoft developers

      Fine. A bit crass, but hardly shocking.

      A commenter then replied by stating they don't mind which, so long as x well known developer is shot.

      Now that really threw me.

      The moderation team have been divided over it, although not strongly so. We are all generally in favour of removing it. But we are concerned about over-stepping and of course the topic of free-speech has arisen.

      As it came up with us, I'll also mention that there are no specific rules of the website, or this specific sub-community, to state such humour is disallowed.

      Where is the line drawn with free-speech? We would certainly remove anything pro-fascism, racist, homophobic or grossly offensive, but we do have rules that cover those.

      I'd be really keen to hear any views on how you would approach this and how you would justify your decision.

      21 votes
    12. Walled gardens, privacy, SEO and the open internet

      Hey all! So I was thinking of how when looking at privacy, having a platform being a walled garden (i.e. data not being found on search engines) can feel like a worse experience for what is...

      Hey all!

      So I was thinking of how when looking at privacy, having a platform being a walled garden (i.e. data not being found on search engines) can feel like a worse experience for what is regarded as the open internet.

      I don't have a solid solution for this. So my question to you is,

      How do you respect privacy while sharing content for search engines on a platform?

      13 votes
    13. Anyone interested in trying out Kagi?

      Edit: I have sent my link to three different people and I am out. Assuming they sign up. However, a lot of people also have invite links that commented. I guess a system would be for the...

      Edit: I have sent my link to three different people and I am out. Assuming they sign up. However, a lot of people also have invite links that commented. I guess a system would be for the invite-giver to reply to the comment of the invite-receiver to keep track?

      —-

      I received a link during Thanksgiving that lets me invite several people to a free trial of Kagi.

      I tried convincing friends to try it out but most of them were not even interested in a free trial to a paid search engine.

      If any of you are interested, please let me know.

      I'll give you my link in private and you can register yourself to the free trial.

      Posting just in case people are on the same boat as me.

      --

      Also, I hope it's appropriate to start a topic on this?
      Let me know if this is frowned upon.

      58 votes