Mendapatkan Referer pada Ruby on Rails
• Kunto Aji - Last modified atSeringkali programmer dihadapkan untuk melakukan redirect berdasarkan referer. Pada Ruby on Rails, cara untuk mendapatkan value referer adalah dengan kode sebagai berikut.
# app/controllers/your_controllers.rb
# Contoh output: http://yourdomain/path
flash[:notice] = "#{request.referer}"
# Atau menggunakan referrer. Rails membuat alias referer dan referrer.
flash[:notice] = "#{request.referrer}"
Recent Posts
C# DbContext ServiceLifeTime
my note about C Sharp ServiceLifeTime
PostgreSQL Index Usage Monitoring
Having too many unused or underused indexes on a table can slow down write and update operations in your PostgreSQL database, making it crucial to regularly identify and manage them for optimal performance.
KAK Labs Newsletter #6 - Staying Safe From Pegasus Spyware
Newsletter #6 - Pegasus, Ruby, PostgreSQL and networkQuality tool
Material Design - Paragraph Spacing
According to Google's Material Design, keep paragraph spacing in the range between .75x and 1.25x of the type size.
Amazon SDK for C# - S3 File Download Methods
Comparison between `TransferUtility.DownloadAsync`, `DownloadSingleFileAsync`, and `GetObjectAsync`.