clif

joined 1 year ago
[–] clif@lemmy.world 6 points 7 hours ago

"Nature is fucking metal"

[–] clif@lemmy.world 8 points 23 hours ago

Might vary by locale? Around here (South US) it seems like every single store has their own rewards/discount/whatever system that requires your phone number but it's not necessary for the transaction... It's just an extra info grab.

Sometimes the user facing POS/credit card reader will let you handle it (enter/skip) but many places rely on the salesperson to ask and then enter it or skip.

But, I also don't get around much so my experience is limited.

[–] clif@lemmy.world 15 points 1 day ago* (last edited 1 day ago) (2 children)

Same.

Cashier: "What's your phone number?" (For the store tracking/rewards/whatever)

Me : "Don't have one!" (As I remove the credit card from the case on the back of myphone)

Nobody has questioned it once. They don't want to ask in the first place but are forced to.

 

cross-posted from: https://lemmy.world/post/20459024

Morgan Nick was six years old when she was abducted from a baseball field in Alma in June 1995. In a news conference Tuesday, Alma Police Chief Jeff Horner said a former person of interest in the case, Billy Jack Lincks, is now the main suspect in Nick’s abduction.

“The most important thing here is Morgan is still missing, but we’ve reached a point where we can concentrate on one suspect to determine the circumstances surrounding Morgan’s abduction,” he said.

Lincks died in 2000 while serving a prison term for sexual indecency with a child. He attempted to abduct a child about 12 weeks after Nick’s disappearance, about eight miles away from where she was last seen.

[–] clif@lemmy.world 3 points 5 days ago

I'd made it so long without hearing that song until it popped up in Umbrella Academy. Streak ruined.

[–] clif@lemmy.world 1 points 1 week ago (1 children)

Remember when small trucks were small? I remember. My 2008 Tacoma (which used to be a small truck) seems about the same size as a 90s model Silverado.

I remember the late 90s Tacomas and S10s. I want them back.

But, I do think we hit critical mass because newer ones seem to be shrinking again... I think.

[–] clif@lemmy.world 2 points 1 week ago

Damn, got removed from your job by down votes. Sorry, that sucks.

[–] clif@lemmy.world 1 points 1 week ago

Not who you're replying too (and not vegetarian/vegan) but I've always said that people who eat meat should have to kill and butcher an animal at least once so they learn where it comes from and how it gets into those tidy shrink wrapped packages in their grocery store.

It's not pleasant and too many people don't understand it.

But, I grew up quite poor where hunting often determined if we were eating so I have a different experience than many. I'm still a big softie though and, while I will do it, I definitely don't like it.

[–] clif@lemmy.world 2 points 1 week ago

Yeah, I still get spam/scam from back in the day when your phone number, address, and email were all public in the whois and it was regularly scraped for targets.

I tell everyone to do the privacy guard/redaction.

[–] clif@lemmy.world 4 points 1 week ago (1 children)

I once had a keyboard with a "Works with Netware!" sticker.

Alas, I can't find any networking gear that has a "works with Linux" sticker so I'm just out of luck on that "Internet" thing all the kids are talking about.

[–] clif@lemmy.world 51 points 1 week ago (6 children)

Generally speaking, programmers like to program (many do it just for fun), and many dislike review. AI removes the programming from the equation in favour of review.

This really resonated with me and is an excellent point. I'm going to have to remember that one.

[–] clif@lemmy.world 28 points 2 weeks ago* (last edited 2 weeks ago)

I feel your pain.

Years ago I threw a party for work friends and acquaintances where I had 30 confirmed and 10 tentative (from calendar invite). I bought a variety of drinks (alcoholic and non) and bought/cooked food for about 50 to ensure there was plenty.

... 4 people showed up.

That was the instant that I stopped giving a fuck. Ever since then I've adopted the approach of "I'm going to do something, you can come if you want, but I'm not planning for you". Or, more commonly, I just don't organize anything :)

EDIT: I should note that this was a recurring yearly party that got bigger and bigger over 5 years until it just died. Pre COVID.

[–] clif@lemmy.world 4 points 2 weeks ago

Damn, beat me to it.

I can also recommend this service.

87
submitted 1 year ago* (last edited 1 year ago) by clif@lemmy.world to c/linux@lemmy.ml
 

