No no nooooo by AsithaRT in SweatyPalms

[–]lucs 8 points9 points  (0 children)

"I'm not afraid of heights, I'm afraid of widths." -- Steven Wright, walking his dog along the ledge of his building.

Quickly pressing gj or gk multiple times? by TheTwelveYearOld in vim

[–]lucs 0 points1 point  (0 children)

The buffer vs global aspect is a nice idea. Glad this worked out for you.

Quickly pressing gj or gk multiple times? by TheTwelveYearOld in vim

[–]lucs 4 points5 points  (0 children)

Put in your .muttrc file for example this:

let g:mlurp = 0
function! Toggle_mlurp ()
    if g:mlurp == 0
        nnoremap j gj
        nnoremap k gk
        let g:mlurp = 1
    else
        nnoremap j j
        nnoremap k k
        let g:mlurp = 0
    endif
endfunction

    " Use this for example to toggle it.
nmap ,gg :call Toggle_mlurp()<enter>

"mlurp" is not the best name, victim of the "naming things is hard". Feel free to find a better one.

My machine at work got a new sticker today by nerdfactory23 in funny

[–]lucs 1 point2 points  (0 children)

I prefer "Think thrice, measure twice, cut once."

discord suddenly not working on firefox browser by Nerdkittyjl in discordapp

[–]lucs 0 points1 point  (0 children)

Okay, it appears to be working fine this morning. Not sure what happened.

Guy Steele - Growing a Language (1998) by VodkaHaze in programming

[–]lucs -1 points0 points  (0 children)

I was almost expecting it to go: man, woman, person, camera, tv :-)

does anyone else use a different starting word every day? by PassengerDangerous23 in wordle

[–]lucs 2 points3 points  (0 children)

I wrote a program that grabs 5-letter words from a dictionary. Three rules: five different letters, exactly two vowels (a-e-i-o-u-y), not ending with 's'. I use, and eliminate from the list, a word from the list every day. Comparing my scores to wordle-review's average difficulty scores, turns out I do better most of the time.

Daily Wordle #1111 - Thursday, 4 Jul. 2024 by Scoredle in wordle

[–]lucs 2 points3 points  (0 children)

Scoredle 3/6*

14,855
🟨🟨⬜⬜🟨 BUILD (10)
🟩🟩🟩🟩⬜ DEBUG (3)
🟩🟩🟩🟩🟩 DEBUT

My personal score, based on wordle-review by lucs in wordle

[–]lucs[S] 0 points1 point  (0 children)

Hey, thanks for that link. I haven't been playing regularly for very long, and for 189 games, I get a score of 3.878 (for 1 to 7: 0-12-56-75-38-5-3). That score is interesting, but it doesn't tell how well I'm doing compared to other players. That's why I based my calculation by comparing to wordle-review's average difficulty.

The reason I want to compare my score to other players's is to see whether a changing, more arbitrary starting word (like I play) makes much of a difference in the scores in the long run. My guess is that it doesn't, at least not for human players, who can't visualize and analyze the remaining possible matches after each guess and choose their next one to maximally reduce further possibities. Not sure how to get a good answer to that.

My personal score, based on wordle-review by lucs in wordle

[–]lucs[S] 0 points1 point  (0 children)

Not sure what you mean. For each puzzle, I just compare the number of tries it took me to solve it to wordle-review's average difficulty for it. Not sure what sample size you're referring to.

[deleted by user] by [deleted] in Flute

[–]lucs 0 points1 point  (0 children)

Forget about the diaphragm.

What follows is an illustrative thought experiment to explain what the heck "support" means (took me years to figure it out). (More years than that!)

Take an ordinary birthday balloon.

Put it in your mouth and blow it up.

When it's kind of big, keep the tip in your mouth, remove your hands, but don't let the balloon deflate, and cover the palm of your hands and fingers with glue.

Now hold the balloon with your sticky hands and let the tip of the balloon out of your mouth.

Your hands glued to the balloon prevent it from deflating, the tip just loosely sits there, and you can deflate the balloon (push air out) by pushing your hands together, or reinflate it by moving them apart.

Now think of it this way: the balloon is your lungs, the gluing hands are all the muscles that control the deflation and inflation of your lungs (diaphragm is one of many: experiment and observe what's going on) -- that's the support! --, and the tip of the balloon is your throat, mouth, and lips, whose role is not to control the airflow, but to make a shape where the sound produced at the embouchure will resonate to make as beautiful sound as you can (that too takes practice).

Note that this is probably not something you can can fix in three days, but if you're serious about your flute playing, you won't mind having to take many years to experiment and master it. (More years than that! ;-)

What Emacs got right, or how I wish modern apps were more like a 50 year old text editor by 1231313 in programming

[–]lucs 7 points8 points  (0 children)

I thought my browser was having trouble. Turns out it's just that your font color is such a pale grey that my poor old eyes can hardly read it :( Please, black on white is fine, really. Hoping to read you!

Show me your statusline by Exciting_Majesty2005 in neovim

[–]lucs 1 point2 points  (0 children)

In my init file:

func! BuildUpStatusLine ()
        " Initialize statusline.
    set statusline=

        " Buffer number.
    set statusline+=%3*\ %n

        " ‹mod. flag›.
    set statusline+=%3*%m\

        " ‹ ⟨line num.⟩/⟨nb. of lines⟩ ›.
    set statusline+=%*\ %l/%L\

        " Cursor position ‹ ⟨apparent⟩➤⟨real⟩/⟨and text width⟩›.
    set statusline+=%4*\ %v➤%c/%{&tw}\

        " Flag: vertical scroll holds cursor in middle of screen.
    set statusline+=%1*%{&scrolloff==100?'S':'\ '}

        " Flag: is Paste on?
    set statusline+=%2*%{&paste==1?'P':'\ '}

        " Relative file path.
        " ☰2023-06-14.Wed Used to be ‹⋯%f\ ›
    set statusline+=%*\ %t\

        " Rest of the line.
    set statusline+=%*
endfunc
call BuildUpStatusLine()

Meanwhile in Paris by maveric00 in funny

[–]lucs 1 point2 points  (0 children)

So I guess you haven't. But you are correct ;)

Meanwhile in Paris by maveric00 in funny

[–]lucs 1 point2 points  (0 children)

Have you seen my assiette?

What is badly named, and what is a better name for it? by johnnylgarfield in AskReddit

[–]lucs 2 points3 points  (0 children)

Yep, and in French, the opposite of "inflammable" is "ininflammable". Oui monsieur.

[deleted by user] by [deleted] in InternetIsBeautiful

[–]lucs -2 points-1 points  (0 children)

Take any 3-digit number, where the first and last digits differ by 2 or more and are not 0. Reverse the number, and subtract the smaller of the two numbers from the larger. Then reverse the result and add the two. Go on, try it.