Find better directory listings

Built for directory searches

4ANYTHING.directory is a dedicated search engine and resource hub for directory-related queries. Whether you need to find niche listing sites, evaluate directory software, research citation best practices, or track industry news, our system combines multiple indexes, ranking algorithms, and AI tools to deliver focused results. Use the site to search, compare, read guides, and ask our AI for step-by-step help. Part of the 4SEARCH network of topic specific search engines.

Latest Articles


dev.to > syrian963 > count-on-a-prefetched-relation-is-free-filter-costs-a-query-per-row-4acm

count() on a prefetched relation is free. filter() costs a query per row.

4+ day, 10+ hour ago   (599+ words) Twelve queries where you expected two, in a loop that looks like somebody already optimised it. Here is a page that is slower than the version with no optimisation in it at all: Delete the prefetch_related and it is eleven. The…...


dev.to > bruno_costanzo > fundamental-analysis-in-ruby-straight-from-sec-edgar-45b1

Fundamental analysis in Ruby, straight from SEC EDGAR

1+ week, 22+ hour ago   (630+ words) fundamentalista is a Ruby gem for fundamental analysis of listed companies. Version 0.6.0 is on RubyGems. Fundamentalista.configure { |c| c.edgar_user_agent = "Acme Research [email protected]" } apple = Fundamentalista.company("AAPL") year = apple.financials.latest year.income.revenue # BigDecimal year.ratios.roe year.ratios.cash_conversion_cycle year.piotroski....


dev.to > marcoblch > i-added-circuit-breakers-to-a-rails-app-and-had-to-patch-the-gem-twice-4fja

I Added Circuit Breakers to a Rails App and Had to Patch the Gem Twice

1+ week, 1+ day ago   (840+ words) 📖 Originally published on meridianbuild.dev my engineering blog documenting the real bugs and decisions behind OutfitMaker. OutfitMaker leans on a lot of external services. Outfit suggestions, wardrobe image analysis, missing-item detection and trip planning all call Gemini through Vertex AI....


dev.to > constdrop > stop-writing-ruby-tests-in-js-template-literals-meet-rspec-wasm-oco

Stop Writing Ruby Tests in JS Template Literals: Meet rspec-wasm

1+ week, 3+ day ago   (210+ words) If you have built applications with ruby.wasm, you might have encountered a frustrating developer experience when writing unit tests. Testing Ruby logic compiled to WebAssembly usually meant embedding Ruby code inside JavaScript template literals and asserting the results using…...


dev.to > outcomer > six-months-later-the-bundle-is-still-alive-257j

Six Months Later, the Bundle Is Still Alive

1+ week, 4+ day ago   (355+ words) So, it's been half a year since the first stable version of Symfony JSON Schema Validation Bundle was released, which turned out to be version 3. Someone is actually using the bundle consistently. It already has around 150 installations, and that number…...


dev.to > rubycoderai > rubycoderai-a-growing-resource-hub-for-ruby-developers-building-with-ai-4jho

RubyCoder.ai: A Professional Network for the Ruby Community

1+ week, 6+ day ago   (468+ words) Ruby has one of the most established developer communities in software, but the knowledge, tools and people that make up that ecosystem are often spread across dozens of different platforms. RubyCoder.ai is a professional network and resource platform built…...


securityweek.com > critical-ruby-on-rails-vulnerability-in-attackers-crosshairs

Critical Ruby on Rails Vulnerability in Attackers’ Crosshairs

2+ week, 7+ hour ago   (610+ words) Named KindaRails2Shell, the arbitrary file read flaw allows attackers to extract secrets and execute arbitrary code remotely. Hackers are exploiting a critical-severity Ruby on Rails vulnerability that leads to remote code execution (RCE), VulnCheck warns. Tracked as CVE-2026-66066 (CVSS score of…...


dev.to > muhammetsafak > dont-pick-a-partial-index-for-speed-what-i-measured-on-a-10m-row-postgres-queue-table-1mb9

Don't pick a partial index for speed: what I measured on a 10M-row Postgres queue table

3+ week, 1+ day ago   (1260+ words) Early in August someone asked me a question: on a queue table where a few thousand pending rows sit among millions of completed ones, should they use a partial index or a plain one? I said yes, this is the…...


dev.to > ashitoshh01 > i-finally-understood-why-database-indexes-make-queries-faster-226k

I Finally Understood Why Database Indexes Make Queries Faster

3+ week, 1+ day ago   (199+ words) I used to think adding an index to a database was basically a magic “make this query faster” button. Then I understood what was actually happening underneath. Imagine a users table with 1 million records. Without an index, the database may…...


dev.to > burdettelamar > ruby-pathname-moved-to-core-documentation-upgraded-3d00

Ruby Pathname Moved to Core, Documentation Upgraded

3+ week, 1+ day ago   (153+ words) In release 4.0, the Ruby Powers-That-Be have brought class Pathname into the Ruby core. This is a Very Good Thing. Through its many instance methods, a Pathname object provides a consistent and convenient interface to numerous methods in other classes and…...