#mmmm — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #mmmm, aggregated by home.social.
-
Aviation weather for General Francisco J. Mujica International airport in Morelia area (Mexico) is “MMMM 221607Z 32002KT 5SM -RA SCT005 BKN035 OVC100 18/17 A3028 RMK 8/52/ RAB07” : See what it means on https://www.bigorre.org/aero/meteo/mmmm/en #morelia #mexico #generalfranciscojmujicainternationalairport #mmmm #mlm #metar #aviation #aviationweather #avgeek #airport vl
-
Good Morning #Canada
Today is National Hot Pastrami Sandwich Day, and for Canadians that means we celebrate with Montreal Smoked Meat. If you believe that these two sandwich meats are the same thing then this morning's post is for you. The attached article has more information than you could possibly want on the origins and differences between Pastrami and Montreal Smoked Meat. Regular mustard please...#CanadaIsAwesome #MontrealSmokedMeat #Mmmm
https://www.seriouseats.com/difference-between-pastrami-smoked-meat-katzs-schwartzs-mile-end -
Think of the second syllable of "sorbet" to remember that there is just one "r" in "sherbet," despite 7 million Google hits for "sherbert."
"Sherbet" and "sorbet" differ in dairy content in the modern North American senses, but the French "sorbet" once was just a variation of the Turkish "sherbet."
-
That's right kids, it's that time of year...
Time for...my Year in Pie!
Hope you've already eaten, cuz this thread's gonna be delicious.
-
CW: bash question
so, i can use toilet to generate a banner that says whatever. it's just a bunch of lines, saved in a temporary file called tmp0:
toilet shitcore > tmp0
this gives me (may look odd on your screen, haha):
mmmm m m mmmmm mmmmmmm mmm mmmm mmmmm mmmmmm
#" " # # # # m" " m" "m # "# #
"#mmm #mmmm# # # # # # #mmmm" #mmmmm
"# # # # # # # # # "m #
"mmm#" # # mm#mm # "mmm" #mm# # " #mmmmmfrom this temp file i can extract each line by using sed
sed -n '1p' tmp0
that would give me the first line. for the 2nd i'd do
sed -n '2p' tmp0
and i could go on for the remaining three lines.. but that would be silly when i can make ten hello shitcores by doing this:
for ((i = 0 ; i < 10 ; i++)); do
echo "hello shitcore"
doneso my question is.. how tf do i combine my knowlegde here and make a loop that extracts each line from my toilet output and puts it somewhere?