Randy Syring

Results 121 comments of Randy Syring

Make sure your User class is using acts_as_authentic: ``` #app/models/user.rb class User < ActiveRecord::Base acts_as_authentic end ``` I did all kinds of troubleshooting and had somehow removed this when troubleshooting...

I was using 0.6.9, but only accidentally. I had some old package that required a pre 0.7 version. I can fix on my side pretty easy. FWIW, if you can...

Possibly due to Firefox being a snap by default in 22.04? If so, probably related to #33.

Ah, obviously missed that. Sorry. :)

I recently had to make some program activity dependent on whether or not the internet was up. I used the following snippet: ``` python def internet_up(host="8.8.8.8", port=53): """ Host: 8.8.8.8...

See https://github.com/rfjakob/gocryptfs for a possible alternative. The readme for that project says it was created in part to resolve the security issues present in this project.

Updating YNAB again, just wondering if there is still plans to make updates easier. Thanks. :)

> in "xunit" style one can jsut declare those a fixture and it works, As I stated in the initial description, this becomes problematic for `setup_class` and `autouse`: > Using...

@bluetech I can't check now, but I will in a bit. It could be that it didn't work b/c I wasn't including `@classmethod`. I think I cobbled the example together...