11 Dec 23
04 Dec 23
Legendary rant from Alyssa (well-performed by the equally legendary Joey Lauren Adams) that’s the original source of all “handed a map at birth” references and snowclones. And Holden is such a jerk in this scene. It’s weird how so much misogyny is braided together with the male gaze’s internalized androphobia. A lot of patriarchal structures are tied into androphobia, into guys’ fear and hatred of each other and of their attraction to each other. Femininity is simultaneously valued and constricted.
(Also go listen to “Love Cliché” by BV3 after watching the film.)
30 Oct 23
NRW.Plus bietet weitreichende Informationen zur Klimaentwicklung, Klimafolgen und zur Klimaanpassung.
24 Oct 23
23 Oct 23
02 Sep 23
Organic Maps is a free Android
18 Jun 23
This website renders every single road within a city.
This website renders every single road within a city.
12 Mar 23
Accelerating Protomaps with a CDN for fast and affordable maps
11 Mar 23
Accelerating Protomaps with a CDN for fast and affordable maps
02 Mar 23
How far train in five hours
A route planner that prefers greenery
12 Jan 23
03 Jan 23
public class DomainModel {
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
}
public class Dto {
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public static explicit operator Dto(DomainModel model)
{
return new Dto
{
Id = model.Id,
Name = model.Name,
Description = model.Description
}
}
}
var domainModel = new DomainModel {
Id = 1,
Name = "Example",
Description = "This is an example"
}
var dto = (Dto)domainModel;