#parv_note

2024-05-30

… and #Trunks_iOS @trunksapp has ~1+ GB of “Documents & Data” in its name; the “iPhone Storage” currently shows ~600 MB.

Ok, the later certainly does not show the combined sizes of the application & its data in all cases. #parv_note

#iOS17

2024-04-21

... oh #bash v4.3.11(1)-release -- courtesy of stuck in time Ubuntu v14.04.6 courtesy of #WSL v1 of MS Windows v10 -- does not consider "~" to be "$HOME". #parv_note
#theMoreYouKnow🌈✨

2024-04-18
2024-04-04

... Just realized that "USED" column (see "zfsprops(8)") does not list the space(-difference) used by a snapshot due to file system changes which in turn kind of discourages me to not run "zfs-diff(8)"; so need to check "L?REFER" column instead ...

# zfs list -tall -r -o name,used,refer,lrefer root2/usr-local
NAME USED REFER LREFER
root2/usr-local 5.21G 4.44G 10.1G
root2/usr-local@rs_20240401_001300 0B 4.15G 9.90G
root2/usr-local@rs_20240404_114051 0B 4.15G 9.90G
root2/usr-local@rs_20240404_122411 0B 4.44G 10.1G

#ZFS #OpenZFS #parv_note

2024-04-04

Looks like Google "Noto" font packaging in #FreeBSD #packages had changed recently. With the old meta port installed, that would have brought shit tonne of files. So chose to install only some specific ones ("only" 581 MiB installed🙄) ...

# pkg remove -x noto-
# pkg install -x '^noto.+(basic|emoji|mono|symbol|display|s(ans|erif)-extra|devanagari|jp)'

... in a VM where I have not used Xorg in a long while.

Also the command is not "pkg add" to install packages fetched over the internet. #parv_note

2024-03-15

@chiffchaff A day may have 24 * 3600 second. Perhaps however-many(do not care to count the zero in an image)-day is the upper limit?

Ah ...

Date, developer.mozilla.org/en-US/do

