Accès réservé...
Log Pwd
Pour s'inscrire ?

« Avril 2024 »

  • Lu | Ma | Me | Je | Ve | Sa | Di |


Webriche: les veilleurs ne dorment jamais...

Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).

La veille     Haut de page     Lendemain


28 Avril 2024 (41)

1: Exploring the useEffect Hook in React

https://amroot.hashnode.dev/exploring-the-useeffect-hook-in-react

Hashnode - javascript (Javascript)

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...


2: So Many Native JavaScript Date Formats

https://jordanbrennan.hashnode.dev/so-many-native-javascript-date-formats

Hashnode - javascript (Javascript)

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...


3: JavaScript vs TypeScript: Why TypeScript is Worth Learning

https://abdullah-dev.hashnode.dev/javascript-vs-typescript-why-typescript-is-worth-learning

Hashnode - javascript (Javascript)

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...


4: Foundations and Essentials for React

https://shubhsharma19.hashnode.dev/foundations-and-essentials-for-react

Hashnode - javascript (Javascript)

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...


5: Mastering MERN: A Beginner's Guide

https://princeofnodes.hashnode.dev/mastering-mern-a-beginners-guide

Hashnode - javascript (Javascript)

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...


6: Quick Setup: Building Ionic Mobile Apps with Nuxt.js

https://abhijeetsonawane.dev/quick-setup-building-ionic-mobile-apps-with-nuxtjs

Hashnode - javascript (Javascript)

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...


7: Understanding Kotlin Coroutines: What, How, and Why'

https://sagar0-0.hashnode.dev/understanding-kotlin-coroutines

Hashnode - Kotlin (Mobiles)

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...


8: Recent Design Finds: Compact Navigation

https://tympanus.net/codrops/2024/04/28/recent-design-finds-compact-navigation/

Codrops (Internet / Design)

A little collection of website menus that are compact and open into nifty boxes or shapes.


9: L'Oncle Sam serre la vis sur TikTok

https://www.lebigdata.fr/loncle-sam-serre-la-vis-sur-tiktok

Le Big Data (dataviz)

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

10: Hosting a Biryani Party: A Tale of Dependency Injection and Inversion of Control

https://webmmr.hashnode.dev/hosting-a-biryani-party-a-tale-of-dependency-injection-and-inversion-of-control

Hashnode - javascript (Javascript)

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...


11: Confessions of a Python Programmer

https://frameworks.hashnode.dev/confessions-of-a-python-programmer

Hashnode - python (python)

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...


12: Infrastructures mortifères. La frontiérisation de la ligne ferroviaire entre Vintimille et Nice

https://www.visionscarto.net/infrastructure-frontiere

Visions Carto (dataviz)

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 [...]


13: JavaScript Function Composition: The Ultimate Developer's Handbook

https://chintanonweb.hashnode.dev/javascript-function-composition-the-ultimate-developers-handbook

Hashnode - javascript (Javascript)

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...


14: Deploy basic Python web application with Docker Compose

https://meghasharma.hashnode.dev/deploy-basic-python-web-application-with-docker-compose

Hashnode - python (python)

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...


15: Tricky Questions About JavaScript's setTimeout

https://gunjanagarwal.hashnode.dev/tricky-questions-about-javascripts-settimeout

Hashnode - javascript (Javascript)

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...


16: TypeScript Branding: Unlocking the Power of Distinct Types

https://prajwalpandey.hashnode.dev/typescript-branding-unlocking-the-power-of-distinct-types

Hashnode - javascript (Javascript)

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...


17: Mastering Higher-Order Functions: A Comprehensive Guide for Developers(lt.38)

https://gopalkdwivedi.hashnode.dev/mastering-higher-order-functions-a-comprehensive-guide-for-developerslt38

Hashnode - javascript (Javascript)

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...


18: Internal Mechanism of Iterator, Iterable, and Generator in Python

https://blog.vishnutiwari.me/internal-mechanism-of-iterator-iterable-and-generator-in-python

