BitSound

joined 1 year ago
 

I've encountered a bus stop that still exists, but has a sign from the city saying that no busses stop there. There's the disused tag on the wiki which seems relevant, but I'm not sure how to tag it exactly. There's lots of tags like ref, route_ref, operator:wikidata and so on. Should all of those tags get prefixed with disused:?

 

I'm trying to correct local buildings on OSM. I've noticed that some of the buildings were traced before according to one set of satellite images, but are off according to others. One of the options for a background while editing that I've got is called orthoimagery. Can I assume that that is the best set of satellite images for tracing buildings from?

[–] [email protected] 1 points 6 days ago

Makes sense. I thought it was odd, because all of the clones I've seen use different names that clearly differentiate them, like Shattered Pixel Dungeon. I would say using the exact same title is confusing and maybe a little unethical, but if Watabou doesn't care, then there's probably not much that can/should be done.

4
submitted 1 week ago* (last edited 1 week ago) by [email protected] to c/[email protected]
 

I saw this posted in another community, and was very confused for a bit. Can/should they be made to change their name? I'm not really sure how that sort of thing works.

[–] [email protected] 2 points 1 week ago (1 children)

IMO it's the weakest of the series. The next two books, The Player of Games or Use of Weapons are much better, at least to me. Use of Weapons is great, but has a somewhat challenging narrative structure of two intermixed timelines, so if that's not your thing The Player of Games would probably be a good one to try.

[–] [email protected] 3 points 1 week ago (1 children)

Nice! It's been a while since I've read any of his stuff. I should be done with my current book soon, what are a few of your favorites from him?

14
Peter Watts, "The Things" (clarkesworldmagazine.com)
[–] [email protected] 0 points 1 week ago

The difference is that you're not changing how time is kept. Countries can change their timezone offsets right now to screwy things like +12:45 and it changes how time is recorded and stored. If we switch to UTC, a country can just declare their official hours are shifting and nobody has to fundamentally change how clocks work.

[–] [email protected] 0 points 1 week ago (1 children)

IMO people would figure it out and life would go on. Yes, lots of people would have the calendar date advance in the middle of the day but that's fine, we'd get used to it. People wouldn't work 9-5 jobs, but we'd come up with different terminology.

I don't really see the argument about people waking up at different times. Yeah, some people would wake up at 02:00 and some at 16:00, but when someone says they wake up at 02:00, there's 0 confusion about when that is. You'd have to know when someone is awake to do an international call, but you have to do that anyways.

[–] [email protected] 3 points 1 week ago (3 children)

Have you read the other Culture books, or is this your first one? I just found out now that there's [email protected] that could use some posts if you have anything you want to share about it. If you haven't read it yet (or if anybody else is curious for a quick taste of the series), here's the author writing a few notes on it:

http://www.vavatch.co.uk/books/banks/cultnote.htm

I thought this was also a good read, though it does have a few spoilers across the first few books:

https://www.sciphijournal.org/index.php/2017/11/12/why-the-culture-wins-an-appreciation-of-iain-m-banks/

[–] [email protected] 3 points 1 week ago

At this point if I feel like getting fancy with Pandas, I'd reach for Polars first. My experience with it so far has been great

[–] [email protected] 9 points 1 week ago (4 children)

For a direct replacement, you might want to consider enums, for something like

enum Strategy {
    Foo,
    Bar,
}

That's going to be a lot more ergonomic than shuffling trait objects around, you can do stuff like:

fn execute(strategy: Strategy) {
    match strategy {
        Strategy::Foo => { ... }
        Strategy::Bar => { ... }
}

If you have known set of strategy that isn't extensible, enums are good. If you want the ability for third party code to add new strategies, the boxed trait object approach works. Consider also the simplest approach of just having functions like this:

fn execute_foo() { ... }
fn execute_bar() { ... }

Sometimes, Rust encourages not trying to be too clever, like having get vs get_mut and not trying to abstract over the mutability.

[–] [email protected] 7 points 1 week ago

Listening to The Hitchhiker's Guide to the Galaxy audiobook. I read it once ages ago, and am enjoying getting to all the good parts I only vaguely remember. It holds up pretty well, there's a reason people are still quoting it. I use the term "excitingly chunky" to describe the "developer chic" style of buildings that are getting slung up around me.

The biggest issue so far is that Trillian is the most fleshed-out woman in the series, and she's basically a cardboard cutout that has "girlfriend" hastily written on it. It might get better later on (I'm almost done with the 3rd book), but I don't recall it happening. I know it's not really the point of the series, but as someone that doesn't tend to notice this sort of thing, it was very noticeable.

[–] [email protected] 4 points 1 week ago

Oh also, it was kind of strange how little he mentioned AI. I like how he wrote that the AI wasn't trusted to be a Swordholder because it was "too logical". Completely missed the boat on ChatGPT. "Write a play in which Harry Potter pressed the button to destroy humanity, and then act it out" or something like that would be all it takes.

It was also strange that hundreds of years in the future, humans are still doing hard manual labor. Where are the robots?

 

Finished reading the Remembrance of Earth's Past series (i.e. The Three-Body Problem and the other books) and have opinions. WARNING: SPOILERS

Overall I liked it a lot. I felt like the books could've been a lot tighter though, and Liu Cixin really needed an editor. Lots of cool ideas, but I did not care about the 3 old guys arguing with each other in the first part of the second book. It gave some background info, but that could've been collapsed into a few paragraphs. I also didn't need the whole backstory of some some ship's cook whose plot relevance was about 10 seconds long.

I didn't have my mind blown by the ideas in it. Not that I begrudge people that do, I'm just not lying awake worrying about the dark forest hypothesis. Maybe it's because there's not much we can do about it anyways 🤷. I did really like the recasting of string theory's 11 dimensions as not some beautiful reality of the universe, but as the result of brutal galactic warfare.

I thought the FTL communication was kind of weird for a series that mostly tried to stick to (or at least give lip service to) hard sci-fi. If you haven't seen it before, this is a good explainer of the problems with FTL communication: https://projectrho.com/public_html/rocket/fasterlight.php. In the end, I think it more wants to be cosmic horror than hard sci-fi, which is fine.

One minor nit I have is that at the very end they talk a big deal about making messages last for billions of years, and they arrive at carving messages into stone. Good idea, but even then the message got partially lost. Why not add redundancy and carve it multiple times? I also kind of expecting something "clever", like writing the message into the genes of the mobile trees or something.

 

Full album is coming out Aug. 23rd

[–] [email protected] 5 points 1 month ago

IMO Hacker News handles this better. Threads/comments are rarely deleted, they're mostly minimized and you have to log in to expand them

 

Sadly didn't notice it until after the event was over otherwise I would've helped draw it

https://canvas.fediverse.events/#x=899&y=69&zoom=12

view more: next ›