Explore >> Select a destination


You are here

railsnotes.xyz
| | www.amberbit.com
4.7 parsecs away

Travel
| | [AI summary] The article explains how to optimize Ruby on Rails applications by removing unused components like ActiveRecord, disabling specific middlewares, creating minimal controllers, and using single-file configurations to reduce resource usage and improve security.
| | lancecarlson.com
4.3 parsecs away

Travel
| | Imagine a system that not only stores data but grasps its very essence. A system that can swiftly navigate through myriad data points to pinpoint the most relevant. That's the power of vector databases. They're tailor-made for QA systems, acting as memory boosters for large language models. Their ability to seamlessly link questions to exact answers showcases their pivotal role in modern AI. I'm going to show you how you can setup your very own vector database using Ruby on Rails so you can ask your data questions!
| | earthly.dev
3.8 parsecs away

Travel
| | Learn how to run a Ruby on Rails application inside a Docker container and discover best practices for building Docker images. This tutorial covers...
| | blog.chand1012.dev
12.1 parsecs away

Travel
| In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app.