• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. What's the coronavirus like where you are?

      I kept the title the same as our last thread which was back in March (and now feels like a very distant past). Consider the question to be not just about the coronavirus specifically but more...

      I kept the title the same as our last thread which was back in March (and now feels like a very distant past). Consider the question to be not just about the coronavirus specifically but more about "life with the coronavirus" or the "new normal" or however you prefer to identify the situation you're in. What are things like in your area?

      18 votes
    2. What have you been watching / reading this week? (Anime/Manga)

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was...

      What have you been watching and reading this week? You don't need to give us a whole essay if you don't want to, but please write something! Feel free to talk about something you saw that was cool, something that was bad, ask for recommendations, or anything else you can think of.

      If you want to, feel free to find the thing you're talking about and link to its pages on Anilist, MAL, or any other database you use!

      8 votes
    3. Scheduled topics should link to the previous post from the week before

      Would it be possible to add a link to the previous weekly post? For example, https://tildes.net/~comp/rml/what_programming_technical_projects_have_you_been_working_on could link to...

      Would it be possible to add a link to the previous weekly post?

      For example, https://tildes.net/~comp/rml/what_programming_technical_projects_have_you_been_working_on could link to https://tildes.net/~comp/rhk/what_programming_technical_projects_have_you_been_working_on from the week before.

      Bonus points if it can be applied retroactively.

      13 votes
    4. Fortnightly Programming Q&A Thread

      General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads. Don't forget to format your code using the triple...

      General Programming Q&A thread! Ask any questions about programming, answer the questions of other users, or post suggestions for future threads.

      Don't forget to format your code using the triple backticks or tildes:

      Here is my schema:
      
      ```sql
      CREATE TABLE article_to_warehouse (
        article_id   INTEGER
      , warehouse_id INTEGER
      )
      ;
      ```
      
      How do I add a `UNIQUE` constraint?
      
      8 votes