[-] clif@lemmy.world 1 points 2 days ago* (last edited 2 days ago)

Internal RAID1 as first line of defense. Rsync to external drives where at least one is always offsite as second. Rclone to cloud storage for my most important data as the third.

Backups 2 and 3 are manual but I have reminders set and do it about once a month. I don't accrue much new data that I can't easily replace so that's fine for me.

[-] clif@lemmy.world 2 points 5 days ago

Is there a sim card buried in there somewhere that can be removed or is it soldered in, potted, etc?

... Or your car bricks if you remove it wouldn't surprise me, regardless.

[-] clif@lemmy.world 2 points 6 days ago

Just keep in mind that if you're sensitive to PWM then you won't be playing the OLED as a handheld : (

Still works fine when attached to a tv, it's just not a handheld/portable anymore.

I should note that I love my deck, I'm just very sad that I can't play it as a portable.

[-] clif@lemmy.world 6 points 6 days ago

If you like this and haven't seen "Good Night, Oppy" you should go do that right now.

[-] clif@lemmy.world 5 points 6 days ago* (last edited 6 days ago)

More motorcycle specific, but here's a couple

  • What's a five letter word for road rash?

answerjeans

  • it doesn't matter how good of a driver you are when there's so many shitty ones out there.

I've heard that one phrased a lot of ways.

EDIT: took me five tries to get the spoiler right : D

[-] clif@lemmy.world 3 points 6 days ago

Yep. I was friends with someone both before and after they bashed their skull on concrete in a roller skating accident. They were never the same, and they weren't different for the better.

25
submitted 2 weeks ago by clif@lemmy.world to c/news@lemmy.world

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 104 points 7 months ago

“Even before birth, all human beings have the image of God, and their lives cannot be destroyed without effacing his glory,” Chief Justice Tom Parker wrote.

That's how it looks to me.

[-] clif@lemmy.world 98 points 10 months ago

My neighbors have a turkey. Every time I walk through the kitchen I look out the window to see if she's in our yard. If so, I run out to pet her.

Also, if I'm working outside she trots over to see what's going on and, of course, I have to stop to pet her for 15 minutes.

She just walks up to me and sits down expecting pets.

[-] clif@lemmy.world 154 points 10 months ago

"you're really good at this and enjoy it so let's get you into middle management where you won't do it anymore and will hate your life"

Yep.

[-] clif@lemmy.world 100 points 1 year ago

Check his pillows

5
Circular Sock Knitting Machine (www.thingiverse.com)

I'm in the process of building this - should be done within a week if my needles will come in. Really looking forward to it since I started hand knitting a pair of socks ~4 years ago and they're maybe 20% done :D

Prints are pretty easy but two are longish (15hrs and 27hrs on my machine/ settings).

Anyone tried something similar?

https://m.youtube.com/watch?v=2y1gakl4IEw

[-] clif@lemmy.world 111 points 1 year ago

I tried to recover my Mojang account and migrate it three times. Each attempt gets a stock response asking for certain info (receipt, email, username). When I provide this, I get a response from a different support user asking for the same thing I just provided. After three to five back and forths (with the same questions and the same answers) I get busy, frustrated, and leave it for a few weeks.

Once I have time, I start over and the exact same thing repeats again.

I wrote it off as a loss last year with an asterisk of "another reason to fucking hate Microsoft"

[-] clif@lemmy.world 172 points 1 year ago

I teach a programming class to young adults (18-25, usually) and was flabbergasted last semester when I realized that a couple of them didn't know what a directory hierarchy/file system was.

My suspicion is that the ease of use angle of "just tell me what you want and I'll find it" led to this. Not saying ease of use is bad, but I expected more from people wanting to learn programming.

And I'm over here meticulously organizing my music library into folders by band, album, year, etc...o the humanity.

116
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!

397
submitted 1 year ago by clif@lemmy.world to c/news@lemmy.world

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.

1
submitted 1 year ago by clif@lemmy.world to c/childfree@lemmy.world

One of these choices has a sliiiiightly higher impact than the others 🤔

Sourced from Mastodon : https://mastodon.social/@Loukas@mastodon.nu/110548011121849945

view more: next ›

clif

joined 1 year ago