[-] jameseb@lemm.ee 26 points 5 days ago

That code point is U+0D9E SINHALA LETTER KANTAJA NAASIKYAYA. It's a letter in a writing system used in Sri Lanka.

[-] jameseb@lemm.ee 6 points 2 months ago* (last edited 2 months ago)
  1. Why does it say where T: Sized for references &T? A reference can definitely point to an unsized type, e.g. &str.

I think the point being made is that the layout shown only applies for Sized T. Layouts for &[T] and &dyn Trait are shown elsewhere on the sheet. &str is noted under &[T].

Edit: although, similar considerations would apply to other pointer types, but that isn't noted on the sheet except for Box<[T]>

[-] jameseb@lemm.ee 17 points 7 months ago

A cup can refer to a variety of different measurements (see Cup (unit) - Wikipedia). The cup OP referenced is a metric cup, a US customary cup is 8 US fluid ounces. Measuring cups can come labelled using cups as a unit, usually including a whole cup, and that is presumably what OP was referring to.

[-] jameseb@lemm.ee 17 points 8 months ago

Well, the good news is that according to this list, your instance already blocks Threads.

[-] jameseb@lemm.ee 18 points 9 months ago

To give a theological answer, no. A lich is usually understood as a sorcerer who has achieved an undead state or immortality, usually by binding their soul to the corporeal world in a phylactery. That does not apply in Jesus' case, since he did not pursue any sort of magic to avoid death, much less binding his soul to a phylactery. The resurrection of Jesus was a supernatural act of God, restoring Jesus to true life.

As to the second part of your question, I was not aware that holy water harming liches was a common trope in fiction (it is usually seen in reference to vampires), but even if it is applied to undead more widely, we have established that Jesus was restored to true life, not to any form of unnatural undeath. Moreover, holiness comes from God (that which is holy is set apart for God), and Jesus is fully God, so contact with holy things would not harm him. Indeed, Christ is now in the true holy place in heaven (Hebrews 9:24), which we can only enter when cleansed by his blood (Hebrews 10:19-22).

[-] jameseb@lemm.ee 6 points 10 months ago* (last edited 10 months ago)

A few things I noticed:

  • In http::request::parse(), do you actually need a BufReader? It would be better to make it generic over something implementing BufRead, that allows what you have but also makes tests and examples easier since you wouldn't have to open a TCP connection just to do something that is essentially string parsing.
  • In http::response::Response::to_string(), that match on lines 78-85 makes me uneasy, because you are silently changing the status code if it isn't one you recognise. It would be better to signal an error. It would be even better to just check when the status code is set (perhaps with a status code enum to list the ones you support, since what you have isn't all the defined codes) so that you can't fail when converting to a string.
  • Consider whether you need a special to_string() method at all, or whether you can just implement Display (which gives you to_string() for free via the ToString trait).
  • You are using String as an error type pretty much everywhere. The better approach is to create an enum representing all the possible errors, so that a user of your library can match against them. Make the enum implement Error and Display and it will fit fine into the rest of the error handling infrastructure. There are crates like thiserror that can reduce the boilerplate around this.
  • You have an io.rs that doesn't appear to be connected to anything.
  • You have a main.rs, which seems off in something that sounds like it should be purely a library crate. You probably want that to be an example or an integration test instead.

That's all I could see with a quick look. In terms of general advice: remember to look at warnings, run cargo clippy, and look at the API guidelines.

[-] jameseb@lemm.ee 9 points 10 months ago

The understanding I've generally heard, and which seems supported by the context, is that the fig tree symbolises the unfruitfulness of God's people. This is particularly apparent in that both Matthew and Mark record it as happening alongside Jesus casting out people trading in the temple (Luke records the cleansing of the temple but not the fig tree thing). It is then followed by Jesus telling a series of parables against the religious leaders. There may also be a relation to the parable of the barren fig tree earlier on in Luke 13.

[-] jameseb@lemm.ee 7 points 10 months ago

What's sad is that people aren't talking about Mastodon nearly as much as they are talking about Threads and X. It just doesn't seem to get much publicity outside of the fediverse.

[-] jameseb@lemm.ee 9 points 10 months ago* (last edited 10 months ago)

Image uploads are currently disabled on lemm.ee: https://lemm.ee/post/5839513. Images were restricted in size before that as well to avoid using too much server space. The idea is to use image hosting sites instead.

[-] jameseb@lemm.ee 6 points 1 year ago

Technically a general eye doctor would be an opthalmologist. An optician is someone who makes lenses. The person you see for an eye test at the opticians is an optometrist (someone who measures what strength lenses you need).

[-] jameseb@lemm.ee 15 points 1 year ago

The Rust book is the official standard resource for learning Rust. It assumes some experience in another programming language, but it doesn't matter which one (that is, it isn't aimed at teaching Rust as a first programming language), so there's no reason why you couldn't read it with some experience in C.

Depending on what sort of C programmer you are, you may find Learn Rust the Dangerous Way of interest as well.

view more: next ›

jameseb

joined 1 year ago