Hashnode - python (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...


19: Speed up your Remix knowledge

https://tigerabrodi.blog/speed-up-your-remix-knowledge

Hashnode - javascript (Javascript)

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

20: Transactions in MongoDB with ACID Properties

https://atifff.hashnode.dev/transactions-in-mongodb-with-acid-properties

Hashnode - javascript (Javascript)

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...


21: How To Make A Background Color Switcher Project Using JavaScript'

https://olibhia.hashnode.dev/how-to-make-a-background-color-switcher-project-using-javascript

Hashnode - javascript (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...


22: Day 5 of 100DaysOfCode: Security Password Generator

https://keiran-portfolio.hashnode.dev/day-5-of-100daysofcode-security-password-generator

Hashnode - python (python)

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...


23: Pitfalls to avoid while using spread operator

https://mallikarjun.hashnode.dev/pitfalls-to-avoid-while-using-spread-operator

Hashnode - javascript (Javascript)

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...


24: Understanding JavaScript Loops: for...in vs for...of

https://subhbits.com/understanding-javascript-loops-forin-vs-forof

Hashnode - javascript (Javascript)

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...


25: Understanding the Basics of JavaScript Functions

https://developermohit.com/understanding-the-basics-of-javascript-functions

Hashnode - javascript (Javascript)

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...


26: Step-by-Step Guide to Building a Chatbot Locally: Langchain, Ollama, and Llama3

https://arnabgupta.hashnode.dev/step-by-step-guide-to-building-a-chatbot-locally-langchain-ollama-and-llama3

Hashnode - python (python)

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...


27: Uncovering the JavaScript Event Loop: An introductory manual

https://muskankanani1103.hashnode.dev/uncovering-the-javascript-event-loop-an-introductory-manual

Hashnode - javascript (Javascript)

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...


28: Arnaques par téléphone : Ne répondez surtout pas à cette liste de numéros

https://www.lebigdata.fr/arnaques-par-telephone-onoff

Le Big Data (dataviz)

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.


29: Decoding Kotlin - Your guide to solving the mysterious in Kotlin

https://jesperancinha.hashnode.dev/decoding-kotlin-your-guide-to-solving-the-mysterious-in-kotlin

Hashnode - Kotlin (Mobiles)

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

30: [DAY 12-14] I Built A Piano, City Skyline, Magazine, & More Using HTML & CSS

https://thomaslearnscoding.hashnode.dev/day-12-14-i-built-a-piano-city-skyline-magazine-more-using-html-css

Hashnode - javascript (Javascript)

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...


31: Step-by-Step Guide to Implementing Typewriter Effect in React

https://blogs.devpulkit.in/step-by-step-guide-to-implementing-typewriter-effect-in-react

Hashnode - javascript (Javascript)

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...


32: 5 of the Best Free Coding Tutorials Out There

https://blog.ahmedsuliman.com/5-of-the-best-free-coding-tutorials-out-there

Hashnode - javascript (Javascript)

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 ...


33: Meet Meta AI: Your New Go-To Assistant for a Smarter You!

https://blog.ahmedsuliman.com/meet-meta-ai-your-new-go-to-assistant-for-a-smarter-you

Hashnode - javascript (Javascript)

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...


34: Get Your Location On: A Step-by-Step Guide to Creating a Flutter App with Riverpod and Geolocator with Clean Architecture

https://harishkunchala.com/get-your-location-on-a-step-by-step-guide-to-creating-a-flutter-app-with-riverpod-and-geolocator-with-clean-architecture

Hashnode - Flutter (Flutter)

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...


35: RAG Model using Langchain.py and ChromaDB

https://blog.siddhesh.tech/rag-model-using-langchainpy-and-chromadb

Hashnode - python (python)

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 ...


36: Demystifying Same Origin Policy in Simple Words

https://debajyatidey.hashnode.dev/demystifying-same-origin-policy-in-simple-words

Hashnode - javascript (Javascript)

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....


37: Unlock the Secrets of Coding: Embark on a Journey of Digital Excellence

https://colddsam.com/unlock-the-secrets-of-coding-embark-on-a-journey-of-digital-excellence

Hashnode - javascript (Javascript)

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...


38: Creating Videos with Code: An Intro to Remotion

https://samyakaditya.hashnode.dev/creating-videos-with-code-an-intro-to-remotion

Hashnode - javascript (Javascript)

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...


39: All About Python Lists

https://lonercode.hashnode.dev/all-about-python-lists

Hashnode - python (python)

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.

Présentation

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.

Richard Carlier

Des mots,
toujours des mots...

Collaboration Partage Pagerank Donnees Echange RSS Standards Web Design CSS Participation Accessibilite Mashup Convergence Standardisation Utilisateurs Web 2.0