canadaduane

joined 1 year ago
[–] canadaduane@lemmy.ca 19 points 5 days ago

I'm sorry for your suffering and heartache. I wish you the best.

[–] canadaduane@lemmy.ca 2 points 1 month ago

This is almost completely true, but I would add the caveat that PWAs (progressive web apps) are not as easy to discover and less familiar to install as an app in an app/play store. It might also be because it's in Apple and Google's best interest to not streamline that. But it's still an obstacle nevertheless.

[–] canadaduane@lemmy.ca 1 points 1 month ago (1 children)

What would a good incentive structure look like? For example, would working with public school districts and being paid by them to ensure safe learning experiences count? Or are you thinking of something else?

[–] canadaduane@lemmy.ca 2 points 1 month ago (1 children)

I wonder if some of our intelligence is artificial. Being able to drive directly to any destination, for example, with a simple cell-phone lookup. Reading lifetimes worth of experience in books that doesn't naturally come at birth. Learning incredibly complex languages that are inherited not by genes, but by environment--and, depending on the language, being able to distinguish different colors.

[–] canadaduane@lemmy.ca 16 points 2 months ago (3 children)

A coffee bean is a seed from the Coffea plant and the source for coffee. It is the pit inside the red or purple fruit. This fruit is often referred to as a coffee cherry, and like the cherry, it is a fruit with a pit.

https://en.wikipedia.org/wiki/Coffee_bean

[–] canadaduane@lemmy.ca 1 points 2 months ago (3 children)

I appreciate the candid analysis, but perhaps "nothing to see here" (my paraphrase) is only one part of the story. The other part is that there is genuine innovation and new things within reach that were not possible before. For example, personalized learning--the dream of giving a tutor to each child, so we can overcome Bloom's 2 Sigma Problem--is far more likely with LLMs in the picture than before. It isn't a panacea, but it is certainly more useful than cryptocurrency kept promising to be IMO.

[–] canadaduane@lemmy.ca 2 points 2 months ago (3 children)

Is human intelligence artificial? #philosophy

 
[–] canadaduane@lemmy.ca 0 points 3 months ago

Have you ever heard the story of the snake?

One evening, a man walks along a dimly lit path. He suddenly halts, his heart pounding with fear. Before him, on the ground, lies what appears to be a venomous snake. He freezes, paralyzed with dread. Only when a friend comes by with a lantern does the true nature of the object come to light: it is merely a piece of rope.

I learned this story from Thich Nhat Hanh, a Buddhist author. He would indicate with stories like this that our perceptions shape our reality. Often, we react out of fear and misunderstanding, seeing snakes where there are none. He said that mindfulness and deeper understanding can act like the lantern, illuminating the true nature of our experiences.

[–] canadaduane@lemmy.ca 6 points 3 months ago

Aegis on Android is also very nice (and open source).

[–] canadaduane@lemmy.ca 1 points 3 months ago

Working development system. I got quite far, but after so much work, became very frustrated when a VSCode plugin wouldn't work properly because it needed (and assumed) read/write access. I didn't want to have to manage and think about every little plugin I experimented with at the OS level.

[–] canadaduane@lemmy.ca 7 points 3 months ago

I wonder if it would help to think back to the first time you littered? When I was 5 or 6, I remember eating a candy and not wanting the wrapper any more. It had to be someone else who saw what I did and pointed out that it isn't good if we all did this, because then the playground would be all full of trash and we couldn't play there. I was like, "Oh, I get it." But if someone hadn't explained it to me, I think the behavior could have innocently continued for quite some time. I grew up in a very rural place (northern Canada).

[–] canadaduane@lemmy.ca 1 points 3 months ago (2 children)

Your condescension has sent my IED absolutely through the roof

Do I have to break out the crayons for you?

You understand condescension, and yet you still do it yourself.

 

Some article websites (I'm looking at msn.com right now, as an example) show the first page or so of article content and then have a "Continue Reading" button, which you must click to see the rest of the article. This seems so ridiculous, from a UX perspective--I know how to scroll down to continue reading, so why hide the text and make me click a button, then have me scroll? Why has this become a fairly common practice?

51
submitted 10 months ago* (last edited 10 months ago) by canadaduane@lemmy.ca to c/linux@lemmy.ml
 

I want to run a command and see all of its output on the left hand side, while simultaneously searching/grepping for particular lines on the right hand side. In other words, I want a temporary vertically split screen in my CLI, ideally with scrollback on each side of the split, but where I expect the left hand side to be scrolling thousands of lines quickly, while on the right hand side is a slow accumulation of "matches" to my grep.

Is this possible today? What tools would you recommend to accomplish this?

EDIT: To be clear, a one-liner is preferable over learning tmux or screen, although this does motivate me to perhaps begin learning tmux.

In case this is an X/Y problem: The specific command I'm trying to run is an rsync simulation (dry-run) where I want to both check that the command works, and subsequently check that there are no denied errors. The recommended way to do this is to run the command twice, as follows (but I want to combine it into one pass):

# first specify the "-n" parameter so rsync will simulate its operation. You should use this before you start:
rsync -naP --exclude-from=rsync-homedir-local.txt /home/$USER/ $BACKUPDIR/

# check for permission denied errors in your homedir:
rsync -naP --exclude-from=rsync-homedir-local.txt /home/$USER/ $BACKUPDIR/ | grep denied
 

Beginning Linux user: "Ctrl-Z is undo, right?"

Advanced Linux user: "Ctrl-Z dammit fg"

view more: next ›