Spyke
feddit.dk

Ask your doctor if Moctopril™ is right for you!

178
feddit.org

This is disgusting. Who enters dates in month/day/year order?

89
Ediacariumreply
feddit.org

Because I'm not used to entering dates in month/day/year order.

2

You linking that also-fantastic post is one of the funniest things I’ve seen all day. Well done! I laughed my ass off.

2

october

j'octobe
tu octobes
il/elle/on octobe
nous octobons
vous octobez
ils/elles octobent

4

Sounds like a medicine I shouldn't take before asking my doctor if it's right for me.

11
lemmy.world

Hmm. A bit redundant.

[ j ] [ uly ] [ y ]

Shoulda just been [ ul ].

25

I'm not saying it doesn't work. I'm saying it's not good.

Almost perfect. 0/10

8

I unironically love this. Of course it isn't practical in the least, but I love it.

14

Novemy showers bring Septanugust flowers.

At least that's what my grandma would say.

12

It's basically the UI equivalent of this:

Yes, it's a fully-functional date picker and also deviously, wildly, uncomfortably outside of aesthetic norms. Also, there's a lots of fun, invalid combinations of input outside of the usual "February 30th" shenanigans.

Why yes, that's my birthday: the 32nd of Septunepril. What's the problem?

11
sh.itjust.works

Decoctorch sounds kind of cool though. Anyone up for some calendar reform?

11

God, always. Nothing about our current calendar is working for me.

2

For a truly peak UI make the text very light gray on a white background, in the thinnest font possible.

11

The zeroth of March is not uncommonly used, to mean the last of February whether it's the 28th or 29th

3
lemmy.world

Funny month names are all well and good, but the only ones you can actually spell here are:

January, March, May, September, November, and December.

Otherwise, it's

Febranuary, Japril, Juney, Julyber, Maugust, and Moctober

8
SnekZonereply
lemmy.blahaj.zone

Kinda true. If the whitespace from the top row doesn't get removed, you are left with "febr uary".

8
lemmy.dbzer0.com

I understand that bad ui is a fun meme and all, but how did this one even cross their mind as an idea for a bad UI? This is a new level of convoluted I would not have even considered.

8
fedia.io

My guess: someone messed up trying to split an array and split a string from it and hilarity ensued.

4
lugalreply
lemmy.dbzer0.com

It's too unregular and too good to be a coincidence. Unless they threw an algorithm on it that was intended for whatever

1

To be clear, I don't think the choices are a coincidence; I think the general idea is one.

3

Finally I can input my birthday of Jempril 0 without having to use a keyboard!

8
feddit.uk

Genuine Question:

if you could split the month names into 3, how would you split them to maximise their choice overlap?

  • "em" is a good overlap for nov/sept/dec
  • "uar" is good for jan/febr
8
lugalreply
lemmy.dbzer0.com

I assume the post is the maximum. I wonder if there is an algorithm for that

3
tetris11reply
feddit.uk

hierarchical letter clustering would be my guess, or graph-based clustering using ngrams of 2-4 as nodes and maximising for connections.

Or using an optimized Regex and printing out the DFA?

Edit: Quick N-gram analysis (min=3, max=num letters in that month)

:::spoiler R-code

library(ngram)

tmonths = c("january", "february", "march",
           "april", "may", "june", "july",
           "august", "september", "october",
           "november", "december")

zzz = lapply(tmonths, function(mon){
  ng = ngram::ngram_asweka(paste(unlist(strsplit(mon, split="")), collapse=" "), min=3, max=nchar(mon))
  return(gsub(" ", "", ng))
})
res = sort(table(unlist(zzz)))
res[res > 1]

:::

This gives the following 9 ngram frequencies greater than 1:

  ary   uar  uary   emb  embe ember   mbe  mber   ber 
    2     2     2     3     3     3     3     3     4 

As you can see two longest most common motifs are "em-ber" and "uar-y"

Using this I propose the following graph

::: spoiler Mermaid

stateDiagram
    direction LR
    sept --> em
    nov --> em
    dec --> em
    em --> ber
    oc --> to
    to --> ber
    feb --> uar
    uar --> y
    jan --> uar
    ju --> ne
    ju --> l
    l --> y
    ma --> r
    ma --> y
    r --> ch
    
    a --> p 
    p --> r
    r --> il
    a --> u
    u --> gust

:::

13
lemmy.ca

Thanks for saving me time, my head was already spinning on the previous comment but you made it stop.

4
tetris11reply
feddit.uk

I'm really disappointed by June, April and August. Without these months, everything would be so neat and orderly

1

Freaking romans with their gods and emperors, they couldn't go from unember to duodecember

3

Interestingly

  • Aprch
  • Maril

are the only two hallucinations, everything else is always a legit month

1

This is beautiful. Especially if it filters the available selections based on what is selected in the previous column.

7
feddit.uk

Munepril babies always end up junkies and deculyuary babies as priests

6
feddit.nl

We can clearly see that this design is silly, because it allows for so many invalid states. Yet when we represent some type, let's say in Java, were so often forced to do this exact same thing. Have variables in a container of which only a certain combination is valid. And then have at most a comment saying "this number is only valid if X is also set" or "if the validity boolean is true". Luckily Java finally has some ability for the so-called sum types now, just like Haskell's data types or Rust's enum types. Imo any language should have this.

4

Having data dependent on each other in a type means that either you have redundant data (so one of the fields should be computed) or that your container tries to be too generic (you should in this case prefer an 'Apple' class over a 'Fruit' class with an enum field 'Type')

1
lemmy.zip

What happens if you accidentally click something in the third box for July?

Edit: nm, I see the blanks as the first option

2
lemmy.ca

Why is the first part of October in the second box?

Now I want to see an infographic about the common parts of each of the months

2
Hoimoreply
ani.social

febr//uary skips the second box, so I think they aimed to have an equal number of options in each column.

6
jolreply
discuss.tchncs.de

That's dumb... Why not separate both in 3, o-cto-ber and fe-bru-ary? This is bad, but in ways I find unacceptable.

3

Are you asking for sanity in this abomination?

4

this is how my apps look when I try optimising them, just to gut them of all its usability because 'why have an array of values if I can reuse this string or integer' like a fucking idiot

2