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


Samedi 20 Avril 2024 (63)

1: Two Pointers pattern

https://tossef.hashnode.dev/two-pointers-pattern

Hashnode - javascript (Javascript)

In the world of algorithms and data structures, efficient solutions often rely on clever techniques to manipulate data. One such technique, the "two pointers" approach, is particularly useful for solving a variety of problems. While traditionally ass...


2: Python RAG with Complex PDFs

https://beabetterswe.com/python-rag-with-complex-pdfs

Hashnode - python (python)

INTRO If you are here, it means you have the same problem I had. We can help each other. I want to create a working RAG. Many people explain how to build a "RAG" architecture, but often it does not work as expected. Dealing with complex documents is ...


3: Unveiling JavaScript: Conditional Operators

https://patelmuqarrab.hashnode.dev/unveiling-javascript-conditional-operators

Hashnode - javascript (Javascript)

The JavaScript conditional operator, also known as the ternary operator, offers a concise way to make decisions within your code. It evaluates a condition and executes one of two expressions based on the result (truthy or falsy). Structure and Syntax...


4: Playwright Web Scraping 2024 - Tutorial

https://crawlbase.hashnode.dev/playwright-web-scraping-2024-tutorial

Hashnode - python (python)

This blog is originally posted to the crawlbase blog. In this tutorial, our main focus will be on Playwright web scraping. So what is Playwright' It's a handy framework created by Microsoft. It's known for making web interactions more streamlined and...


5: Weekend Reading ' WD40 smells so delicious

https://labnotes.org/weekend-reading-wd40-smells-so-delicious/

Lab notes (Développement)

This week we got a new incarnation of Norton Commander, the best flopping electric vehicle, a reason to keep everyone happy, conscious invertebrates, a 420 cat, and colorful eggs.


6: Prisma: Elevating Data Management in Modern Development

https://opyjo2.hashnode.dev/prisma-elevating-data-management-in-modern-development

Hashnode - javascript (Javascript)

For developers working with relational databases, Object-Relational Mappers (ORMs) have long been a staple in the toolbox. However,traditional ORMs can sometimes feel clunky and introduce complexity. Enter Prisma, a next-generation ORM designed to st...


7: Extract Large-Scale Data for Finance

https://crawlbase.hashnode.dev/extract-large-scale-data-for-finance

Hashnode - python (python)

This blog is originally posted to the crawlbase blog. Gathering and analyzing large amounts of data in the finance industry is important as this industry thrives on data-driven decision-making. The industry uses this vast amount of information to sta...


8: Simulate a black hole for React Native app'

https://chriisduran.hashnode.dev/simulate-a-black-hole-for-react-native-app

Hashnode - javascript (Javascript)

Hi everyone, i've created this interesting article on my Medium, check it out ' https://chriisduran.medium.com/simulate-a-black-hole-for-react-native-app-96c4d12ced83


9: Why Must to Use @Defer DeferViews in Angular

https://www.danywalls.com/why-must-to-use-defer-deferviews-in-angular

Hashnode - javascript (Javascript)

The Performance, this is one most important topics when we build applications, now days we work with huge amount of components and needs to think how to improve the bundle size in our apps. The Angular team knows that, and launches great and amazing ...


10 / 63

10: Using @Defer DeferViews in Angular 17

https://www.danywalls.com/using-defer-deferviews-in-angular-17

Hashnode - javascript (Javascript)

The Performance, this is one most important topics when we build applications, now days we work with huge amount of components and needs to think how to improve the bundle size in our apps. The Angular team knows that, and launches great and amazing ...


11: Java developer try Jetpack Compose for first time

https://chriisduran.hashnode.dev/java-developer-try-jetpack-compose-for-first-time

Hashnode - Kotlin (Mobiles)

Hi everyone, i've created this interesting article in my Medium, check it out ': https://chriisduran.medium.com/java-developer-try-jetpack-compose-for-first-time-f2c87faba8d5


12: Example of usePrevious() Custom hook in react.js

https://thecloudpi.hashnode.dev/example-of-useprevious-custom-hook-in-reactjs

