rclone (remote) token update

when your super spiffy rclone setup needs a token refresh … ssh into the server remotely with the requisite port forwarding enabled. ssh -L 53682:localhost:53682 username@server update the token rclone config update <myremote> env_auth true do the needful with your OAuth provider meta location: minneapolis, mn weather: 🌫 (Mist) +64°F

December 3, 2022 · steve ulrich

TIL: y is not Y is not year, like you'd think

unicode date format patterns are a little more nuanced than the “standard” strftime() supported formats. note the difference between the following: man strftime (linux) %y The year as a decimal number without a century (range 00 to 99). (Calculated from tm_year) %Y The year as a decimal number including the century. (Calculated from tm_year) man strftime (osx) %Y is replaced by the year with century as a decimal number. %y is replaced by the year without century as a decimal number (00-99)....

December 30, 2019 · sulrich