kyak changed the topic of #qi-hardware to: Copyleft hardware - http://qi-hardware.com | hardware hackers join here to discuss Ben NanoNote, atben/atusb 802.15.4 wireless, anelok and other community driven hw projects | public logging at http://en.qi-hardware.com/irclogs and http://irclog.whitequark.org/qi-hardware
fengling has joined #qi-hardware
fengling has quit [Ping timeout: 240 seconds]
sandeepkr_ has joined #qi-hardware
sandeepkr_ has quit [Read error: Connection reset by peer]
sandeepkr has quit [Ping timeout: 260 seconds]
sandeepkr_ has joined #qi-hardware
sandeepkr__ has joined #qi-hardware
sandeepkr_ has quit [Read error: Connection reset by peer]
fengling has joined #qi-hardware
sandeepkr__ has quit [Read error: No route to host]
sandeepkr__ has joined #qi-hardware
doomlord has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
<whitequark> thats CSS flexbox I think
<whitequark> there is no JS calculations of height
sb0 has joined #qi-hardware
DocScrutinizer05 has quit [Disconnected by services]
DocScrutinizer05 has joined #qi-hardware
pcercuei has joined #qi-hardware
sb0 has quit [Quit: Leaving]
sb0 has joined #qi-hardware
sb0 has quit [Quit: Leaving]
sb0 has joined #qi-hardware
wpwrak has quit [Ping timeout: 252 seconds]
wpwrak has joined #qi-hardware
wpwrak has quit [Ping timeout: 252 seconds]
wpwrak has joined #qi-hardware
fengling has quit [Quit: WeeChat 1.4]
<DocScrutinizer05> whitequark: aah, ok. Well I have no idea what's wrong, but I see it fails. Prolly a real bug in Konqueror then?
<whitequark> yes
<whitequark> flexbox is a farily new feature
<DocScrutinizer05> aah that explains it
doomlord has joined #qi-hardware
sb0 has quit [Read error: Connection reset by peer]
sb0 has joined #qi-hardware
kilae has joined #qi-hardware
pcercuei has quit [Quit: leaving]
kristianpaul has quit [Ping timeout: 258 seconds]
sb0 has quit [Quit: Leaving]
wildlander has joined #qi-hardware
arossdotme has quit [Quit: Ex-Chat]
kilae has quit [Quit: ChatZilla 0.9.92 [Firefox 47.0/20160604131506]]
kristianpaul has joined #qi-hardware
kristianpaul has quit [Changing host]
kristianpaul has joined #qi-hardware
sandeepkr_ has joined #qi-hardware
sandeepkr__ has quit [Ping timeout: 276 seconds]
sandeepkr has joined #qi-hardware
sandeepkr_ has quit [Ping timeout: 258 seconds]
wolfspraul has quit [Ping timeout: 244 seconds]
wolfspraul has joined #qi-hardware
<DocScrutinizer05> any help with rsync anybody? rsync throws error >> cannot delete non-empty directory: usr/lib/osso-chess-ui \n could not make way for new symlink: usr/lib/osso-chess-ui<< after on source a dir got moved and replaced by a symlink
<mth> you have added a flag to delete destination files that no longer exist in the source dir?
<mth> help text lists "--force force deletion of directories even if not empty", but I guess that would be suppressing a symptom rather than fixing an underlying problem
<DocScrutinizer05> mth: the params are rsync -vaRzx --fake-super -- forgot what they stand for, I read the man page only so often
<mth> none of those flags imply deletion of files that don't exist at the source, I think
<DocScrutinizer05> well, that's actually the idea to keep files
<DocScrutinizer05> however when a dir gets replaced by moving it elsewhere and creating a symlink to the new path in old position, I think rsync is handling that in a pretty nonsensical way and I don't know how to handle it any better
<DocScrutinizer05> probably when a root node of a directory tree gets removed and rsync isn't supposed to delete (recursively), all the child elements should get moved to ./lost+found/* or something like that, on destination
<DocScrutinizer05> maybe I could move on to delete on destination option now, since I got btrfs on destination fs
<DocScrutinizer05> actually that's implementing a scheme that'closer to the intended
<DocScrutinizer05> actually that's implementing a scheme that's way closer to the intended
<DocScrutinizer05> the "don't delete on destination" was only half assed effort to keep backups when the source gets corrupted
<DocScrutinizer05> it wouldn't help at all when files get truncated or crippled
<DocScrutinizer05> btrfs copy-on-write is exactly what I want
<DocScrutinizer05> thanks for pointing me into right direction. I'll add the delete option to rsync and wrap the whole script into snapper calls
<DocScrutinizer05> hmm, maybe rsync has a way to rename destination objects from * to *-$postfix, instead of deleting resp overwriting them?
<mth> yes, there is --backup, which can be used to create backup files with a suffix or move backup files to a separte dir
<mth> I never used that, but the man page explains it
<DocScrutinizer05> hmmm >> --backup With this option, preexisting destination files are renamed as each file is transferred or deleted. <<
<DocScrutinizer05> aah yep, you already said that
<DocScrutinizer05> I'll try a -b --del --suffix=BACKUP`date +%Y%m%d` for now
<DocScrutinizer05> hmm, still "cannpt delete non-empty dir..."
<DocScrutinizer05> I guess --delete-before is worth a try then