• Activity
  • Votes
  • Comments
  • New
  • All activity
    1. Proposal and interest survey for Timasomo: Tildes' Make Something Month

      UPDATE: Be on the lookout for Timasomo Post #0 on Friday, October 25! November, the month of NaNoWriMo or National Novel Writing Month, is coming up. I was thinking we could run a parallel event,...

      UPDATE: Be on the lookout for Timasomo Post #0 on Friday, October 25!


      November, the month of NaNoWriMo or National Novel Writing Month, is coming up. I was thinking we could run a parallel event, though slightly more open in scope.

      My idea is to use November here as a "Make Something Month" with pretty much wide open parameters. Write a novel, write poetry, paint landscapes, craft pottery, create delicious recipes, homebrew, code a game, contribute to open source software, do something clever with a Raspberry Pi. Whatever it is you're interested in doing creatively, go for it! I envision something quite self-directed, with the challenge being meeting the parameters you set for yourself rather than any external criteria we come up with. It also doesn't have to be limited to a single project, so maybe you want to tackle a weekly or even daily challenge.

      My current vision for how this will work:

      I'll post weekly recurring posts (or see if Deimos can schedule them), starting one week before November begins (for planning), continuing through the month with check-ins and feedback and support, and ending with a final showcase post in December where everyone can share their creative works with everyone else.

      If this is something that you'd like to participate in, please let me know! Also, if anyone has any ideas for how to run it, please share.

      24 votes
    2. What are you doing this week?

      This topic is part of a weekly series. It is meant to be a place for users to discuss their week. If you have any plans, goals, accomplishments, or even failures, whether they be personal or work...

      This topic is part of a weekly series. It is meant to be a place for users to discuss their week.

      If you have any plans, goals, accomplishments, or even failures, whether they be personal or work related, I'd love to hear about them. This is a place for casual discussion about your week, past, present, and future.

      A list of all previous topics in this series can be found here.

      So, what (or how) are you doing this week?

      9 votes
    3. Fitness Weekly Discussion #2

      What have you been doing lately for your own fitness? Try out any new programs or exercises? Have any questions for others about your training? Want to vent about poor behavior in the gym? Started...

      What have you been doing lately for your own fitness? Try out any new programs or exercises? Have any questions for others about your training? Want to vent about poor behavior in the gym? Started a new diet or have a new recipe you want to share? Anything else health and wellness related?

      9 votes
    4. New search capabilities available: phrases, excluding terms, alternatives ("or")

      On Sunday, I took the site down for a short downtime to upgrade the database from PostgreSQL version 10 to 12. One of the main reasons I wanted to do that upgrade was to get access to a new search...

      On Sunday, I took the site down for a short downtime to upgrade the database from PostgreSQL version 10 to 12. One of the main reasons I wanted to do that upgrade was to get access to a new search function, and I've updated to using it now, so we have multiple nice new search capabilities available.

      These should all be pretty familiar since a lot of other search systems and search engines have similar capabilities with the same syntax:

      • As before, by default, searching for multiple words will be treated as "all of these terms". So if you search ~games for steam play, you'll get all topics that have both "steam" and "play" in them.
      • Phrases can now be searched for by putting double quotes around them. Searching ~games for "steam play" in quotes will only find topics that specifically have "steam play".
      • Excluding terms can be done by putting a minus sign in front of it. For example, if you wanted to try to find ~games posts about Blizzard and exclude the recent China controversy, you could search for blizzard -china.
      • Alternatives can be searched for by using "or". This changes to "any of these terms" instead of "all of these terms". For example, searching for overwatch or diablo will find any topic with either of those terms, instead of both.
      • These capabilities can be combined, so you can exclude phrases, use "or" with phrases, and so on. For example: blizzard -"hong kong" or diablo.

      This all works both through the main site topic search (at the top of the sidebar) as well as the new search for your own topics/comments.

      I'm going to write a page for the Docs with info about these capabilities, but I think I want to try to find a full specification of what's supported first to make sure I cover it properly. The PostgreSQL docs are pretty vague about it, so I'll probably need to take a look in the actual code.

      Please let me know if you notice any issues with it, or if anything's confusing that I should make sure to document.

      And as usual, I've given everyone 10 invites, accessible on the invite page.

      52 votes
    5. 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?
      
      9 votes