• Activity
  • Votes
  • Comments
  • New
  • All activity
  • Showing only topics in ~tildes with the tag "original content". Back to normal view / Search all groups
    1. Self promotion vs. Original content vs. Own content vs. User created vs. ...?

      This question has come up a few times now in the "Unofficial Tildes Chat" Discord server meta/curation channels, but I wanted to open up the discussion to ~tildes at large so we can perhaps...

      This question has come up a few times now in the "Unofficial Tildes Chat" Discord server meta/curation channels, but I wanted to open up the discussion to ~tildes at large so we can perhaps finally get a more definitive judgement on it. So here goes:

      What are people's thoughts on using the above topic tags in cases where a Tildes user posts something that they themselves have created, have hosted on their own site (or another), and/or could potentially profit from (monetarily or otherwise)?

      Should only one of the tags be standardized on, or is there enough of a distinction between some of them for their use to be situational?

      Should such tags be required?

      Can anyone think of any better tags for such situations than the ones listed?

      28 votes
    2. Tildee — A python library for interacting with Tildes

      Update! After a few hours of struggling I managed to set up Read the docs for Tildee, it should help using the library significantly. After getting some inspiration from TAPS I thought that maybe...

      Update! After a few hours of struggling I managed to set up Read the docs for Tildee, it should help using the library significantly.

      After getting some inspiration from TAPS I thought that maybe I try to work on something vaguely similar on my own. And after… some? hours of coding today I came up with this: tildee.py (source)
      It's a wrapper for the Tildes Public/Web API that is already used by the site internally to make it work. The obvious problem with that is that it will at one point break when this unstable API is changed. It can do basically all things a normal user can do with the notable exception of applying comment labels (because I haven't gotten around to that yet).

      Example of usage for a DM reply bot (result):

      import sys
      from tildee import TildesClient
      import time
      
      # Initialize client and log in, 2FA isn't supported yet and will probably break in horrible ways
      t = TildesClient("username", "password", base_url="https://localhost:4443", verify_ssl=False)
      
      while True:
          # Retrieve the "unread messages" page and get a list of the conversations there
          unread_message_ids = t.fetch_unread_message_ids()
          for mid in unread_message_ids:
              # Access the conversation history page; this also clears the "unread" flag 
              conversation = t.fetch_conversation(mid)
              # Get the text of the last message
              text = conversation.entries[-1].content_html
              # Abort if it's from the current user (I don't think this could actually happen)
              if conversation.entries[-1].author == t.username:
                  break
              print(f"Found a message by {conversation.entries[-1].author}")
              # If the message contains a reference, reply in kind
              if "hello there" in text.lower():
                  print("Replying…")
                  t.create_message(mid, f"General {conversation.entries[-1].author}! You are a bold one.")
              # Delay before processing next unread message
              time.sleep(3)
          # Delay before next unread check
          time.sleep(60)
      

      This has a lot of potential. Haven't yet figured out potential for what, but I'll take what I can get.
      I'd be really grateful if someone with a little more experience than me (that's not exactly a high bar :P) could give me some pointers on the project's structure and the "API design", hence the ask tag. Other creative ideas for what to use this for are appreciated, too.

      47 votes
    3. Stylus userstyle that hides comment vote counts

      This simple stylus userstyle hides vote counts on both voted and unvoted comments and your own comments. I really like what Deimos did, it significantly improved my time here on Tildes. If you...

      This simple stylus userstyle hides vote counts on both voted and unvoted comments and your own comments. I really like what Deimos did, it significantly improved my time here on Tildes. If you want the feature back, install Stylus extension, click the Stylus icon > write style for tildes.net and paste this:

      /* Hide vote count for unvoted comments */
      .btn-post-action[name="vote"] {
          visibility: hidden;
          position: relative;
      }
      .btn-post-action[name="vote"]:after {
          visibility: visible;
      	content: "Vote";
          position: absolute;
      }
      
      /* Hide vote count for voted comments */
      .btn-post-action[name="unvote"] {
          visibility: hidden;
          position: relative;
      }
      .btn-post-action[name="unvote"]:after {
          visibility: visible;
      	content: "Voted";
          position: absolute;
      }
      
      /* Hide vote count for your own comments */
      .comment-votes {
          display: none;
      }
      

      Known issues

      • There is extra padding around Vote button
      • Extensions such as Vim Vixen cannot interact with Vote button
      10 votes
    4. Posting original links (own content)

      What is our policy about posting original contents (e.g. me submitting a blog post I wrote, which I just did a few minutes ago)? IMO, if it is a personal blog, it should be okay, and not really...

      What is our policy about posting original contents (e.g. me submitting a blog post I wrote, which I just did a few minutes ago)?

      IMO, if it is a personal blog, it should be okay, and not really different from submitting a text topic here. Especially if the blog is not tracking you.

      15 votes
    5. Tildes and personal content?

      I've been thinking about the way some people use their opportunity to share in places like Tildes. There are weekly topics what the music the users listen and the books they read. Since the...

      I've been thinking about the way some people use their opportunity to share in places like Tildes.

      There are weekly topics what the music the users listen and the books they read. Since the community is small, there are rather few people interacting with those, which has the capacity to create stronger interpersonal connections.

      There's also the fact that I see a few names very often, in many different threads. Unlike some other places, though, I don't automatically map them to an idea of a person behind them. It's more Reddit than a small forum: people share their opinions and discuss subjects, but there's little personal interaction. It's a more a space of intellectual, rather than emotional, engagement.

      And yet, there are threads here about oneself where the person asks questions or raises subjects that are of importance to them. Some time ago, someone asked what to do with their existential dread. I bet there were similar threads here that I didn't get to see. There was also the "Hey, whatcha working on?" thread a while ago. So it's not that asking personal questions is opposed here: you can, if you want, ask for community support.

      So I'm wondering: what's Tildes' attitude towards more personal content? Things like life updates: "So hey, I'm doing okay, am still in a relationship (going great), looking for a job, working on the pet project I mentioned" etc. etc.. Is this something the users and the admins approve of? would enjoy?

      21 votes