Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).
La veille Haut de page Lendemain
https://amroot.hashnode.dev/exploring-the-useeffect-hook-in-react
Today, let's delve into the useEffect hook in React, a powerful tool for managing side effects within functional components. I'll walk you through its functionality, the significance of the dependencies array, and the vital role cleanup plays. Unders...
https://jordanbrennan.hashnode.dev/so-many-native-javascript-date-formats
I don't know about you, but I spend most of my time dreaming about the new Temporal API. It's going to make working with dates so much better in so many ways. But for now we have Date and Intl and together they actually offer a lot of date and time f...
https://abdullah-dev.hashnode.dev/javascript-vs-typescript-why-typescript-is-worth-learning
What is TypeScript' Hello, I am a student in Pakistan, and studying web development. In this article, I will show you "How to use basic typescript data type" and "Why we should learn typescript". JavaScript is one of the most popular programming lang...
https://shubhsharma19.hashnode.dev/foundations-and-essentials-for-react
What is react' A javascript library made by facebook and which is used to create large complex user interfaces of frontend. Why to learn react' Makes it easy to build complex frontend UI. Modern UIs are built using libraries instead of making them fr...
https://princeofnodes.hashnode.dev/mastering-mern-a-beginners-guide
Introduction to MERN Development Overview of the MERN Stack The MERN stack is a powerful combination of four technologies which is used for building modern web applications. It's consist of four main components: MongoDB : These is a NoSQL database u...
https://abhijeetsonawane.dev/quick-setup-building-ionic-mobile-apps-with-nuxtjs
In this article, we will understand how to setup the Ionic Framework with Nuxt.js and build cross-platform apps using Capacitor. Introduction Nuxt.js is a free and open-source framework with an intuitive and extendable way to create type-safe, perfor...
https://sagar0-0.hashnode.dev/understanding-kotlin-coroutines
In this article, I'll explain what a Coroutine is, where it fits our programming requirements, and how it behaves internally for our machine. Note: This article doesn't explain the Internal workings of a Coroutine, If you already know what a coroutin...
https://tympanus.net/codrops/2024/04/28/recent-design-finds-compact-navigation/
A little collection of website menus that are compact and open into nifty boxes or shapes.
https://www.lebigdata.fr/loncle-sam-serre-la-vis-sur-tiktok
Le Congrès américain a légiféré pour forcer TikTok à rompre avec sa société mère chinoise ByteDance d'ici un an, sans … Cet article L’Oncle Sam serre la vis sur TikTok a été publié sur LEBIGDATA.FR.
10 / 41
In the world of software development, managing dependencies is a critical aspect of creating maintainable, scalable, and testable applications. If you are familiar with Object Oriented Programming (OOP), then you have probably heard about the S.O.L.I...
https://frameworks.hashnode.dev/confessions-of-a-python-programmer
Disclaimer: There was a time when I was a real 'C' coder. Yes, back in the day, I thought in 'C', dreamt in 'C', and basically lived and breathed 'C'. It was a beautiful, if somewhat monochromatic, world. But as life would have it, things changed'I g...
https://www.visionscarto.net/infrastructure-frontiere
Il y a des corps qui dérangent. Il y a des morts dont on ne parle pas. Il y a des victimes pour lesquelles on crée des catégories à part quand on essaie d'en comptabiliser le nombre : un carré pour les « accidents », un rond pour les « suicides », un triangle pour les « clandestins ». C'est ce que l'on peut voir dans un schéma tiré d'un dossier sur les « accidents de personne [...]
https://chintanonweb.hashnode.dev/javascript-function-composition-the-ultimate-developers-handbook
Understanding Function Composition in JavaScript: A Comprehensive Guide Introduction In the realm of JavaScript programming, mastering function composition can greatly enhance your ability to write clean, modular, and efficient code. But what exactly...
https://meghasharma.hashnode.dev/deploy-basic-python-web-application-with-docker-compose
Using the Flask framework, the application features a hit counter in Redis, providing a practical example of how Docker Compose can be applied in web development scenarios. 'Prerequisites: Ensure Docker is installed on your machine. Docker allows y...
https://gunjanagarwal.hashnode.dev/tricky-questions-about-javascripts-settimeout
Introduction: While working with JavaScript, setTimeout often presents some puzzling scenarios due to its asynchronous nature and the way it interacts with JavaScript's scoping rules. This post explores some of these tricky cases to enhance your unde...
https://prajwalpandey.hashnode.dev/typescript-branding-unlocking-the-power-of-distinct-types
Introduction TypeScript, a superset of JavaScript, has gained immense popularity among developers due to its robust type system and tooling support. One of the lesser-known yet powerful features of TypeScript is branding, which allows developers to c...
Introduction: A higher-order function is a function that deals with other functions in a special way. They refer to functions that can take other functions as arguments or return functions as their results . Also called first class functions. Key poi...
https://blog.vishnutiwari.me/internal-mechanism-of-iterator-iterable-and-generator-in-python
In the realm of Python programming, the concepts of iteration, iterables, and generators serve as fundamental pillars underlying the language's versatility and power. While often encountered in coding endeavors, these concepts can sometimes pose chal...
https://tigerabrodi.blog/speed-up-your-remix-knowledge
Introduction This post is for my younger self. A post that would've helped me get up to speed with Remix faster. What is Remix' Remix is a web framework built on top of the Web Fetch API, allowing for deployment on multiple platforms. It acts as a ce...
20 / 41
https://atifff.hashnode.dev/transactions-in-mongodb-with-acid-properties
Introduction Transactions are set of operations that are executed as a single atomic unit, It means a set of operation is called transaction if all the operation are executed successfully and if any one of the operation fails then the entire transact...
https://olibhia.hashnode.dev/how-to-make-a-background-color-switcher-project-using-javascript
Introduction For the last few months, I have been learning HTML, Tailwind CSS, and JavaScript. So, I thought of building a project with these to improve my DOM manipulation concepts In this article, I will be sharing how I made a Background Color Swi...
https://keiran-portfolio.hashnode.dev/day-5-of-100daysofcode-security-password-generator
On Day 5 of #100DaysOfCode, I have created another mini project called the security password generator. This project consists of the following concepts I have learned from Dr Angela Yu's 100DaysOfCode: The Complete Python Bootcamp Udemy course. Speci...
https://mallikarjun.hashnode.dev/pitfalls-to-avoid-while-using-spread-operator
Recently I was solving a problem that required multiple array operations and combine the array into a single object so naturally like every time I manipulate the array, I used the spread operator to concat two large arrays and reduce function to comb...
https://subhbits.com/understanding-javascript-loops-forin-vs-forof
What are Loops' Imagine you're playing a game where you must say the name of each fruit in a basket. If there are many fruits, it would be tiring to do this one by one, right' In programming, when we want to do something repeatedly, we use a loop. It...
https://developermohit.com/understanding-the-basics-of-javascript-functions
What are Functions ' ' Functions are the fundamental building block for structuring and executing code in JavaScript applications. ' Functions allows you to encapsulate a set of operations, improve code reusability. Function Declaration Defines a fun...
Introduction Imagine having a personal AI assistant that lives on your computer, ready to chat whenever you are. Forget the cloud and privacy concerns ' this is local AI, powered by the muscle of Llama3, a cutting-edge language model, and the easy-to...
https://muskankanani1103.hashnode.dev/uncovering-the-javascript-event-loop-an-introductory-manual
The event loop in JavaScript is a vital component that guarantees code execution and drives the language's asynchronous nature. Every JavaScript developer needs to be aware of how the event loop operates. We'll go into great detail about the event l...
https://www.lebigdata.fr/arnaques-par-telephone-onoff
Les arnaques par téléphone ont besoin de cette application pour vous mettre en confiance. Celle-ci leur permet d'utiliser des numéros … Cet article Arnaques par téléphone : Ne répondez surtout pas à cette liste de numéros a été publié sur LEBIGDATA.FR.
https://jesperancinha.hashnode.dev/decoding-kotlin-your-guide-to-solving-the-mysterious-in-kotlin
On the 24th of April 2024, I gave a presentation about Decoding Kotlin at the JetBrains Headquarters in Amterdam, located close to the RAI: Kotlin MeetUp Amsterdam @ JetBrains! Kotlin Notebooks, Decoding Kotlin & more! I had a blast on that day and i...
30 / 41
Hi everyone! Welcome back to my blog where I document the things I learned while studying to code. I also do this because it helps retain the information and concepts as it is a sort of active recall. During days 12-14, I built various projects to p...
https://blogs.devpulkit.in/step-by-step-guide-to-implementing-typewriter-effect-in-react
Adding interesting features to your website can grab your audience's attention in today's fast digital world. The typewriter effect, like old typewriters, is a delightful touch that can make your web content more lively. In this guide, we will show y...
https://blog.ahmedsuliman.com/5-of-the-best-free-coding-tutorials-out-there
Are you interested in learning to code but don't know where to start' Or perhaps you're looking to improve your coding skills without breaking the bank' Look no further! In this article, we'll explore five of the best free coding tutorials available ...
https://blog.ahmedsuliman.com/meet-meta-ai-your-new-go-to-assistant-for-a-smarter-you
Introduction: In today's fast-paced digital world, staying ahead of the curve requires innovative solutions and cutting-edge technology. That's where Meta AI comes in ' a revolutionary artificial intelligence assistant designed to simplify and enhanc...
Intro: While I was working on our upcoming app GotInfo. I needed to handle location permissions for my user since we use a google map to show the nearby posts pertinent to the user. While I could just use the default permission_handler and be done wi...
https://blog.siddhesh.tech/rag-model-using-langchainpy-and-chromadb
Today, I will discuss creating a Retrieval Augmented Generation (RAG) Model on your custom data using Python, LangChain, and ChromaDB (or any VectorStore you choose). You can find the source code here: Siddhesh-Agarwal/django-rag (github.com) What ...
https://debajyatidey.hashnode.dev/demystifying-same-origin-policy-in-simple-words
According to MDN Web Docs, - The same-origin policy is a critical security mechanism that restricts how a document or script loaded by one origin can interact with a resource from another origin. If you are a web developer or someone learning node....
https://colddsam.com/unlock-the-secrets-of-coding-embark-on-a-journey-of-digital-excellence
Unlock the Secrets of Coding: Embark on a Journey of Digital Excellence Introduction In the rapidly evolving digital landscape, coding has emerged as an indispensable skill. From developing mobile applications and websites to automating tasks and ana...
https://samyakaditya.hashnode.dev/creating-videos-with-code-an-intro-to-remotion
In today's digital landscape, motion graphics have become an essential component of engaging content creation. With the rise of React.js, developers now have access to powerful tools for building interactive user interfaces. One such tool that has be...
https://lonercode.hashnode.dev/all-about-python-lists
Aloha again Python newbies and non-newbies alike. We would be talking about lists today; perhaps one of the most used data types in programming. You may well be aware that programming languages consists of different data types from the primitive type...
La veille Haut de page Lendemain
Note : Webriche.fr est un agrégateur de flux RSS. C'est à dire un outil automatique qui regroupe l'accès à des informations, dont il n'est ni le rédacteur, ni l'éditeur.
Pour toutes questions, merci de contacter Richard Carlier.
Ceci est un site qui explore certains mécanismes du Web 2.0, histoire de jouer avec tout ça...
Oui, une sorte de mashup 2.0 appliqué à la veille informationnelle... Hum, rien de neuf ?
Expérimental, c'est un site collaboratif à usage d'une seule personne. Ou presque.