Abheetha Pradhanabheetha.hashnode.dev·Nov 12, 2024$in Operator in MongoDB usecasesShow a feed of posts made only by users you are following like X’s “Following” section const followingIds = ['user1', 'user2', 'user3']; //Get posts from your following list in the last 24 hours and sort them in descending order const feedPosts = awa...MongoDB
Prince Larbipkwolffe.hashnode.dev·Aug 21, 2024Implementing Speech-to-Text: A Quick GuideA few weeks back, I got a request from a student at UG Legon who needed help with their project. They were having issues with integrating speech-to-text into their workflow using GhanaNLP API, and the Automatic Speech Recognition just wasn’t cutting ...10 likes·46 readsAssembly AI
Yung Ching KWOKyung.hashnode.dev·Jun 19, 2024Solving Puzzle: There is no spoon ep.1https://www.codingame.com/ide/puzzle/there-is-no-spoon-episode-1 This tasks is to list all node and their right and bottom neighbor. push the coordinate of the node to String array with key "i j" through the array and check whether there right and ...list
Meer Uxairmeeruzairwashere.hashnode.dev·Apr 22, 2024Server-side vs Client-side Filtering: Pros, Cons, and Best PracticesFiltering data in web applications can be managed either on the server-side or the client-side, each with its own advantages and disadvantages. Server-side Filtering: This involves performing filtering operations on the server before sending data to ...server
Seye Ogunnoworead.seyeogunnowo.com·Jan 29, 2024Advanced Query Techniques in Django's ORMAs a seasoned Django developer, you're likely well-acquainted with the power and convenience that the Django Object-Relational Mapping (ORM) system provides. However, to truly master Django development and optimize your database interactions, it's cr...raw sql
Keshav Kumarkeshavkr.hashnode.dev·Jul 15, 2023Creating a Dynamic Bootstrap Table in ReactIntroduction: In this tutorial, we'll explore how to build a dynamic Bootstrap table in React using the react-data-table-component library. We'll fetch country data from an external API and display it in a paginated, searchable, and selectable table....189 readsReact
5 Mins Learn5minslearn.hashnode.dev·Jul 19, 2022Git Log — Basics of GitAs we get to familiarize with Git in these series of blogs, it’s highly recommended to know some of the utility commands of Git for debugging purposes. Git Log in short Shows the commit logs Git Log commands is used to list the commits made by the ...filtering