Hashnode - javascript (Javascript)

Here's how to make a usePrevious() hook in React, letting you see the last value of a state or prop: import { useRef, useEffect } from 'react'; const usePrevious = (value) => { const ref = useRef(); useEffect(() => { ref.current = value; ...


13: Example of usePrevious() Custom hook in react.js

https://lingarajtechhub.com/example-of-useprevious-custom-hook-in-reactjs

Hashnode - javascript (Javascript)

Here's how to make a usePrevious() hook in React, letting you see the last value of a state or prop: import { useRef, useEffect } from 'react'; const usePrevious = (value) => { const ref = useRef(); useEffect(() => { ref.current = value; ...


14: Part 1 - How to create a micro app for MechCloud

https://blog.mechcloud.io/part-1-how-to-create-a-micro-app-for-mechcloud

Hashnode - vuejs (Javascript)

Introduction This tutorial is first in a series of tutorials where we will dive deep into the process of creating a micro app for MechCloud. Please feel free to read this post which describes how micro app based architecture could be a game changer f...


15: Example of useToggle() Custom hook in React.js

https://thecloudpi.hashnode.dev/example-of-usetoggle-custom-hook-in-reactjs

Hashnode - javascript (Javascript)

Here's how to make a useToggle hook in React, which lets you switch between two states (like true and false): import { useState } from 'react'; const useToggle = (initialValue = false) => { const [value, setValue] = useState(initialValue); cons...


16: Conversez, créez, explorez: Meta AI repousse les limites

https://www.lebigdata.fr/conversez-creez-explorez-meta-ai-repousse-les-limites

Le Big Data (dataviz)

Meta mise massivement sur l'intelligence artificielle générative en déployant son nouvel assistant conversationnel Meta AI, propulsé par son grand modèle … Cet article Conversez, créez, explorez: Meta AI repousse les limites a été publié sur LEBIGDATA.FR.


17: Dash: Web applications with Python

https://srarceb.hashnode.dev/dash-web-applications-with-python

Hashnode - python (python)

What is Dash' Dash is a Python framework used to create interactive web applications and data analytics. It is built on top of Flask, Plotly.js, and React.js, allowing developers to create complete web applications using only Python. Main Features Py...


18: Unveiling JavaScript: Logical Operators

https://patelmuqarrab.hashnode.dev/unveiling-javascript-logical-operators

Hashnode - javascript (Javascript)

Logical operators in JavaScript are the gatekeepers of control flow. They combine Boolean expressions (true or false statements) to create more complex conditions. There are three main operators: AND (&&): Requires both operands to be true for the r...


19: Unveiling JavaScript: Bitwise Operators

https://patelmuqarrab.hashnode.dev/unveiling-javascript-bitwise-operators

Hashnode - javascript (Javascript)

Bitwise operators delve into the fascinating world of binary operations on integers. In JavaScript, these operators manipulate individual bits within a 32-bit signed integer, providing a powerful tool for low-level programming tasks. Key Points: Ope...


20 / 63

20: Deep Dive into Functional Programming in Javascript

https://techblog.alexmerced.com/deep-dive-into-functional-programming-in-javascript

Hashnode - javascript (Javascript)

Subscribe to My Coding Youtube Channel Subscribe to my Data Youtube Channel Functional programming (FP) has gained significant traction in the world of software development, and JavaScript developers are increasingly turning to this paradigm to solv...


21: Why do we need CORS to access CDN links'

https://shubhsharma19.hashnode.dev/why-do-we-need-cors-to-access-cdn-links

Hashnode - javascript (Javascript)

Intro When you use a Content Delivery Network (CDN) to host static assets for your website, like images or Javascript files, those files are being served from a different domain than your main website. This difference in domain can cause security iss...


22: Unveiling JavaScript: Comparison Operators

https://patelmuqarrab.hashnode.dev/unveiling-javascript-comparison-operators

Hashnode - javascript (Javascript)