Hello fellow Linux Lemmings!

I've been tasked with putting together a 20 hour class for "Introduction to Linux" and I'd like to solicit your opinions for topics that should be covered.

The class is targeted for at least minimally technical people - maybe developers, or future developers, but regardless of background they've never seen or worked with Linux before.

I plan to do a VERY short overview of installing Linux (to a VM - so they have a "real" environment to learn with) and the GUI but the primary focus will be CLI. Imagine tools and tasks you come across while working on a "real" server (or VM).

A high level overview of the topics I currently have allocated is :

  • Super brief history of Linux
  • Benefits and use cases of Linux
  • General overview of the file system and the purposes of the pre-defined directories (/dev, /proc, /etc, /home, /bin, etc)
  • "Everything is a file"
  • File extensions don't matter (windows users : )
  • Note on responsibility - you can delete "in use" files. It will do exactly what you tell it with sometimes minimal guardrails.
  • Everything from here down is CLI only!
  • What is a terminal/CLI and how do we use it?
  • How do we navigate the file system using the CLI
  • How to list, create, copy, move, delete, and read files/directories
  • EDIT: Basic file editing with nano
  • How to search for files (find... maybe locate)
  • Archives and compression (tar, gzip, bzip2)
  • Overview of permissions (read/write/execute, owner, group, chmod, chown)
  • Brief overview of different shells (bash, zsh, etc)
  • How to get help on the CLI (man, info, --help)
  • Tab completion, history
  • Shortcuts / control codes (ctrl+c, ctrl+d, ctrl+a, ctrl+e, and coverage of ctrl+z later)
  • grep
  • Checking processes (top, ps, kill)
  • Signals (sigterm, sigkill, etc - related to kill above)
  • Backgrounding and multitasking (ctrl+z, fg, bg, jobs, nohup, &)
  • Linking (ln)
  • STDIN, STDERR, STDOUT and redirection
  • Redirection (>, >>, <)
  • Command pipes ( | )
  • How to access a remote machine via SSH with UN/PW
  • How to access a remote machine via SSH with key auth (think cloud VMs like EC2)
  • Administrative commands and tasks (su, sudo, how it works, when to use it)
  • Add users and groups
  • How to change your passwd (maybe how to change your default shell too)
  • Restart, shutdown, halt
  • How to install/remove software (package managers, packages, pre-compiled binaries, maybe compilation with make if time allows)
  • Configuring your profile for customizing your environment
  • ENV variables and aliases
  • Network information (ifconfig) and tools (curl, wget, netcat, etc)

Everything from here down is "extra" if time allows (AKA - ensuring I don't run out of material :)

  • Encryption (gpg - symmetric and asymmetric)
  • Backups (rsync, maybe dd)
  • screen/tmux
  • How to setup key based logins/auth
  • EDIT: More advanced CLI text editing with vim
  • sysreq commands
  • srm/shred
  • Shell scripting basics
  • init vs systemd, how to start/stop/status services.
  • Maybe how to create a simple service
  • Run levels
  • sed, awk basics
  • File system types, file system checking, formatting... I hesitate to get into partitioning but it's always an option if I need it.
  • Alternatives to well known win/mac utilities and how to find them. EG: GIMP to replace Photoshop.

What do you think?

Did I miss anything that you deem super important?

Anything that I should definitely keep in the "only if I run out of material" category?

O, and if you have any good ideas for practical exercises I'd love to hear those too. I want to keep them <15min but things like "create a new directory, cd into it, touch a file, list the contents of / and write the output into the file you just created" are perfect.

Thanks!

 

Just 48 hours before the first day of school, the Arkansas Department of Education announced that Advanced Placement African American Studies wouldn't count towards graduation. They said they’re reviewing the course for possible indoctrination.

Republican Gov. Sarah Huckabee Sanders went on Fox News to explain her administration's decision to de-prioritize AP African American studies.

“We cannot perpetuate a lie to our students, and push this propaganda leftist agenda, teaching our kids to hate America, and hate one another," she said.

Sanders has not pointed to anything specific in the AP African American Studies curriculum. The Arkansas Department of Education notified teachers that they’d deleted the course code for AP African American Studies. That means students can’t get graduation credit for taking it.

view more: next ›