Avatar

pr06lefs

pr06lefs@lemmy.ml
Joined
91 posts • 81 comments
Direct message

The debate site is stormed by fascist militia, most democrats in the building are killed. Trump survives thanks to far right connections and mainstream media plays him up as a profile in courage.

permalink
report
reply

The author seems dead set on a tauri calendar implementation. I came across what is apparently a scheduling toolkit in rust:

https://github.com/fmeringdal/nettu-scheduler

Which I guess could be used to build a desktop calendar app. One flaw in the ointment is that a calendar program really needs email integration. Downloading an ICS file and manually transferring that over to your calendar app isn’t going to cut it.

Which brings us to the lack of solid calendar servers. I’ve searched but I haven’t found anything popular, OSS, easy to install, and useful for groups. Radicale exists but multi user support is a janky hack, while Nextcloud has unreliable sync. I’m looking for features like:

  • reliable calendar sync
  • sharable calendars.
  • scheduling help - when to have a meeting?
  • how many attendees for a group event, how many invited etc.
permalink
report
reply

Check out all the variations jammed into this tune! Netherton went on to win the fiddle championship in Winfield the next year in 2016.

permalink
report
reply

Rei tent I got for 50$ at their parking lot sale. I’ve used it 4 or 5 times a year for 7 or 8 years now and still in great shape.

permalink
report
reply

Akira

permalink
report
reply

Kind of off topic, but you know what would be cool? If you had an ‘man explain’ command that would define all the flags/args in a command, like:

man explain rsync --append-verify --progress -avz -e "ssh -p 2222" root@$dip:/sdcard/DCIM/Camera newphonepix

Would give you:

rsync - a fast, versatile, remote (and local) file-copying tool
      --append-verify          --append w/old data in file checksum
      --progress               show progress during transfer
      --archive, -a            archive mode is -rlptgoD (no -A,-X,-U,-N,-H)
      --verbose, -v            increase verbosity
      --compress, -z           compress file data during the transfer
      --rsh=COMMAND, -e        specify the remote shell to use 

etc.

permalink
report
reply

Piping in the glue. Like how? Syringe?

permalink
report
parent
reply

I went the jank monstrosity path. Well, a few scripts anyway.

I use an app called SimpleSSHD on the phone that lets me ssh in. Then rsync to transfer files. The script to sync pictures is like this:

# file 'droidip' contains the local wifi ip of the phone.  
dip=$(cat droidip)

rsync --append-verify --progress  -avz -e "ssh -p 2222" root@$dip:/sdcard/DCIM/Camera newphonepix

Truthfully it was as much about learning rsync as anything, and now I’m sticking with it because momentum I guess. adb is way faster if you really need to move a lot of files.

permalink
report
reply