TILs - Fueling Curiosity, One Insight at a Time

At Codemancers, we believe every day is an opportunity to grow. This section is where our team shares bite-sized discoveries, technical breakthroughs and fascinating nuggets of wisdom we've stumbled upon in our work.

Published
Author
user-image
Giritharan
System Analyst

Code

Resolving blocked host:


The Blocked Host is a new feature of Rails 6. To resolve the Blocked Host error in rails, add config.hosts.clear to config/environments/development.rb in your Rails project. This disables the functionality in the development environment, allowing requests from ngrok.
#host-block-issue, #rails
Published
Author
user-image
Sujay
Extract the source code of the gem to a local directory by using the command gem unpack GEMNAME.
Published
Author
user-image
Satya
Setup Tailscale in local device and serve your localhost
1. Intsall tailscale from https://tailscale.com/download for your device.
2. Sign up and follow the steps so that your device gets connected.
3. Open your terminal and download tailscale CLI using brew install tailscale
4. Run tailscale serve 3000 (you might get some warning regarding client and server version mismatch)
5. It will say Serve is not enabled on your tailnet. and ask you to visit https://login.tailscale.com/f/serve?node=<node-id>
6. In that link enable the option , and that's it , it will serve your port 3000 successfully.
#tailscale , #devops
Published
Author
user-image
Satya
While changing a column type from one type to another and running rails db:migrate , it will throw the below error

Code

PG::DatatypeMismatch: ERROR:  column "tags" cannot be cast automatically to type jsonb
HINT:  You might need to specify "USING tags::jsonb".


above error ^ because i was converting tags field from type string to jsonb
so in order to fix this we have to mention the USING tags::jsonb and cast the type.

Code

class ChangeTagsToJsonbInTils < ActiveRecord::Migration[7.0]
  def change
    change_column :tils, :tags, 'jsonb USING CAST(tags AS jsonb)'
  end
end


#migration, #database, #rails
Published
Author
user-image
Soniya Rayabagi
Create a PostgreSQL Database in Docker .

Step 1: Download the latest version of the Postgres image :

Code

docker pull postgres


Step 2: Create and Run Postgres Container :

Code

docker run -d --name  -p 5432:5432 -e POSTGRES_PASSWORD= postgres


Step 3: Verify Executing Container :

Code

docker ps


Step 4: Interact with Executing Container :

Code

docker exec -it  bash


Step 5: Connect to Postgresql Database Server :

Code

psql -h localhost -U postgres


Step 6: Create Postgresql Database :

Code

CREATE DATABASE ;
\l


Step 7: Establish a connection with database :

Code

\c


Step 8: Create Database User :

Code

CREATE USER  with PASSWORD ;


Step 9: Exit :

Code

\q


#devops #docker
Published
Author
user-image
Satya
In a typical Rack middleware setup, the call method handles the initial request and generates a response, but it does not control subsequent redirects initiated by external services. If an external service, such as Slack's OAuth, triggers additional redirects after your application responds, modifying headers for those redirects within the same call method may not be directly achievable. Handling subsequent redirects may require alternative approaches, such as additional middleware or different parts of your application's code.
#rails , #rack , #middleware
Published
Author
user-image
Satya
test your gem locally before publishing.
• STEP 1 - cd into your gem directory and run gem build your-gem.gemspec
• STEP 2 - in the same directory then run gem install ./your-gem-<version>.gem (<version> will be replaced by the current version of your gem)
• STEP 3 - Now cd into your project where you want to install this gem.
• STEP 4 - Open Gemfile and add gem 'your-gem', path: '/path/to/your-gem' (Replace /path/to/your-gem with the actual path to your gem.
#ruby-gems , #rails
TIP: you can get your path by running pwd in your terminal where you have opened your gem file.
Published
Author
user-image
Giritharan
System Analyst
Fly Secret Value Displaying Feature:

We can able to see Fly secrets values from terminal . From the Dashboard of fly we can't able to the secret value. But from the terminal we can able to the see secret value .
For that we have use below command:
• First Go the project in terminal and enter the fly ssh console. It redirects you to the fly application in remote.
• Then you can see the what value you want using echo command. Ex: echo $DATABASE_URL . After entered like this it will display what is the value of the key. Likewise you can place what are ever key want to see.
Published
Author
user-image
Soniya Rayabagi
To delete a Docker image we can use a command docker rmi [IMAGE_ID or REPOSITORY:TAG] and ,
To remove all dangling images that consume disk space , can use docker image prune

Showing 29 to 31 of 82 results

Ready to Build Something Amazing?

Codemancers can bring your vision to life and help you achieve your goals