Liam

Results 87 comments of Liam

I use Capistrano and Ansible. As you know, they're separate tools, but naturally they work together. Personally, I would completely separate upgrading Ruby from rolling out the new version of...

What does your `ffmpeg-build-script/packages/FFmpeg-release-5.0/ffbuild/config.log` say? I think this might be relevant: ``` /usr/bin/ld: cannot find -lgcc_s /usr/bin/ld: cannot find -lgcc_s /usr/bin/ld: /home/liam/ffmpeg-build-script/workspace/lib/libx265.a(api.cpp.o): in function `x265_12bit::x265_api_get_199(int)': api.cpp:(.text+0x1fa3): warning: Using 'dlopen' in...

I know this issue is old, but for posterity: So are you looking for the go-bindata binary for linux-s390x? `go` probably has the best cross-compilation setup in existence. You just...

I had this issue too. The root cause is that both processes of gpg (the one decrypting and the one importing) ask for a key using dialogs. The importing process...

What if two websites use this? If a user has the same public key stored on both sites and logs in to site 1, then couldn't site 1 log into...

Personally I stopped using capistrano-foreman and wrote the script myself. It works great :+1:

``` list_name = title.split('-') ``` That line causes that because `title` is `bytes` and `'-'` is of course a string. So this is actually related to my other issue, #70...

Oh there's another issue here: In this line: ``` python return [(x.text.encode('utf-8'), x.get('href')) for x in found] ``` `x.text.encode('utf-8')` takes a string (`x.text`) and turns it _into_ a series of...

Whoops, please don't merge yet -- I just realized that this is also the commit which removed the requirement for `urlopen` which I've already removed. Couple minutes :smile: