• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. What apps/plug-ins/extensions etc do you use to improve Youtube on desktop?

      My experience with the extensions below is solely from Firefox. For livestream chat, I use Hyperchat mostly for the cpu usage reduction. Youtube-shorts block (Firefox,Chrome) forces shorts to play...

      My experience with the extensions below is solely from Firefox.

      For livestream chat, I use Hyperchat mostly for the cpu usage reduction.

      Youtube-shorts block (Firefox,Chrome) forces shorts to play in the regular video player, avoiding the horrid shorts UI.

      32 votes
    2. Some general advice for all the new Tildes users

      I've noticed a significant amount of mod actions taking place over the last few days, and quite a few locked topics, so I just wanted to offer some basic advice for all the new users to help...

      I've noticed a significant amount of mod actions taking place over the last few days, and quite a few locked topics, so I just wanted to offer some basic advice for all the new users to help prevent that from continuing, or getting worse.


      Don't bring the bad habits you learned on reddit here to Tildes, please. Consider this a chance to start fresh.

      It's okay to walk away from a disagreement here before it escalates into a heated argument. And when arguments happen, please don't resort to insulting the other person, as that just escalates things even further, and pollutes the atmosphere here. Not everyone who disagrees with you, or misinterprets your meaning or intent, is acting in bad faith. So try to assume good faith before responding. And if you can't do that, then just walk away. Take a breather. It's not the end of the world if you let someone else have the last word in a disagreement.

      Don't use the Exemplary label (which many of you have recently unlocked the ability to use) as a "super-agree" between two people having an argument. It's not meant for picking a side. That's not what it's for. And if you do use it that way your ability to use Exemplary labels may be revoked.

      And finally, try to be nice. Please. Don't be a jerk. As Eevee said in On a technicality (which I recommend everyone read, since it inspired some of the core philosophies behind Tildes):

      There are some nice people in the world. I mean nice people, the sort I couldn’t describe myself as. People who are friends with everyone, who are somehow never involved in any argument, who seem content to spend their time drawing pictures of bumblebees on flowers that make everyone happy.

      Those people are great to have around. You want to hold onto them as much as you can.

      But people only have so much tolerance for jerkiness, and really nice people often have less tolerance than the rest of us.

      The trouble with not ejecting a jerk — whether their shenanigans are deliberate or incidental — is that you allow the average jerkiness of the community to rise slightly. The higher it goes, the more likely it is that those really nice people will come around less often, or stop coming around at all. That, in turn, makes the average jerkiness rise even more, which teaches the original jerk that their behavior is acceptable and makes your community more appealing to other jerks. Meanwhile, more people at the nice end of the scale are drifting away.

      And Tildes wants to hold on to those nice people.

      293 votes
    3. Any coin roll hunters on Tildes?

      I was just in the thread about if stores should stop accepting cash, and to my horror there was many people advocating to getrid of small change So are there any coin roll hunters here that would...

      I was just in the thread about if stores should stop accepting cash, and to my horror there was many people advocating to getrid of small change

      So are there any coin roll hunters here that would be mega bummed out if we got rid of small change?

      Here in canada, there's still some neat coins you can find in circulation

      with nickels you can still find old laureate crown portraits and even older king George the 6th, and if your super lucky to hit a collection dump, king George the 5th nickels

      With dimes there was still many silver dimes you can find in circulation, I recently hit 4 rolls of silver dimes on a hunt, awesome collection dump, thats $370 worth of silver for $20, I rode that high for days

      Quarters still have some old silver coins in circulation, but not as many as dimes

      And Canada has something bad the americans dont have ARP, alloy recycling program, you see in canada all modern coins are made of steel on this inside, with plating of other metals,like nickel plated steel or bronze plated steel

      So dimes and quarter pre 2000 are 100% nickel, and ARP takes them out of circulation

      Nickels pre2000 are same alloy American nickels and pre 1982 are 100% nickel, ARP takes both these out of circulation

      So in canada us coin roll hunters are scrambling to get the coins we want before ARP does

      If there are no coin roll hunters to speak up on tildes, AMA about coin roll hunting

      14 votes
    4. What programming/technical projects have you been working on?

      This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's...

      This is a recurring post to discuss programming or other technical projects that we've been working on. Tell us about one of your recent projects, either at work or personal projects. What's interesting about it? Are you having trouble with anything?

      46 votes
    5. Is there a good microprocessor with 24-bit addressing?

      The original IBM 360 had a 24-bit address space. https://en.wikipedia.org/wiki/IBM_System/360 Microprocessors of the golden age of home computing (Apple ][, TRS-80, Commodore 64, CP/M machines...

      The original IBM 360 had a 24-bit address space.

      https://en.wikipedia.org/wiki/IBM_System/360

      Microprocessors of the golden age of home computing (Apple ][, TRS-80, Commodore 64, CP/M machines based on the 8080 and Z80) usually had a 16-bit address space, the 8086/8088 was a bit of an exception because it had a segmentation scheme to access 1 MB. (People thought it was awkward but I liked programming it in assembly language and Turbo Pascal) I remember the PDP-11 minicomputer having a 16-bit address space for user programs as well, the machine as a whole could be a lot bigger but an individual logged into it had access to a virtual "home computer" that ran BASIC and all.

      24-bit was a natural evolution and by the late 1980s you started to see 24-bit chips like the 80286 (PC AT) the 65C816 (Apple IIgs, Ninteno SNES), the eZ80 and such. Even the bigger AVR8 processors (I love AVR8 assembly) can have more than 64kb of program memory (flash, read-only in operation) so they use 24-bit addresses for program memory.

      In my mind we never saw a product of this generation that really took advantage of the address space, the 80286 in particular was called "brain damaged" by Bill Gates and operating systems struggled to exploit it. My take is that most of the chips of that generation were flawed in one way or another and were pretty quickly washed away by 32-bit machines when they became affordable in the early 1990s.

      For an example of the difficulties, there is this project to make a retrocomputer that is a bit better than anything we had in the 1980s,

      https://www.youtube.com/watch?v=0oYcu43N-lw

      they are using the 65C816 but not taking advantage of the 24-bit nature. Instead there is a simple bank switching scheme which I think they thought would be easier to program and probably faster. The 65C816 just doesn't have enough registers and addressing modes for it to be really easy to work with far pointers.

      So my question is, if I am a hobbyist who wants to revive the 24-bit generation and I want to have easy access to a 16MB address space, is there some CPU better that doesn't suck? I'd be happy with a CPU that doesn't have virtual memory or other facilities for an advanced operating system (write everything in "real mode") but something that supports an OS would be interesting too. Any ideas?

      7 votes
    6. What music documentaries have you enjoyed?

      I've realized recently how much of a throughline music documentaries and behind-the-scenes features have been in my life. Like watching whatever VH1 "Behind the Music" was on or watching Prodigy's...

      I've realized recently how much of a throughline music documentaries and behind-the-scenes features have been in my life. Like watching whatever VH1 "Behind the Music" was on or watching Prodigy's "Electronic Punks" VHS for the umpteenth time.

      What music docs have you really enjoyed historically or recently?

      I've been working my way through Hip Hop Evolution on Netflix and it has been a real joy re-familiarizing myself with 90s and aughts hip hop and diving deeper into the 70s and 80s. I feel like they've done a really good job covering the history and the context for the different styles emerging.

      Sound City details the history of the prolific LA studio where many well-known rock artists have recorded. There is a palpable reverence for analog recording and the Neve Electronics 8028 mixing console specifically. I thought it was interesting to learn about and hear from the different bands about their experiences there.

      I'm guessing most people have seen Peter Jackson's recent one, Get Back, so for something more obscure... if you're a Depeche Mode fan there's a series of short docs on YouTube, one for each album up through Exciter I think. Really cool history on the band and the process of creating each album, cut together from interviews with the band members as well as many of their team and recording collaborators.

      26 votes
    7. Midweek Movie Free Talk

      Have you watched any movies recently you want to discuss? Any films you want to recommend or are hyped about? Feel free to discuss anything here. Please just try to provide fair warning of...

      Have you watched any movies recently you want to discuss? Any films you want to recommend or are hyped about? Feel free to discuss anything here.

      Please just try to provide fair warning of spoilers if you can.

      15 votes
    8. Tildes Userscript: Tildezy

      Updated: June 29th 2023 Hello folks, Like many of the other people that have been around lately, I'm new to Tildes, I've been browsing it without an account since last Monday or so while waiting...

      Updated: June 29th 2023

      Hello folks,

      Like many of the other people that have been around lately, I'm new to Tildes, I've been browsing it without an account since last Monday or so while waiting for an email response (thanks @Deimos), and in that time I've been working on a little tool to add some QOL features I thought would make my experiences with the site feel better.

      I didn't plan on sharing it initially, because I didn't think I'd be able to get the javascript into a usable state, and I'm not fond of sharing my code in general, as I always get a big wave of impostor syndrome whenever I do, "What if they look at my messy code and see how silly I do some things", that sort of thing. But with Tildes I want to try to correct some of my internet behaviours, for years I've generally stayed as a lurker, never commenting or sharing content of my own, so, hello there, hopefully, I stick to my guns and you see more of me.

      Onto the script itself, currently, I've built five main features into it all of them being rather minor on their own, I did do bug testing on everything and couldn't find anything else, but if you notice anything please feel free to report it to me or post an issue on the repo. It's easy to miss bugs when you've only got one set of eyes.

      Tildezy Github

      The GitHub contains installation instructions if you've never used a userscript before, and contains some images showing off each feature described below.

      Comment Collapser The comment collapser was built because, with my shakey hands, I had a few times when I would click someone's name instead of the [-] beside it. With this feature *Triple* clicking anywhere on a comment, be it text or header, will collapse it as if you used the [-] button. It's set to 3 clicks as sometimes I double-click to begin copying a line and didn't want the conflict, but it can be changed to any amount of clicks on line 132

      https://github.com/TeJayH/Tildezy/blob/main/Tildezy.user.js#L132

      Group Stars/Favourites Allows you to click a ☆ beside each ~group on the Tildes homepage to *favourite* it, moving it to the top of the list. Supports as many or as few favourites as you'd wish.
      Scroll to Top Button Adds a button pinned in the top right of every Tildes thread that sends you back to the top of the page. No more scrolling or reaching for the home key
      Open Comments in New Tab Replaces the default function of a posts "x comments" to open the page in a new tab instead of the current tab
      User Colors This one is the thing that I made the entire script for, an entirely useless feature but one I love for silly reasons. Replaces the stock username color with a randomized one based on a hash made from the user's username. So everyone gets assigned their own color which will always be their color anywhere you see them. This one helps multi-person conversations flow better in my head
      New Comment Traveller Gives you navigation buttons either beside the Collapse Replies/Expand all buttons when scrolled up, or pinned in the top right when scrolled past those buttons. Navigation buttons jump quickly between each new comment in a thread.
      Markdown Buttons Adds a selection of various buttons under every comment box that automatically insert markdown for you. No more forgetting which bracket style goes first for a clickable URL.
      Settings Not really a *feature* on its own, but it exists. Adds a "Tildezy Settings" beside the Log In/Username button in the top right of the header, which opens a settings window to enable/disable any and all features of the script. Features can also be disabled by modifying lines 26-41 in the script, allowing you to hard toggle everything *including the settings itself* off should you wish.

      https://github.com/TeJayH/Tildezy/blob/main/Tildezy.user.js#L26-L41

      Hopefully, someone gets some use out of this with me, I look forward to chatting with you all.

      EDIT
      Refactored the code and added a new comment traveller feature based on some of the comments below.

      EDIT 2
      Up to 1.3.0, we've got markdown buttons now, see comment explaining the change or check out the github readme

      120 votes
    9. Calling all analog photographers and cinematographers of Tildes

      As a hobbyist, I do digital and film photography, but I tend towards film unless the situation calls for it (like doing motorsports photography, for example). I'm curious how many of this smaller...

      As a hobbyist, I do digital and film photography, but I tend towards film unless the situation calls for it (like doing motorsports photography, for example).

      I'm curious how many of this smaller community shoot film, and what everyone's relationship with film is. Do you shoot casually? Professionally? Part of this post is trying to gauge how much interest there could be in the occasional discussion of analog photography subjects. Would love to hear anything you have to say on the subject, be it film itself, gear (liking or collecting gear is not a bad thing!), or the process of shooting on analog formats.

      If anyone is in the CA Bay Area there is a film group (organized through the Meetup app) that does semi-regular meets that we'd love to have more participants in.

      Feel free to drop a link to wherever you post your work, if you do. I've really been enjoying posting on Glass for the last 6 months. It's paid but sure as hell beats Instagram, in my opinion.

      26 votes
    10. What are some interesting machine learning research papers you found?

      Here's a place to share machine learning research papers that seem interesting to you. I'm no expert, but sometimes I skim them, and maybe there are some folks on Tilde who know more than I do?...

      Here's a place to share machine learning research papers that seem interesting to you. I'm no expert, but sometimes I skim them, and maybe there are some folks on Tilde who know more than I do?

      One paper per top-level post, and please link to arXiv (if relevant) and quote a bit of the abstract.

      11 votes