norman/friendly_id 5594
FriendlyId is the “Swiss Army bulldozer” of slugging and permalink plugins for ActiveRecord. It allows you to create pretty URL’s and work with human-friendly strings as if they were numeric ids for ActiveRecord models.
petergoldstein/dalli 2999
High performance memcached client for Ruby
elight/acts_as_commentable_with_threading 680
Similar to acts_as_commentable; however, utilizes awesome_nested_set to provide threaded comments
Keep track of Sidekiq failed jobs
petergoldstein/cascading.jruby 1
A JRuby DSL for Cascading
petergoldstein/dfs-datastores 1
Dead-simple vertical partitioning, compression, appends, and consolidation of data on a distributed filesystem.
petergoldstein/activerecord-jdbc-adapter 0
ActiveRecord adapter for JDBC and JRuby.
petergoldstein/activerecord-postgis-adapter 0
ActiveRecord connection adapter for PostGIS, based on postgresql and rgeo
The administration framework for Ruby on Rails applications.
Define enum classes in Rails and use them to enumerate ActiveRecord attributes, with I18n support
pull request commenttrusteddomainproject/OpenARC
Add human readable name of chain state to info message.
Can you take a look at the updated patch?
comment created time in 6 hours
PR opened norman/friendly_id
It defines how to use slug columns for locales with region subtags.
pr created time in 8 hours
push eventmperham/sidekiq
commit sha 02d265aac059644d42550677fdea77a7874f27c4
spell corrected (#4788) [ci skip] Co-authored-by: Asbah Ishaq <asbahishaq>
push time in 16 hours
pull request commentmperham/sidekiq
spell corrected in sidekiq.service
Quiet is the correct term here.
comment created time in 21 hours
starteddaniel1111/HueLibEnt
started time in 21 hours
fork eric/HueLibEnt
A library to control Hue entertainment areas from C with an audio visualiser as an example
fork in a day
pull request commenttrusteddomainproject/OpenARC
Add human readable name of chain state to info message.
I feel like it would be cleaner to expose and reuse the existing mechanism in libopenarc for doing this translation (see e.g. https://github.com/trusteddomainproject/OpenARC/blob/eb430dbdeee9f502295fe7a7d5041dfca3f00745/libopenarc/arc.c#L3666)
comment created time in a day
issue openedtrusteddomainproject/OpenARC
OpenARC setup with other milters
Could someone please explain the recommended setup of OpenARC with Postfix? What is the required or recommended sequence of milters doing SPF, DKIM, DMARC, and ARC?
Currently I’m using the following milters in Postfix:
smtpd_milters =
unix:spf/spf-milter.sock
unix:opendkim/opendkim.sock
unix:opendmarc/opendmarc.sock
unix:spamassassin/spamassassin-milter.sock
Where does OpenARC fit in? It has to be after OpenDKIM and before OpenDMARC, is that right? (And can it be made to work at all in the current state?)
created time in 2 days
issue commenttrusteddomainproject/OpenDKIM
Latest tarballs cannot be built using ./configure && make
@martinbogo You closed this by mistake. The discussion above is a distraction.
It is still true that the latest released tarballs cannot be built using ./configure && make, regardless of presence of dependencies.
comment created time in 2 days
issue openedauthindicators/BIMI_Receiver_Guidance
Has "Section 8 - Domain Reputation" been analysed for the legal consequences of running a local source of domain trust intelligence?
"Receivers are advised to consider incorporating local sources of
domain trust intelligence into the processes which ultimately
determine whether or not BIMI logos are displayed."
Imagine the following scenario:
- [email protected] exists.
- Eve sets up example-eve.com, and publishes a BIMI logo belonging to example-alice.com.
- In the absence of any MUST level requirements in "8.2. VMC Root of Trust", example-bob.com chooses to display the brand/logotype of example-alice.com as published by example-eve.com using their "local source of domain trust intelligence".
- [email protected] sends a message to [email protected] fooling [email protected] into believing the message was from [email protected].
- [email protected] suffers a loss.
Could the example-alice.com organisation hold example-bob.com responsible for the loss, given that it was example-bob.com that chose to display the fake brand logotype?
If the answer to the above question ranges from "maybe" to "yes", this will serve as a disincentive to adoption.
created time in 2 days
startedpetergoldstein/dalli
started time in 2 days
issue commentmperham/sidekiq
[Sidekiq UI] TypeError in "/sidekiq/queues" - String can't be coerced into Float
Thanks for you response @jeffblake. Adding a link to unsfafe gems in case someone has a similar error.
comment created time in 3 days
PR opened trusteddomainproject/OpenARC
The message "chain state forced to 1 due to prior result found" contains an internal enum index rather than the name of the chain state. Replace with the human readable meaning.
pr created time in 3 days
issue closedmperham/sidekiq
How to enable TLS for Redis 6 through Sidekiq initializer?
I am not sure if this is the right place to ask but since Help wiki was quite welcoming I wanted to give it a shot!
Just deployed an RoR app on Heroku-20 stack with Redis 6 (Heroku Premium 0 add-on). I keep getting the error below:
OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: certificate verify failed (self signed certificate in certificate chain)
My understading is; I do need to enable TLS. However, I couldn't figure out how.
Can anyone help, please? Thanks!
closed time in 3 days
ogirgincissue commentmperham/sidekiq
How to enable TLS for Redis 6 through Sidekiq initializer?
Solved through adding OpenSSL::SSL::VERIFY_NONE to verify_mode.
Sidekiq.configure_server do |config|
config.redis = { ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE } }
end
Sidekiq.configure_client do |config|
config.redis = { ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE } }
end
For more detail: https://stackoverflow.com/questions/65834575
comment created time in 3 days
issue commentmperham/sidekiq
Sidekiq::Testing.inline! doesn't always execute block
I hit this problem today, and I found that it was caused by the sidekiq-unique-jobs gem. I removed that gem from Gemfile and the job was run inline successfully.
comment created time in 3 days
startedgovtrack/congress-maps
started time in 3 days
issue commentmperham/sidekiq
How to enable TLS for Redis 6 through Sidekiq initializer?
I will do that but was hoping maybe someone did encounter it before. Anyway, thanks a lot for the quick response! Also, I will update this issue, when I have any. 👍
comment created time in 3 days
issue commentmperham/sidekiq
How to enable TLS for Redis 6 through Sidekiq initializer?
I think you’ll need to contact Heroku support for help with the add on. That’s not a Sidekiq error but a lower level issue.
comment created time in 3 days
issue openedmperham/sidekiq
How to enable TLS for Redis 6 through Sidekiq initializer?
I am not sure if this is the right place to ask but since Help wiki was quite welcoming I wanted to give it a shot!
Just deployed an RoR app on Heroku-20 stack with Redis 6 (Heroku Premium 0 add-on). I keep getting the error below:
OpenSSL::SSL::SSLError: SSL_connect returned=1 errno=0 state=error: certificate verify failed (self signed certificate in certificate chain)
My understading is; I do need to enable TLS. However, I couldn't figure out how.
Can anyone help, please? Thanks!
created time in 3 days
push eventmperham/sidekiq
commit sha ed7501eb1f528048d1c285dbf82fbdd21c3f2e64
gems
push time in 3 days
push eventmperham/sidekiq
commit sha 49b5d3351f95b21d8b6cf25e18bf94cd7dd8622a
bump, release
push time in 3 days