JavaScript comparison operators are your workhorses for evaluating relationships between values. They return true or false based on whether a condition holds. Types of Comparison Operators JavaScript offers a toolbox of comparison operators, each ser...


23: Exploring the Concept of Asynchronous JavaScript

https://savneet.hashnode.dev/exploring-the-concept-of-asynchronous-javascript

Hashnode - javascript (Javascript)

How does JavaScript execute the code' JavaScript is a single-threaded programming language. This means that it can execute only one piece of code at a time. Therefore, if a long-running operation is executing, it will block the execution of any other...


24: Asynchronous JavaScript

https://webtechnologycoder.hashnode.dev/asynchronous-javascript

Hashnode - javascript (Javascript)

How JS executes the code' The browser's JavaScript engine then creates a special environment to handle the transformation and execution of this JavaScript code. This environment is known as the Execution Context. Execution Context has two components ...


25: About Asynchronous JavaScript

https://sanjeevarayudu.hashnode.dev/about-asynchronous-javascript

Hashnode - javascript (Javascript)

JavaScript executes code in a single-threaded, synchronous manner,which means it process one task at a time in sequential order. Call Stack The core of JavaScript execution model is the call stack. The call stack is a data structure that records wher...


26: Understanding Prototypes: The Core of JavaScript's Inheritance Model

https://muralisingh.hashnode.dev/understanding-prototypes-the-core-of-javascripts-inheritance-model

Hashnode - javascript (Javascript)

JavaScript objects inherit features from one another through prototypes. Example: let car = { brand: "Toyota", model: "Camry", year: 2022, drive: function() { console.log("The car is driving."); } }; console.log(car); Explanation: Wh...


27: Exploring the Concepts of Asynchronous JavaScript

https://kumarkrishna.hashnode.dev/exploring-the-concepts-of-asynchronous-javascript

Hashnode - javascript (Javascript)

How does JavaScript execute the code' JavaScript is a synchronous, single-threaded programming language. It executes a single line of code at a time and it keeps the further parts on hold until the current line of code doesn't get executed. It execut...


28: Mastering the concept of Async Javascript

https://surajkablog.hashnode.dev/mastering-the-concept-of-async-javascript

Hashnode - javascript (Javascript)

In the field of web development, asynchronous JavaScript (JS) is the cornerstone of building responsive and efficient applications. Understanding the concept of asynchronous programming is crucial for developers to leverage the full potential of JS. ...


29: Using Django ORM only without web server

https://ivanyu2021.hashnode.dev/using-django-orm-only-without-web-server

Hashnode - python (python)

Django is a great framework, but sometimes you just want to use its ORM without web server function. This blog will introduce how to do it. 1. Step 1.1. Setup environment Create a virtual environment named ormOnlyEnv and then activate it python -m v...


30 / 63

30: JavaScript Fundamentals

https://chandratalks.hashnode.dev/javascript-fundamentals

Hashnode - javascript (Javascript)

How JavaScript executes the code' JavaScript is single-threaded, which means only one statement is executed at a time. As the JS engine processes our script line by line, it uses this single Call-Stack to keep track of codes that are supposed to run ...


31: Unveiling JavaScript: Arithmetic Operators

https://patelmuqarrab.hashnode.dev/unveiling-javascript-arithmetic-operators

Hashnode - javascript (Javascript)

JavaScript's arithmetic operators are your tools for performing calculations on numbers. These operators manipulate numeric values, represented as literals, variables, or expressions. They come in two flavors: unary (working on one value) and binary ...


32: Important Array Methods in JavaScript

https://akshayparihar.hashnode.dev/important-array-methods-in-javascript

Hashnode - javascript (Javascript)