(#parv_note #Javascript "Date()" takes Unix epoch _milli_second.)

2024-03-13

...
Did not realize that "The First Cut is the Deepest" was (written by singer-songwriter Cat S) sung by P P A in 1967 en.wikipedia.org/wiki/The_Firs , earlier than Rod S' c 1977 or Sheryl C's c 2003 versions.
#music #parv_note

Needless to say many, very many songs have been written|sung earlier; more promoted|popular ones remain familiar.

(IU's "Empty Cup" kind of reminded me of that)

2024-03-13

While listening to IU's song "Between the Lips", one English phrase "hush hush baby" came up which sounded highly familiar 🤔:ios_loading:
ah yes, that was from No Doubt's song "Don't Speak" (only Gwen S sings that as "hush hush darling")✅

#music #parv_note #KoreanPop #USPop

2024-03-08

I remember "AstraZeneca" the drug corp to remind me of the fictional place of "Gazth-Sonika" in #anime #Madlax en.wikipedia.org/wiki/Madlax
#parv_note

... though I remember more #Noir anime en.wikipedia.org/wiki/Noir_(an which _eventually_ links to Madlax.

Today the order was ...
Astra<something> <drug something>
-> the anime where the place rhymes with the name
-> wonder if that anime was related to "Noir"
-> "Unlike its spiritual successors Madlax<link> ..."
-> wonder if this is the one
-> Oh, "Gazth-Sonika"; yep, this is the one.

2024-02-29

Saw this elsewhere yesterday but seeing again won't hurt. Also makes me to not choose monitors or 'puters with HDMI 2.1 standard specifically #parv_note ...

#HDMIForum to #AMD: No, you can’t make an #openSource #HDMI 2.1 driver: #Linux users can't hit the same resolutions and speeds as Windows—or[, instead use] DisplayPort, 20240229,
by Kevin P,
arstechnica.com/gadgets/2024/0

2024-02-19

@bougiewonderland Thank you🙏 That is something I ought to be on the look out for!
#parv_note

2024-02-13

#parv_note The other group is The Cardigans (& its "Lovefool" song where the music video shows a ship, message in bottle, telescope) that I was thinking of in addition when I was searching for songs by Sixpence and None the Richer.
#music

2024-02-11

Context: tech.lgbt/@parvXtl/11147026892

"#xargs(1)" equivalent is painful in #MSWindows #Powershell; adapted from [0,1,2] to run with [3] ...

cd C:\Users\user
Get-ChildItem -Recurse '.\Downloads' -File -ErrorAction SilentlyContinue | ForEach-Object fullname | ForEach-Object { perl .\bin\sanitize-file-name.pl $_ }

... easier is to run in #WSL 1 ...

cd /mnt/C/Users/user
find ./Downloads/ -type f \
| xargs perl ./bin/sanitize-file-name.pl

# Use of wildcard.
Get-ChildItem -Recurse '.\dir' -Filter '*-*' ... | ...

... this exercise was specifically to find the Powershell syntax #FAFO #TheMoreYouKnow🌈🌟

To somewhat ease the pain, could change the program to take a list of directories with option to (not) recurse🤔🤷🏽‍♂️

---
0- Powershell glob pattern matching, 202112,
stackoverflow.com/questions/70

1- What's the equivalent of xargs in PowerShell?, 201605,
stackoverflow.com/questions/36

2- How to Filter Files and Folders Using PowerShell, delftstack.com/howto/powershel

3- Strawberry Perl, strawberryperl.com/
#parv_note

2024-01-22

#HowDoYouLikeThemApples?
#No_seriously

😒#Ambrosia_apple is overall bland: slightly sweet; not crisp, tangy; worse than Gala, Fuji ones. "Amorphous" comes to mind. Hope now I only have one or none.

🤤#Honeycrisp_apple is damn lovely: crisp, tangy, somewhat sweat. Glad to see it again!

:babaw_win: Also had #PinkLady_apple recently; do not remember exactly how it was but it turned out better than I was (dread|expect)ing ... so I would say it also might have been tangy and/or crisp.
#apple #parv_note

2024-01-17

Unsurprised that #Intel #AlderLake #12thGenerataion #GPU is not supported by "drm-kmod" version 5.1[05]. That ("device=0x46b3") is supported by version 6.1 ...

Re: Alder lake supported? (graphics), 20240117,
by Jan B,
lists.freebsd.org/archives/fre

... by one count need #FreeBSD-CURRENT currently to use version 6.1 ...

Re: Alder lake supported? (graphics), 20240117,
by Chris,
lists.freebsd.org/archives/fre
#GPU_driven_CURRENT_use🙄😒

... so, few months⏳ (12 is also a number) to land the support in 14-STABLE?
#parv_note

2024-01-17

Few days ago tried to give money on #kofi ko-fi.com via #creditCard. The #Paypal widget (not ko-fi itself I think) was asking for a cellular phone number. Fuck that.
#parv_note

Did not faff around with supplying another kind of phone number.

2024-01-17

Setting, use of second time zone hour hand ...

Unlocking The Secrets Of The #SeikoNH34 [#Seiko4R34] | Watch This Before You Buy! - Watch and Learn #92, 20240117,
by #LongIslandWatch,
youtube.com/watch?v=OuTsP71dpc
invidious.slipfox.xyz/watch?v=
#parv_note #wristwatch #watchCaliber "#automaticWatch"

---
Seiko Instruments (SII, TMI) Caliber NH34,
calibercorner.com/seiko-calibe
(that "TMI" sans FTMI made me curious, so: calibercorner.com/whats-the-di )

Seiko Caliber 4R34,
calibercorner.com/seiko-calibe

2024-01-16

@donkeyblam So far I have been buying "FANGTIAN N95 Mask NIOSH Approved Particulate Respirators Protective Face Mask - Pack of 30 (Model FT-N040 / Approval Number TC-84A-7861),White" amazon.com/gp/product/B08KSHPN from Amazon (Camel Camel Camel: camelcamelcamel.com/product/B0 ).

Price had significantly increased from $ 12.95 (202112) for the 10-pack: camelcamelcamel.com/product/B0

In a pinch, visit a hardware store for 3M "9205 N95 Aura" masks (pack of [12]0) (#parv_note as of now still is more expensive ((per mask) than FANGTIAN 30-pack)).

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst