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.)

by 2097 2 years ago

30 Oct 23

NRW.Plus bietet weitreichende Informationen zur Klimaentwicklung, Klimafolgen und zur Klimaanpassung.

by tobhar 2 years ago

02 Sep 23

Organic Maps is a free Android

by eli 2 years ago saved 3 times
Tags:

18 Jun 23

This website renders every single road within a city.

by tobhar 2 years ago saved 3 times

This website renders every single road within a city.

by tobhar 2 years ago

12 Mar 23

Accelerating Protomaps with a CDN for fast and affordable maps

by mrshll 2 years ago saved 3 times
Tags:

11 Mar 23

Accelerating Protomaps with a CDN for fast and affordable maps

by chrisSt 2 years ago saved 3 times
Tags:

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;

by ciwchris 3 years ago