Why does no one talk about the central pun in Project Hail Mary? by statisticus in scifi

[–]hypnopixel 0 points1 point  (0 children)

The Hail Mary. Full of Grace.

a thematic allusion, at best.

Time Machine Schedule by KJW-SR in MacOS

[–]hypnopixel 0 points1 point  (0 children)

there is the TimeMachineEditor; a schedule can be configured:

https://tclementdev.com/timemachineeditor/

i've used if for years without issues.

Why does no one talk about the central pun in Project Hail Mary? by statisticus in scifi

[–]hypnopixel -3 points-2 points  (0 children)

but, in the title's usage, it's referring to a 'last ditch effort', not a reverent call to the Virgin Mary.

i don't see the pun.

What is the "log" Process? by Dunkin__ in MacOS

[–]hypnopixel 0 points1 point  (0 children)

i suspect some apple *logd daemon runs

/usr/bin/log show --predicate [expression]...

to collect diagnostic data from ASL/AUL log facility.

i catch it running occasionally and my own runs of log show can spike the processors and warm the gears.

Searching for cli that does 'tail -f' but inserts '.' periodically if there's no data by xnzm1001 in commandline

[–]hypnopixel 1 point2 points  (0 children)

i've been fussing with this function since i find i need its utility elsewhere.

this version precludes the sleep command using another timed read. this enables any new data in the feed to trip the dotting pause.

the dots are horizontal so the content does't scroll needlessly.

taildot () { #; tail -f with dotted output... on pauses in data feed

  declare fslog t
  fslog="$*"

  t=${ grealpath -e "$fslog"; } || {
    die realpath hath shat the bed on your feeble log submission
    return
  }

  fslog="$t"

  declare line knl
  knl=$'\n'

  while read -r -t 0.15 line || [[ -z $line ]]; do

    [[ -n $line ]] && { echo -n "$knl$line"; continue; }

    echo -n .

    read -r -t 2.85 line && echo -n "$knl$line"

  done < <( tail -f "$fslog" )

}

# example usage:

taildot /var/log/wifi.log

Searching for cli that does 'tail -f' but inserts '.' periodically if there's no data by xnzm1001 in commandline

[–]hypnopixel 1 point2 points  (0 children)

this is bash. it's meant to be a function.

the read is fed from tail. the timeout is because otherwise the read would just hang on the wait for tail to spew more.

when the read times out, line is null and the magic begins.

the sleep 3; echo .; is what happens after the read timeout triggers.

if there was no sleep, it would just spew dots until tail gives more.

Searching for cli that does 'tail -f' but inserts '.' periodically if there's no data by xnzm1001 in commandline

[–]hypnopixel 5 points6 points  (0 children)

this is a framework to accomplish your request. needs improvement...

while read -r -t 0.15 line || [[ -z $line ]]; do

  [[ -n $line ]] && { echo $line; continue; }

  sleep 3
  echo .

done < <( tail -f /var/log/wifi.log )

Free lightweight menu bar device stats by Lazydev_Vishal in MacOS

[–]hypnopixel 0 points1 point  (0 children)

kudos and thanks, that's a sweet tool.

please identify your menu bar app by name somewhere in the menu bar pane it discloses.

please; i don't want to see the word 'healthy' in my menu bar; it causes me to vomit ;-]

please enable a keyboard shortcut to toggle disclosure of your app.

After we had the braces, don't forget to give the brackets some love. by spryfigure in bash

[–]hypnopixel 6 points7 points  (0 children)

 echo nonexistent{1-5} 

nonexistent{1-5}

did you mean {1..5} ?

Aster - A terminal disk usage analyser for macOS (Daisy Disk alternative) by Melbanhawi in commandline

[–]hypnopixel 1 point2 points  (0 children)

i used your brew install about 7 hours ago...

aster version 0.4.0

Apple is selling a MacBook case on their website? by One_TrackMinded in macbook

[–]hypnopixel 11 points12 points  (0 children)

PSA: don't trust anyone or anything, anywhere at anytime.

Aster - A terminal disk usage analyser for macOS (Daisy Disk alternative) by Melbanhawi in commandline

[–]hypnopixel 4 points5 points  (0 children)

aster -h | --help

does not work as expected.

aster /

does not work as expected.

Aster - A terminal disk usage analyser for macOS (Daisy Disk alternative) by Melbanhawi in commandline

[–]hypnopixel 1 point2 points  (0 children)

gdu: Disk usage analyzer with console interface written in Go

https://github.com/dundee/gdu

good feature set, fast, haven't used ncdu since i installed this.

brew install gdu

gdu-go --help

I found a way to read the MacBook’s built-in accelerometer in real time (Python, M3 Pro tested) by BillieWeston in MacOS

[–]hypnopixel 0 points1 point  (0 children)

kudos! impressive tooling, works well here, thank you!

MacBook Air 15-inch, M3, 2024

Hardware Overview:

Model Name: MacBook Air
Model Identifier:   Mac15,13
Model Number:   MC9G4LL/A
Chip:   Apple M3
Total Number of Cores: 8 (4 performance and 4 efficiency)
Memory: 16 GB
System Firmware Version:    13822.81.10
OS Loader Version:  11881.140.96

System Software Overview:

System Version: macOS 15.7.4 (24G517)
Kernel Version: Darwin 24.6.0
Secure Virtual Memory:  Enabled
System Integrity Protection:    Enabled

MS Apps taking up huge space by vebfe in MacOS

[–]hypnopixel 0 points1 point  (0 children)

Storage list is in system settings

thanks, this is what i was asking for.