Arrays in JS are Dynamic, i.e., They can be changed during the time of execution. They can store more than one Data Type (Unlike Java and C++ where we have to declare an array beforehand and specify the size and the data type like strings or integers...


33: Asynchronous JavaScript

https://aggarwalgaurav1012.hashnode.dev/asynchronous-javascript

Hashnode - javascript (Javascript)

Asynchronous programming is an essential concept in JavaScript that allows your code to run in the background without blocking the execution of other code. Developers can create more efficient and responsive applications by using features like callba...


34: React Native File Structure : A Easy Guide

https://codewithtanveer.hashnode.dev/react-native-file-structure-a-easy-guide

Hashnode - javascript (Javascript)

React Native is a powerful framework for building cross-platform mobile applications using JavaScript and React. One of the key aspects of any React Native project is its file structure. Understanding the file structure of a React Native project is c...


35: All About Asynchronous JavaScript

https://bhanuprakash1575.hashnode.dev/all-about-asynchronous-javascript

Hashnode - javascript (Javascript)

How does JS execute the code' JavaScript uses a single-threaded execution model. This means it can only execute one line of code at a time. However, it can handle asynchronous operations as well Here's a simplified view of JS execution: Call Stack...


36: Difference between JavaScript's Prototypal Inheritance and Traditional Inheritance

https://adityaksi.hashnode.dev/difference-between-javascripts-prototypal-inheritance-and-traditional-inheritance

Hashnode - javascript (Javascript)

JavaScript (JS) has a special way for objects to share traits. It might sound like inheritance, a concept from other languages, but it works differently. In JS, objects can link to another object to access methods or properties. This is called protot...


37: Asynchronous Javascript

https://asyncjs.hashnode.dev/asynchronous-javascript

Hashnode - javascript (Javascript)

Introduction Asynchronous operations are tasks that can be executed independently of the main program flow, allowing the program to continue executing other tasks while waiting for the asynchronous operation to complete. How JavaScript Executes Code ...


38: Kotlin's Collections in a Nutshell

https://rommansabbir.com/kotlins-collections-in-a-nutshell

Hashnode - Kotlin (Mobiles)

[Background Image by JOHN TOWNER] Kotlin, known for its conciseness, expressiveness, and interoperability with Java, provides powerful tools for working with collections. What is Collections in Kotlin' The Collections class in Kotlin is like a toolbo...


39: NordVPN désormais compatible avec jusqu'à 10 connexions simultanées

https://www.realite-virtuelle.com/nordvpn-10-acces/

realite-virtuelle.com (Réalité Virtuelle)

NordVPN s’adapte aux besoins grandissants des familles numériques. Désormais, l’application phare permet jusqu’à 10 connexions […] Cet article NordVPN désormais compatible avec jusqu’à 10 connexions simultanées a été publié sur REALITE-VIRTUELLE.COM.


40 / 63

40: NordVPN étend sa capacité de connexion simultanée à 10 appareils

https://www.lebigdata.fr/nordvpn-10-acces

Le Big Data (dataviz)

NordVPN élargit ses capacités. Le fournisseur VPN premium permet désormais 10 appareils connectés simultanément. Une mise à niveau bienvenue pour … Cet article NordVPN étend sa capacité de connexion simultanée à 10 appareils a été publié sur LEBIGDATA.FR.


41: Javascript Interview Preparation:Part 3

https://mainakkaniam.hashnode.dev/javascript-interview-preparationpart-3

Hashnode - javascript (Javascript)

Demystifying Functions So today we are going to discuss some popular interview questions on functions which is a very important topic in JS and obviously also required a lot in development. What are Functions in JS' According to MDN Web Docs, Functi...


42: Unveiling JavaScript: Operators

https://patelmuqarrab.hashnode.dev/unveiling-javascript-operators

Hashnode - javascript (Javascript)

In JavaScript, operators are symbols used to perform operations on operands, such as variables or values, producing a result. Let's break down the types of operators supported by JavaScript and explore each in detail. Types of Operators in JavaScript...


43: JavaScript Callbacks and Promises (Async Evolution)

https://blog.mafiz.tech/javascript-callbacks-and-promises-async-evolution

Hashnode - javascript (Javascript)

JavaScript Callbacks (why fear') Every JavaScript beginner will face this question at least once: "What is a callback function'" Well, we can find the answer in the word callback itself. It's all about notifying the caller after the successful comple...


44: Simulating UTXOs on Algorand

https://alexandercodes.hashnode.dev/simulating-utxos-on-algorand

Hashnode - python (python)

Introduction There are two main accounting models used in blockchains: the UTXO model and the account model. The former is used by Bitcoin and Cardano; the latter is used by Ethereum, Algorand, and most other blockchains. Let's see if we can use Pyth...


45: Supabase Storage prend désormais en charge le protocole S3, Supabase est une alternative open source à Firebase, avec une base de données Postgres, l'authentification, des API d'instantané et des fonctions Edge

https://postgresql.developpez.com/actu/356708/Supabase-Storage-prend-desormais-en-charge-le-protocole-S3-Supabase-est-une-alternative-open-source-a-Firebase-avec-une-base-de-donnees-Postgres-l-authentification-des-API-d-instantane-et-des-fonctions-Edge/

sgbd (developpez.com) (Informatique / base de données)

Supabase Storage prend désormais en charge le protocole S3, Supabase est une alternative open source à Firebase, avec une base de données Postgres, l'authentification, des API d'instantané et des fonctions EdgeSupabase Storage est maintenant officiellement un fournisseur de stockage compatible S3. C'est l'une des fonctionnalités les plus demandées et elle est disponible dès aujourd'hui en v [...]


46: Comment utiliser vos Airpods : 5 astuces à connaître

https://www.blogdumoderateur.com/astuces-airpods/

Blog du Moderateur ()

Voici quelques fonctionnalités pratiques à connaître si vous possédez des AirPods, AirPods Pro ou AirPods Max !


47: Liens vagabonds : TCL, un cas d'école de la diversification

https://www.meta-media.fr/2024/04/20/liens-vagabonds-tcl-un-cas-decole-de-la-diversification.html

Meta Media (Internet)

Des écrans aux contenus -  TCL, le fabricant chinois de téléviseurs et smartphones, a annoncé l'élargissement de son offre avec le lancement de son studio de production. La société basée à Hong Kong suit l'exemple d'autres fabricants de matériel, dont Apple (avec Apple Studios) et Roku (qui avait profité de la... The post Liens vagabonds : TCL, un cas d'école de la diversification fi [...]


48: Top 5 Python Hacks to Make Coding Easier

https://attitudeacademy.hashnode.dev/top-5-python-hacks-to-make-coding-easier

Hashnode - python (python)

Introduction: Are you a budding computer enthusiast eager to dive into the world of programming' Python is an excellent language to start with, known for its simplicity and versatility. As you embark on your coding journey, mastering some handy Pytho...


49: 10 Ideas for Enhancing Python Performance in 2024

https://kushnuma.hashnode.dev/10-ideas-for-enhancing-python-performance-in-2024

Hashnode - python (python)

Introduction to Python Performance In the ever-evolving landscape of software development, Python remains a go-to language for its simplicity and versatility. However, as applications grow in complexity and demand, optimal performance becomes increas...


50 / 63

50: Unveiling JavaScript: Type Conversions

https://patelmuqarrab.hashnode.dev/unveiling-javascript-type-conversions

Hashnode - javascript (Javascript)

Type Conversions in JavaScript refer to the automatic or explicit process of converting data from one data type to another in JavaScript. These conversions are essential for JavaScript to perform operations and comparisons effectively. JavaScript var...


51: Ofcom : Les enfants passent huit heures et plus sur les réseaux sociaux

https://www.meta-media.fr/2024/04/20/ofcom-les-enfants-passent-jusqua-huit-heures-et-plus-sur-les-reseaux-sociaux.html

Meta Media (Internet)

La dernière décennie a été marquée par une évolution fulgurante des technologies et des médias, transformant radicalement la manière dont les jeunes interagissent avec le monde numérique. L'étude "Children's Media Lives", menée depuis dix ans par Ofcom, a scruté ces changements, offrant un aperçu détaillé de l'impact des médias sur... The post Ofcom : Les enfants passent huit heure [...]


52: Mastering TypeScript: A Comprehensive Guide

https://sadanandgadwal.hashnode.dev/mastering-typescript-a-comprehensive-guide

Hashnode - javascript (Javascript)

TypeScript is an open-source programming language developed by Microsoft that builds upon JavaScript by adding optional static typing, interfaces, classes, and other features to help developers write robust and scalable code. It compiles to plain Jav...


53: NaPoWriMo x NaPoGenMo 2024 Day 20: 3rd Rhyme Scheme

https://blog.illestpreacha.com/napogenmo-2024-3rd-rhyme-scheme

Hashnode - python (python)

Finicky Movements For the 20th day of NaPoWriMo/NaPoGenMo 2024, I decided to remake the rhyme scheme generator for a shorter poem, coded in Python. Rhyme Scheme dcabda ddbaca dcd Modified Code Line Original Codebase can found: https://blog.illestpre...


54: Building a Server with Node.js on Port 4000: A Beginner's Guide

https://mr.rf/building-a-server-with-nodejs-on-port-4000-a-beginners-guide

Hashnode - javascript (Javascript)

Are you ready to dive into the world of server-side programming with Node.js' In this guide, we'll walk through the steps of creating a simple server using Node.js and running it on port 4000. Let's get started!Getting StartedFirst things first, ensu...


55: Fetching Data from Database Using AJAX and PHP

https://iruemu.hashnode.dev/fetching-data-from-database-using-ajax-and-php

Hashnode - javascript (Javascript)

In web development, it's common to fetch data from a database and display it dynamically on a web page without having to reload the entire page. AJAX (Asynchronous JavaScript and XML) allows us to achieve this by making asynchronous requests to the s...


56: Python Comments

https://ajsharma.hashnode.dev/python-comments

Hashnode - python (python)

When you start your journey in Python programming, understanding comments is fundamental. Comments are essential for explaining code, making it readable, and aiding collaboration in larger projects. Let's explore. What is a Comment' A comment in Pyt...


57: Unveiling JavaScript: Data types

https://patelmuqarrab.hashnode.dev/unveiling-javascript-data-types

Hashnode - javascript (Javascript)

Data types are fundamental building blocks in any programming language. They define the type of values your variables can hold and how operations are performed on them. JavaScript is a dynamically typed language, meaning data types are associated wit...


58: Structuring NextJS projects

https://devlogs.hashnode.dev/structuring-nextjs-projects

Hashnode - javascript (Javascript)

Coming from a React.js world, learning Next.js is fun. There are many features in Next.js, but today we will discuss file-based routing in Next.js. I really like file-based routing. There is no need to add any extra packages and configure it. Just cr...


59: Unveiling JavaScript: Constants

https://patelmuqarrab.hashnode.dev/unveiling-javascript-constants

Hashnode - javascript (Javascript)

JavaScript constants, declared using the const keyword (introduced in ES6), are variables whose values cannot be reassigned after initialization. They provide a mechanism to ensure data integrity and prevent accidental modifications. Declaring Consta...


60 / 63

60: Unlocking the Power of JavaScript for Android App Development

https://colddsam.com/unlocking-the-power-of-javascript-for-android-app-development

Hashnode - javascript (Javascript)

Unlocking the Power of JavaScript for Android App Development Introduction: JavaScript has emerged as a formidable force in Android app development, empowering developers to create feature-rich, cross-platform applications with ease. This comprehensi...


61: Unveiling JavaScript: The let keyword

https://patelmuqarrab.hashnode.dev/unveiling-javascript-the-let-keyword

Hashnode - javascript (Javascript)

The let keyword, introduced in ES6 (2015), provides a powerful way to declare variables in JavaScript. Unlike the older var keyword, let offers block-level scoping, enhancing code clarity and preventing unintended side effects. Understanding Block Sc...


62: Reveal an image with smart padding (snippet)

https://www.stefanjudis.com/snippets/image-padding-trick/

Stefan Judis (Développement)

Here's Temani Afif once again doing what he does best: creating wild single-element tricks. What's on this time' The preview below shows the article's result, which is two image elements. The img elements are displayed as 3D boxes and only reveal their image content wh [...]




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