VegOwOtenks

joined 2 years ago
9
submitted 2 weeks ago* (last edited 2 weeks ago) by VegOwOtenks@lemmy.world to c/asktransgender@lemmy.blahaj.zone
 

So I know of the publication which lists various names for HRT, some of them are MtF-specific:

  • antiboyotics
  • breast mints

Others are unspecific:

  • Trans-Mission Fluid
  • Lifesavers

But I can't recall any nicknames for FtM Hormones, do you know some?

[–] VegOwOtenks@lemmy.world 10 points 3 weeks ago (9 children)

Where do you find these comics? I tried xcancel and tumblr but brooke2valley seemed to have stopped uploading last december.

Is she still doing new comics and I missed them or are they from the archives?

[–] VegOwOtenks@lemmy.world 22 points 3 weeks ago (2 children)
[–] VegOwOtenks@lemmy.world 2 points 3 weeks ago

yeah, I think that comes across - “Jungs” also feels weirdly intimate / familiar, like “my bros” or something, or “my boys” …

Yes, I agree. I've actually only ever encountered it in family situations, like when somebody has multiple male kids, or in school.

Thanks for introducing me to Mädels, it’s really helpful to actually talk to someone familiar with the language

It's my pleasure, I'd happily offer my services as a native speaker. I fear that the same is happening to the French I learned until I finished high school.

[–] VegOwOtenks@lemmy.world 2 points 3 weeks ago

Other commenter already noted workplace tendencies, I would like to expand on other parts of life:

Most institutions/corporations insist on you picking a title, though some offer neutral options.

For people you know, it'd be awkward to always adress them at full length, first name is usually enough. This is especially fun whenever you try to greet someone formally when you have just had a nice chat with them about the weekend.

[–] VegOwOtenks@lemmy.world 1 points 3 weeks ago (2 children)

Technically (the best kind of correct), the female equivalent for Jungs would be Mädels, but it's hard to get right.

I'd only use it for a group of girls I'm a part of, and have only heard it used that way. Imagine: "Ich treffe mich heute mit meinen Mädels". (eng.: "I'm going to meet up with my girls.").
I hope this translates well enough to convey my impression that if somebody else uses it, it's inappropriately close language for somebody they may not know that good.

[–] VegOwOtenks@lemmy.world 4 points 1 month ago (2 children)

Bestes Wetter Anwendungchen wo gibt.

[–] VegOwOtenks@lemmy.world 23 points 1 month ago (1 children)

So you're Homeowner, huh?

[–] VegOwOtenks@lemmy.world 3 points 1 month ago (1 children)

Sadly, it was painted directly off of a blahaj model present at the time.

 

She also suggested the title

[–] VegOwOtenks@lemmy.world 3 points 1 month ago (1 children)

Sorry, what does "clocking someone" mean? I tried to look it up but could only find explanations like: hit someone, especially in the face or alternatively measuring something with a clock/metronome.

From context: Is it related to fooling someone?

 
[–] VegOwOtenks@lemmy.world 2 points 1 month ago

Futhark + sed

Futhark can read only number and array types from stdin, the input data is often a non-starter. Therefore, I often massage it into the right format using sed.

Sed Script

s/[: ]/,/g
s/[rgbs]/0/g
s/[RGBS]/1/g
1s/^/[ [/
2,$s/^/, [/
s/$/]/
s/,\([01]\)/,0b\1/g

$a]

This formats everything nicely, e.g. the example for part 1:

2456:rrrrrr ggGgGG bbbbBB
7689:rrRrrr ggGggg bbbBBB
3145:rrRrRr gggGgg bbbbBB
6710:rrrRRr ggGGGg bbBBbB

is transformed into this:

[ [2456,0b000000,0b001011,0b000011]
, [7689,0b001000,0b001000,0b000111]
, [3145,0b001010,0b000100,0b000011]
, [6710,0b000110,0b001110,0b001101]
]

Futhark Solution

entry part1 (colors: [][4]i32) =
  let isGreenDominant c = c.g > c.r && c.g > c.b
  in colors
     |> map (\array -> (array[0], {r = array[1], g = array[2], b = array[3]}))
     |> filter ((.1) >-> isGreenDominant)
     |> map (.0)
     |> i32.sum

type Optional 'a = #absent | #present a

def map_optional 'a 'b (f: a -> b) (this: Optional a) : Optional b =
  match this
  case #absent -> #absent
  case #present a -> #present (f a)

def optional_is_present 'a (this: Optional a) : bool =
  match this
  case #absent -> false
  case _ -> true

def unwrap_optional 'a (this: Optional a) : a =
  match this
  case #absent -> assert (("unwrap_optional: #absent", false).1) ([][1])
  case #present a -> a

def bind_optional 'a 'b (f: a -> Optional b) (this: Optional a) : Optional b =
  match this
  case #absent -> #absent
  case #present a -> f a

def maximum_by 'a (gte: a -> a -> bool) (as: []a) : Optional a =
  let choose (this: Optional a) (other: Optional a) =
    match (this, other)
    case (#absent, o) -> o
    case (t, #absent) -> t
    case (#present t, #present o) -> #present (if o `gte` t then o else t)
  in reduce choose #absent (map (\a -> #present a) as)

type ShineColor = {r: i32, g: i32, b: i32, s: i32}

def array2ShineColor (array: [5]i32) : (i32, ShineColor) = (array[0], {r = array[1], g = array[2], b = array[3], s = array[4]})

def on f g a b = f (g a) (g b)

entry part2 (colors: [][5]i32) =
  let gte (this: ShineColor) (other: ShineColor): bool =
    let colorSum c = c.r + c.g + c.b
    in this.s > other.s || (this.s == other.s && colorSum this <= colorSum other)
  in colors
     |> map array2ShineColor
     |> maximum_by (gte `on` (.1))
     |> unwrap_optional
     |> (.0)

type Shininess = #matte | #shiny
type DominantColor = #red | #green | #blue

def filterMap 'a 'b [n] (f: a -> Optional b) (as: [n]a) : []b =
  as
  |> map f
  |> filter optional_is_present
  |> map unwrap_optional

def categorize_shininess (s: i32) : Optional Shininess =
  if s <= 30 then #present #matte else if s >= 33 then #present #shiny else #absent

def categorize_color (color: ShineColor) : Optional DominantColor =
  if color.r > color.g && color.r > color.b
  then #present #red
  else if color.g > color.r && color.g > color.b
  then #present #green
  else if color.b > color.r && color.b > color.g
  then #present #blue
  else #absent

def categorize ((value, color): (i32, ShineColor)) : Optional (i32, (DominantColor, Shininess)) =
  categorize_shininess color.s
  |> bind_optional (\s -> map_optional (\c -> (c, s)) (categorize_color color))
  |> map_optional (\g -> (value, g))

-- >>> category_index (#red, #shiny)
-- 3

def category_index ((c, s): (DominantColor, Shininess)) : i64 =
  (+) (match c
       case #red -> 0
       case #green -> 1
       case #blue ->
         2)
      (match s
       case #matte -> 0
       case #shiny -> 3)

def (&&&) f g x = (f x, g x)
def sum2d (a, b) (c, d) : (i32, i32) = (a + c, b + d)

entry part3 (colors: [][5]i32) =
  colors
  |> map array2ShineColor
  |> filterMap categorize
  |> map ((.1) >-> category_index &&& ((.0) &&& const 1))
  |> unzip
  |> uncurry (hist sum2d (0, 0) 6)
  |> maximum_by ((>=) `on` (.1))
  |> unwrap_optional
  |> (.0)

I had hoped that the input might get big enough for optimization purposes, but the calculations are likely too simple.

 

Quest 1: Scales, Bags and a Bit of a Mess

  • Keep top level comments as only solutions, if you want to say something other than a solution put it in a new post. (replies to comments can be whatever)
  • You can send code in code blocks by using three backticks, the code, and then three backticks or use something such as https://topaz.github.io/paste/ if you prefer sending it through a URL
[–] VegOwOtenks@lemmy.world 13 points 1 month ago

It's the only possible interpretatiom left, like with Spy multiplied by Family

 
107
Do I Pass? (lemmy.world)
submitted 2 months ago* (last edited 2 months ago) by VegOwOtenks@lemmy.world to c/transmemes@lemmy.blahaj.zone
 

When I do get it, I feel like playing dumb is the safer bet sometimes.

 

Pandoc can now be used in the browser, see the announcement on discourse.

I think this is awesome, may more languages adopt wasm support.

 

 
 

I remember a discussion about the censoring of swearing in TOS. Somebody suggested that Spock actually always said 'fucking nuts dude', 'fascinating' is just what the universal translator makes of it.

Anyway, I couldn't find the discussion using search engines and I suggest you do not search for "spock fucking nuts dude".

 

For debugging purposes, we had the program print dots and Xs to see where we went wrong. This is from the output of my girlfriends python script.

I converted this from the text-based output of her program in day two. First to a portable anymap (nmp) and then I used GIMP to produce a gif.

 

I'm learning to use Rocq, I felt very powerful.

view more: next ›