this post was submitted on 13 Jul 2025
60 points (98.4% liked)

traaaaaaannnnnnnnnns

1303 readers
39 users here now

Welcome to /c/traaaaaaannnnnnnnnns, an anti-capitalist meme community for transgender and gender diverse people.

  1. Please follow the Hexbear Code of Conduct

  2. Selfies are not permitted for the personal safety of users.

  3. No personal identifying information may be posted or commented.

  4. Stay on topic (trans/gender stuff).

  5. Bring a trans friend!

  6. Any image post that gets 200 upvotes with "banner" or "rule 6" in the title becomes the new banner.

  7. Posts about dysphoria/trauma/transphobia should be NSFW tagged for community health purposes.

  8. When made outside of NSFW tagged posts, comments about dysphoria/traumatic/transphobic material should be spoiler tagged.

  9. Arguing in favor of transmedicalism is unacceptable. This is an inclusive and intersectional community.

  10. While this is mostly a meme community, we allow most trans related posts as we grow the trans community on the fediverse.

If you need your neopronouns added to the list, please contact the site admins.

Remember to report rulebreaking posts, don't assume someone else has already done it!

Matrix Group Chat:

Suggested Matrix Client: Cinny

https://rentry.co/tracha (Includes rules and invite link)

WEBRINGS:

๐Ÿณ๏ธโ€โšง๏ธ Transmasculine Pride Ring ๐Ÿณ๏ธโ€โšง๏ธ

โฌ…๏ธ Left ๐Ÿณ๏ธโ€โšง๏ธ๐Ÿณ๏ธโ€๐ŸŒˆ Be Crime Do Gay Webring ๐Ÿณ๏ธโ€โšง๏ธ๐Ÿณ๏ธโ€๐ŸŒˆ Right โžก๏ธ

founded 2 years ago
MODERATORS
 

The Sudoku puzzle format consists of (usually) a 9 by 9 grid that must be filled with numbers. The classical Sudoku rules are as follows

  1. Each row must contain all of the digits from 1 to 9, with no repetitions
  2. Each column must contain all of the digits from 1 to 9, with no repetitions
  3. Each sub square (3x3 grids marked by bold lines) must contain all of the digits from 1 to 9, with no repetitions

The historical inspiration of Sudoku begins with the Latin square, a type of grid problem similar to Sudoku in that it consists of an N by N grid where N digits (or letters) must be arranged in accordance with rules 1 and 2 of Sudoku (the sub square had yet to be invented). The first known example of a 9 by 9 Latin Square is from a monograph over 300 years ago, written by the Korean mathematician Choi Seok-Jeong. However, the Latin Square was popularized in the west by the legendary mathematician Leonhard Euler, who independently invented it almost 70 years after Choi Seok-Jeong.

According to Christian Boyer (idk who this is), on July 6th, 1895, the french newspaper La France published the earliest known example of a "true" Sudoku puzzle following all 3 rules of modern Sudokus, although french newspapers had previously been publishing similar (but different) puzzles prior. The name "Sudoku" itself (meaning "single digit") comes from Japanese magazines in which the game was popular during the 80s and 90s.

In Modern times, the Sudoku puzzle scene has been blessed with the addition of numerous variants, that add on additional rules, elevating the puzzle. The puzzle in the provided image is one such example, known as the "miracle Sudoku". It comes with 3 additional rules on top of the 3 original.

  1. If 2 digits are separated by a knight's move in chess, then they cannot be the same
  2. If 2 digits are separated by a king's move in chess, then they cannot be the same
  3. If 2 digits are adjacent (left, right, down or top, none of the diagonal directions), then they cannot be consecutive (ex - 5 and 6, or 7 and 8)

As can be seen from the fact that only 2 digits have been provided to start with, modern Sudoku authors are big fans of making puzzles that appear to be impossible to solve. This of course, is my favorite part about modern Sudoku. If you want to try to solve the miracle Sudoku, here is the link.

Some of the other example variants add new rules, such as German whispers, Dutch whispers, Renban lines, Entropy lines, Thermometer lines, killer cages and many more. You can find a massive collection of these puzzles on the logic-masters website.


Join our public Matrix server!

https://rentry.co/tracha#tracha-rooms


As a reminder, please do not discuss current struggle sessions in the mega. We want this to be a little oasis for all of us and the best way to do that is not to feed into existing conflict on the site.

Also, be sure to properly give content warnings and put sensitive subjects behind proper spoiler tags. It's for the mental health of not just your comrades, but yourself as well.

Here is a screenshot of where to find the spoiler button.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] hello_hello@hexbear.net 5 points 4 weeks ago (1 children)

text editor nerd shitJust use Emacs. All text editors after emacs are worse reimplementations of Emacs because only Emacs understood that the code editor shouldn't have an API and should just exist to manipulate and edit text. Also no AI ootb. Every feature you listed is built in.

Emacs can be used in the terminal btw and out of the box has support for LSPs (you literally hit "eglot" and it turns on)

You do want git integration, but on the level of Magit in Emacs where every git feature has been converted to a mnemonic interface and there's no workflow interruption from diff to editor window. You dont even have to go into the git window you can do git commands right in the editing window.

Emacs concepts of major and minor modes also makes it super flexible in any environment.

[โ€“] semioticbreakdown@hexbear.net 4 points 4 weeks ago (1 children)

is there a way to set it up so that my configuration + plugins/packages are based on my current project?

[โ€“] hello_hello@hexbear.net 2 points 4 weeks ago

Emacs has support for local variables, whether they're inside a directory or file. So yeah it's very intuitive to set up Emacs for a certain project (involves setting up a .dirs-local.el).