HNHamid Nawazindevworldhub.hashnode.dev·Oct 24, 2024 · 9 min readImplementing reCAPTCHA in ReactWhat Is reCAPTCHA? Before you implement reCAPTCHA on your website, let's take a look at how it works and its common use cases. How reCAPTCHA Works When users visit a website with reCAPTCHA enabled, they're presented with a challenge they must complet...00
HNHamid Nawazindevworldhub.hashnode.dev·Oct 20, 2024 · 6 min readCSS Box Model: A Beginner-Friendly GuideIf you’ve ever tried to build or style a website, you’ve likely heard about CSS, or Cascading Style Sheets. CSS is what makes websites look good, allowing developers to control the layout, colors, fonts, and more. At the core of understanding CSS is ...00
HNHamid Nawazinhamid-nawaz.hashnode.dev·Oct 20, 2024 · 1 min readHow to retrieve namespaces from the Pinecone index?After a couple of days of effort, I've successfully discovered how to retrieve namespaces from the Pinecone index. Here's the method that finally worked: import { Pinecone } from '@pinecone-database/pinecone' const pc = new Pinecone({ apiKey: "YOUR_...00
HNHamid Nawazinhamid-netlify.hashnode.dev·Oct 19, 2024 · 3 min readDeploy backend to Netlify (manual): Step-by-Step GuideTo deploy your backend on Netlify, follow these comprehensive steps: 1) Create a "dist" Folder Start by creating a "dist" folder at the project's base. Inside this folder, make an empty "index.html" file. 2) Create a "functions" Folder Within the pr...00