• 71 Posts
  • 476 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle




  • Personally, I’ve yet to see a single American successfully use guns to protect any other constitutional right from government infringement.

    The Battle of Athens is probably the most uniquely clear-cut example of what you’re asking for, unless we count the American Revolutionary War itself.

    Other successful examples mostly involve activists using non-violent protest to push for change, while using firearms to protect themselves from violent reactionaries that would otherwise murder them. Notably, the civil rights movement of the 1950s and 60s. For a modern example, there’s various “John Brown Gun Clubs” and other community defense organizations providing security at LGBTQ events against fascist groups that seek to terrorize event-goers.

    It’s also worth noting that resistance is often worthwhile even if it doesn’t result in unqualified victory. For example, the Black Panthers’ armed cop-watching activities saved a lot of Black folks from brutal beatings at the hands of the police, even if the organization was eventually crushed by the federal government.

    I have seen lots of examples like Waco and Ruby Ridge, where the government should have tried harder to deescalate, but in the end, everyone died. The closest example I can think of where the government did backoff was the Bundy standoff and all those guys were “defending” was their ability to let their cattle graze illegally on federal land because they didn’t want to pay for access like everyone else.

    It sounds like you might be in a bit of a filter-bubble. I don’t mean any offense by this, it’s a normal thing that tends to happen to people. If the news sources you read and the people you talk to don’t mention these things because it doesn’t mesh with their worldview, how would you hear about them?





  • How big is a Bitcoin transaction anyway?

    Bitcoin block 841,308 (most recent as I’m writing this) is 1,615,771 bytes and has 3,148 transactions, for an average transaction size of ~513 bytes.

    Because a Monero transaction is about one and a half to two kilobytes

    So yeah, about 3 to 4 times as large as an average Bitcoin transaction.

    Keep in mind we have dynamic block scaling so that the blocks will get larger as more transactions come in.

    That’s not a scaling solution, though. Larger blocks provide throughput at the expense of decentralization, since fewer people will run full nodes as resource usage increases. Eventually it gets to the point where it becomes feasible for a government to track down and compromise all the remaining node operators.

    It seems like lightning service providers may very well be considered money transmitters

    Not sure how much this would matter. Lightning wallets don’t care whether their channel partners are registered money transmitters, or just some rando operating through TOR or in a permissive jurisdiction. In the case of Samourai, taking down the backend rendered the wallet useless. Taking out a lightning node just temporarily inconveniences users that were connected to them.


  • Monero may be a good option for some individual users right now, but it isn’t a long-term solution for bringing financial privacy to the masses. That pretty much has to be done through Bitcoin wallets with privacy features. Bitcoin is already criticized for not scaling well, but Monero is far worse. If I remember correctly, Monero transactions are roughly 4 times as large as Bitcoin transactions, and they don’t have any way to do off-chain transactions the way Bitcoin can with Lightning.










  • Nim

    Part 1 was just a simple search. Part 2 looked like it just needed a trivial modification, but with the removal of the one-way tiles, the result I was getting was getting for the example was too large. I switched to a different method of determining the path length, but didn’t yet figure out what what I had been doing wrong. Since the search space was now significantly larger, my part 2 code took almost an hour to come up with the answer.

    I rewrote part 2 to simplify the maze into a graph with a node for each intersection and for the start and goal tiles, with edge costs equal to the path length between each. This resulted in significantly faster iteration (17 seconds instead of 52 minutes), but didn’t actually reduce the search space. I’m assuming there’s some clever optimization that can be done here, but I’m not sure what it is.

    The rewrite was still getting the wrong answer, though. I eventually figured out that it was including paths that didn’t actually reach the goal, as long as they didn’t revisit any nodes. I changed my recursive search function to return a large negative result at dead ends, which fixed the issue.


  • Nim

    I sorted the bricks by their lower Z coordinate, then tried to move each of them downward, doing collision checks against all the others along the way. Once a level with collisions was found, I recorded each colliding brick as a supporter of the falling brick.

    For part 1, I made another table of which other bricks each brick was supporting. Any bricks that weren’t the sole support for any other bricks were counted as safe to disintegrate.

    For part 2, I sorted the bricks again after applying gravity. For each brick, I included it in a set of bricks that would fall if it were removed, then checked the others further down the list to see if they had any non-falling supporters. Those that didn’t would be added to the falling set.

    Initially I was getting an answer for part 2 that was too high. I turned out that I was counting bricks that were on the ground as being unsupported, so some of them were getting included in the falling sets for their neighbors. Adding a z-level check fixed this.

    Both of these have room for optimization, but non-debug builds run 0.5s and 1.0s respectively, so I didn’t feel the need to write an octree implementation or anything.