Difference between revisions of "User:Woozle/linkdump/2022"

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
Jump to navigation Jump to search
Line 450: Line 450:
 
* https://www.vox.com/recode/2022/8/10/23300032/air-conditioner-planet-climate-change-heat-pumps - seems to focus on A/C's power-draw as the main issue, but if we move to locally-generated solar, doesn't that become less of a problem? ...especially for smaller buildings.
 
* https://www.vox.com/recode/2022/8/10/23300032/air-conditioner-planet-climate-change-heat-pumps - seems to focus on A/C's power-draw as the main issue, but if we move to locally-generated solar, doesn't that become less of a problem? ...especially for smaller buildings.
 
* https://permacomputing.net/
 
* https://permacomputing.net/
 +
* https://twitter.com/jsrailton/status/1559233605850783744 - Signal security hack enabled by [[Twilio]] phishing attack
 +
** The desktop app doesn't have that option, as far as I can tell.
 +
** I guess I'm irritated enough at Signal's habit of treating desktop as a second-class target (and tying everything to phone numbers, which seemed like a bad security call from the very beginning) that I'll just deal if someone manages to re-register a device with my phone number. That would be the one time I'd be glad that new devices can't import old data/contact (though I still wish existing devices could explicitly send that data over).

Revision as of 19:31, 15 August 2022

January

February

March

April

May

June

July

August

To rotate a video 90 degrees, try:

$INPUTVIDEO='input.mp4'
$OUTPUTVIDEO='output.mp4'
ffmpeg -i $INPUTVIDEO -metadata:s:v rotate="-90" -codec copy $OUTPUTVIDEO