Blossomblossom.hashnode.dev·Dec 20, 2024Callbacks in Javascript: How and Why it Powers FunctionsIn JavaScript, callbacks are the unsung heroes we use absentmindedly in many of our functions and methods. They enable flexibility, reusability, and asynchronous programming. Understanding callbacks is crucial - not just how to implement them but how...Js Bits and piecesJavaScript
Ashdudeashdude1401.hashnode.dev·Dec 8, 2024Filter vs Interceptor in SpringHey Guys, In this blog we gonna cover about the what is filter and interceptor and what are the differences between . Without doing further delay, let get started . What is Filter? Filter is a web level concept. It’s main work is to modify or process...Springboot
Kervin Vasquezkervin.blog·Oct 14, 2024Cómo filtrar elementos de un array en JavaScript sin morir en el intentoEn JavaScript, trabajar con arrays es como cocinar: puedes tener todos los ingredientes (datos) que necesitas, pero si no sabes cómo separarlos bien, ¡terminarás con un desastre en la cocina! Hoy veremos cómo usar .filter() para quedarte solo con los...JavaScript
Eva Chenim1010ioio.hashnode.dev·Sep 26, 2024#46 CSS 濾鏡 filter/ backdrop-filter:模糊、透明圖陰影、調色與毛玻璃效果↓ 今日學習重點 ↓ 學會 CSS 濾鏡 filter 的用法 學會 CSS 背景濾鏡 backdrop-filter 的用法 除了用繪圖軟體在圖片上調整色調,CSS 內建的濾鏡效果也能讓我們做到這些特殊效果,例如:模糊、變亮、對比、色相、飽和度調整等等,甚至還可以做到毛玻璃效果! 今天,我們要介紹的是 filter 與 backdrop-filter 這兩個強大的 CSS 屬性。 一、濾鏡 filter filter 屬性能讓你對 HTML 元素本身做一系列的圖像處理效果,讓我們能...61 readsSuper Easy CSS,極度簡單:寫出好的 CSS,從零開始前端生涯CSS
Ganesh Rama Hegdedesignpatterns.hashnode.dev·Aug 24, 2024Open/Closed Principle (OCP)The definition of OCP that I had mentioned in this blog is this: Software entities (classes, functions, modules, or methods) should be open for extension but closed for modification. This allows you to add new functionality without changing existing ...1 likeTypeScript
Sarah Joysjsscreen.hashnode.dev·Aug 20, 2024Using query params to filter Supabase API Calls in FlutterFlow 🔎📽️ If you'd like to watch instead of read, I walk through the filters in this video. The Problem So, you got your Supabase API call set up, and you're getting ALLLL the data... but now you need to filter it! Maybe you want to only show blog posts th...100 readsflutterflow
Balaji Chennupatibalajich.hashnode.dev·Aug 5, 2024Understanding JavaScript's forEach, Filter, Map, and Reduce MethodsSo basically any js developer who has ever worked in js must have come across arrays, objects, maps, etc. These are all popular data structures used in js to store and retrieve data, Actually these are the most frequently used data structures in js a...1 likeJavascript From Basics To AdvancedJavaScript
Matt Callawayimattacus.dev·Jul 31, 2024Mastering GraphQL: How to Enable Arbitrary List Filtering with Sift.js.Very often, there is a list data type in your GraphQL schema, and a common requirement is to filter the list based on some input variables. Filtering is a crucial feature that allows users to retrieve only the data they need, making applications more...1 like·88 readsGraphQL
Shahnawaz Khanshahnawaz.hashnode.dev·Jul 17, 2024Configure Power BI report filtersToday I earned my "Configure Power BI report filters" badge! I’m so proud to be celebrating this achievement and hope this inspires you to start your own @MicrosoftLearn journey! Keep learning and keep exploring!! Click to see my new achievementdataanalytics
Ritochit Ghoshritochit.hashnode.dev·Jun 27, 2024Dissecting JavaScript IIIntroduction In the last part, we have discussed about the internal workings of JavaScript & some deeper concepts of JavaScript in a much simpler way, in case you haven't checked it yet. Here is the link to that, if you are a beginner trying to learn...63 likes·84 readsDissecting JavaScript