Category: Uncategorized

  • Quickly modifying gcode for higher temp silk (205℃) PLA (TTYT3D Rainbow)

    Making modifications to a gcode file you have (without source .stl) to support a higher temp Silk PLA like the TTYT3D rainbow

  • Convert a pem file into an rsa private…

    Convert a pem file into an rsa private and public key `openssl rsa -in yourfile.pem -out yourfile_rsa` `chmod 400 yourfile_rsa` `openssl rsa -in yourfile.pem -pubout > yourfile_rsa.pub` and `ssh -i yourfile_rsa.pub youruser@hostname` to connect

  • Ruby on Rails + Docker links https evilmartians…

    Ruby on Rails + Docker links https://evilmartians.com/chronicles/ruby-on-whales-docker-for-ruby-rails-development https://docs.docker.com/samples/rails/ Dockerize your Rails app Dependencies Bash Docker Quick Start Update Postgres and Redis connection configurations # config/database.yml host: postgres port: 5432 username: postgres password: password # config/initializers/sidekiq.rb Sidekiq.configure_server do |config| config.redis = {url: “redis://redis_queue:6379/1”} end Sidekiq.configure_client do |config| config.redis = {url: “redis://redis_queue:6379/1”} end # config/environments/development.rb config.cache_store =…