Explore >> Select a destination


You are here

bpohoriletz.github.io
| | blog.presidentbeef.com
4.7 parsecs away

Travel
| | [AI summary] The article discusses bundling dependencies within Ruby gems to avoid version conflicts and isolate dependencies, using Brakeman as a case study.
| | citizen428.net
6.5 parsecs away

Travel
| | If you often create new Rails apps, application templates can be a real timesaver. They have a very simple API, which allows developers to make changes to the Gemfile, execute Rails or Git commands, manage files and more. Heres a simple template I use to generate a new Rails app with Devise already set up: gem 'devise' after_bundle do rails_command 'generate devise:install' rails_command 'generate devise User' end The first line adds Devise to the Gemfile and the after_bundle hook runs two generators pro...
| | jamesmead.org
4.2 parsecs away

Travel
| | This nix-shell environment provides a Ruby environment capable of running a Rails app without a database
| | jaketae.github.io
19.5 parsecs away

Travel
| As a novice who just started learning Python just three months ago, I was clueless about what virtual environments were. All I knew was that Anaconda was purportedly a good way to download and use Python, in particular because it came with many scientific packages pre-installed. I faintly remember reading somewhere that Anaconda came with conda, a package manager, but I didn't really dig much into it because I was busy learning the Python language to begin with. I wasn't interested in the complicated details-I just wanted to learn how to use this language to start building and graphing and calculating.