This checklist should help you to check edge cases that are not part of the default Carrierwave configuration.
...Mixkit stock videos Distill Pixelmob Collection of other designs Filter web designs by color, topic and tags (e.g. contact form) with Dribbble Filter existing web designs by topic with land...
Filter existing web designs by topic with Webframe Filter existing web designs by topic with Landingfolio Filter existing web designs by topic with SaaS Websites Filter existing web designs...
...to each other. This can serve as a ground for further research into this topic within this problem domain. Implementation Usage First you have to require spec_helper_coverage.rb, which hooks the...
...publish an article in Ruby weekly. Further academic work would be possible on this topic, but it is not planned at the moment. Other methods could be implemented, evaluated and...
...on all devices. This card is heavily linked to provide additional resources on each topic. Keep in mind that this is a "snapshot" as of early 2020 and might change...
...quickly as new technologies evolve. If you are new to this topic, I strongly recommend reading the MDN guide on audio and video formats. TL;DR: To ensure that the...
...readers stumble across our cards when they have a problem and are researching the topic in the search engine of their choice. However, there is a search function in makandra...
...cards as well, which can help you find anything available on the topics that are currently on your mind. The search function works across all decks. Our decks in makandra...
Prose spec of the SameSite attribute, illustrated A sceptical view on the topic RFC How to debug SameSite Cookie issues
...adhering to common conventions, many requirements are fulfilled automatically. See our card on that topic for details. Ad blocking Install an adblocker like Adblock Plus and check if elements are...
...the global namespace. You can also read the Rubocop docs on LeakyConstantDeclaration about this topic. When would I need this? Most specs don't require you to define a class...
...Emde, the creator of the pull request wrote two great blog posts on the topic: How to: Rails params.expect How to convert to params.expect in Rails 8.0 Using Strong Parameters...
...job in that regard. In bigger teams, the project lead should try to assign topics to developers in such a way to avoid that unnecessarily many people have to be...
...familiar with a specific topic. Project manager Not responsible for any technical aspects of the project Requirement engineering with the customer Create stories with the project lead Communicate with the...
# Dangerous! url_for(params.to_unsafe_h)` We have an extra card on this topic. Further reading It's also worth to read Rails: Using require and permit for attributes...
...a complete mess that makes your code hard to read. Consider these classes: class Topic < ActiveRecord::Base def title "A title" end def category "Topic category" end end
...ActiveRecord::Base belongs_to :topic def_delegators :topic, :title, :category end Here, we can say Post.new.title and actually read title from the Post's Topic object. Because of what we...
...the singleton class of a ruby object as stated in many posts on this topic. But in fact, it is added to the ancestors chain of the singleton class! Even...
...with empty collection class Researcher < ActiveRecord::Base has_many :papers end class Paper validates :topic, inclusion: { in: ['computer_science', 'mathematics', 'economy'] } end Easy goal: Delete all researches who write only...
...about computer science. # Bad (deletes researchers with no topic at all) Researcher.find_each |researcher| do if researcher.papers.all? { |topic| topic == 'computer_science' } researcher.destroy! end end # Good Researcher.find_each |researcher| do
...an SVG into any raster image format. We have a separate card on that topic...
...layout examples for feature demonstration Layout patterns for copy-paste use All grouped by topic: "Placing items onto the grid", "Sizing of tracks and items" etc. with video, linked articles...
...and qualified fields from search. E.g. search for included -excluded "search this" -"not that" topic:"Yes" -topic:"No" This will soon also work in makandra cards...
...LoadError: dlopen(/Users/makandra/.rvm/gems/ruby-1.8.7-p374/gems/therubyracer-0.9.9/ext/v8/v8.bundle, 9): Symbol not found: __ZN2v88internal8Snapshot13context_size_E Helpful threads on this topic Stackoverflow post GitHub issue Fixing installation of libv8 gem with Ruby 1.8 Also see Installation...
...which implements the technique in this card with tests and all caveats fixed. Related topic: JavaScript: Working with Query Parameters Javascript: Read params from url...
...type of de.html instead of the expected text/html. There are some discussions on this topic that offer workarounds, but none solved it for me. The issue occurred with Rails...
...the big-models problem. However, there’s a fair amount of controversy about this topic in the community. Not everyone is convinced that Concerns are the “right“ solution to the...
Generate dummy images for a given dimension and topic...
Best results in other decks
If I want to compare changes on a topic branch to master, I find it easiest and safest to do the following: git checkout master git checkout -b trial_merge...
...git merge topic_branch After completing the merge, it is easy to see the consolidated change from master git diff master When done, simply delete the trial_merge branch
...the following chapters from The Pragmatic Programmer, anniversary edition (in our library): Chapter 1, Topic 3: Software Entropy Chapter 2, Topic 9: The Evils of Duplication Chapter 2, Topic...
Chapter 5, Topic 28: Decoupling (and the Law of Demeter) Read the following chapters from Clean Code (in our library): Chapter 1: Clean Code Chapter 2: Meaningful Names