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

« Février 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 3 Février 2024 (58)

1: Day 34: Embarking on the Jenkins Journey! '

https://davender.hashnode.dev/day-34-embarking-on-the-jenkins-journey

Hashnode - javascript (Javascript)

Hello fellow tech enthusiasts! Now that we've conquered Linux, Git, GitHub, and Docker, let's dive into the world of continuous integration and continuous delivery with Jenkins! ' What is Jenkins' ' Jenkins is our superhero in the realm of automati...


2: What are the callbacks, callback hell, and inversion of control (IOC) in JavaScript in depth

https://techthinkers.dev/what-are-the-callbacks-callback-hell-and-inversion-of-control-ioc-in-javascript-in-depth

Hashnode - javascript (Javascript)

What are the call-back functions' In JavaScript, a callback function is a function that is passed as an argument to another function and is executed after the completion of some operation. Callbacks are commonly used in asynchronous programming, wher...


3: Linear vs. Logistic Regression: Unraveling the Mysteries of Predictive Analysis

https://blog.jamalkhidir.com/linear-vs-logistic-regression-unraveling-the-mysteries-of-predictive-analysis

Hashnode - python (python)

Introduction Have you ever been curious about how real estate companies accurately estimate a home's value, or how epidemiologists predict the likelihood of heart disease' The secret lies in the realms of linear and logistic regression. While these t...


4: Day 15 of 100days of code.

https://paks.hashnode.dev/what-is-npm

Hashnode - javascript (Javascript)

I am delving into the intricacies of building RESTful APIs, refining my skills in middleware usage, and exploring the nuances of asynchronous JavaScript. Lets Goooo''' Fundamentals of nodeJS What is NPM NPM stands for node package manager. It is b...


5: Drawing Dot Leaders in Flutter

https://blog.fution.co/drawing-dot-leaders-in-flutter

Hashnode - Flutter (Flutter)

This is part of a series of articles I'm writing chronicling the build of an app using Flutter. I'm working with a great designer who has made an outstanding app design, but with that design he's managed to throw a bunch of wrenches of various sizes ...


6: Weekend Reading ' Put ' in random text fields

https://labnotes.org/weekend-reading-put-in-random-text-fields/

Lab notes (Développement)

This week we have some disappointing metrics from Copilot, revisit React, learn how to write a Git commit message, did you know about Font Variant Numeric', speculate the fastest growing software sectors, watch sleeping cats, and play with bouncing balls.


7: How Does Windows 11 Backup Work'

https://www.smashingapps.com/how-does-windows-11-backup-work/

Smashing apps (Design / Internet)

With Windows 11 Backup as your companion, the move becomes a smoother, more organized process, allowing you to enjoy the new features and improvements without any data-related worries.


8: Mutable vs. Immutable in Python:

https://hruthik.hashnode.dev/mutable-vs-immutable-in-python

Hashnode - python (python)

Mutable: Mutable objects are those whose values or content can be changed after creation. Changes to mutable objects are reflected directly in the memory location where they are stored. Immutable: Immutable objects, on the other hand, cannot be ...


9: Understanding JavaScript Execution

https://strngeblogs.hashnode.dev/understanding-javascript-execution

Hashnode - javascript (Javascript)

Welcome to the blog where we dive into the inner workings of JavaScript execution! In this article, we'll explore how JavaScript executes code and how the call stack plays a crucial role in managing function calls. Understanding these concepts is fun...


10 / 58

10: Choosing the Right RxJS Map: switchMap, concatMap, or mergeMap'

https://blogs.suyashpatil.me/choosing-the-right-rxjs-map-switchmap-concatmap-or-mergemap

Hashnode - javascript (Javascript)

Introduction RxJS, a powerful library for handling asynchronous tasks, comes with three handy map operators: switchMap, concatMap, and mergeMap. Let's explore what makes them different and when you might want to use each. The Basics All three'switchM...


11: 10 Cool CodePen Demos (January 2024)

https://alvaromontoro.hashnode.dev/10-cool-codepen-demos-january-2024

Hashnode - javascript (Javascript)

This month has been interesting for demos. Usually, I shortlist demos during the month and end up with 10'20, from which I pick 10. This month, I had enough demos to write 2 (or even 3) lists like this one. It was tough to pick just 10, and many good...


12: Generator in Javascript

https://blog.deviant.works/generator-in-javascript

Hashnode - javascript (Javascript)

function* numberGenerator() { let i = 0; while (true) { yield i++; } } const iterator = numberGenerator(); console.log(iterator.next().value); // 0 console.log(iterator.next().value); // 1 console.log(iterator.next().value); // 2 // ... an...


13: Flutter and Firebase Integration: Real-Time Data and Authentication

https://manojca.hashnode.dev/flutter-and-firebase-integration-real-time-data-and-authentication

Hashnode - Flutter (Flutter)

In the rapidly evolving world of app development, Flutter and Firebase stand out as a powerful duo, offering developers a streamlined, efficient path to creating feature-rich, scalable applications. Flutter, Google's UI toolkit, enables the crafting ...


14: Let's Dive into Microservices: A Simple Story with a Hint of Tech Magic

https://arpitblog.hashnode.dev/lets-dive-into-microservices-a-simple-story-with-a-hint-of-tech-magic

Hashnode - javascript (Javascript)

Once upon a time, in the world of Computerland, there were clever builders who wanted to create amazing things with their computers. They faced a problem with building big and complicated applications. It was like trying to construct a massive LEGO c...


15: Navigating the Coding Odyssey: My 100DaysOfCode Challenge Journey

https://blog.saurabhmahajan.com/navigating-the-coding-odyssey-my-100daysofcode-challenge-journey

Hashnode - javascript (Javascript)

Embarking on a journey of self-improvement was a path often paved with challenges, victories, and the relentless pursuit of growth. In the realm of coding, this journey took the form of the 100DaysOfCode challenge - a commitment to spend a dedicated ...


16: Mastering Cross-Platform Development with Flutter: A Comprehensive Guide

https://sasika.hashnode.dev/mastering-cross-platform-development-with-flutter-a-comprehensive-guide

Hashnode - Flutter (Flutter)

In the fast-paced world of mobile and web development, the need for efficient cross-platform frameworks has never been more pressing. Flutter, Google's UI toolkit, has emerged as a game-changer in this landscape, offering developers a powerful soluti...


17: Title: Embarking on a Python Adventure: Learning Pandas and the Basics of Python

https://webdeveloperr.hashnode.dev/title-embarking-on-a-python-adventure-learning-pandas-and-the-basics-of-python

Hashnode - python (python)

Introduction: Welcome, fellow coding enthusiasts! If you've just set foot on the vast landscape of programming and decided to make Python your trailblazing companion, you're in for an exciting journey. Today, we'll be delving into the fascinating wor...


18: Mastering Forms in React: Controlled, Uncontrolled Inputs, and FormData

https://opyjo2.hashnode.dev/mastering-forms-in-react-controlled-uncontrolled-inputs-and-formdata

Hashnode - javascript (Javascript)

When building forms in React, developers have several strategies at their disposal for managing form data: controlled inputs, uncontrolled inputs, and utilizing FormData. Each method offers unique advantages and caters to different scenarios within w...


19: NumPy : Beyond the Basics

https://kavirana.hashnode.dev/numpy-beyond-the-basics

Hashnode - python (python)

In our previous NumPy blog, we laid the groundwork, understanding the essence of arrays and touched advanced concepts. Now, let's take a leap into the more intricate features, unlock advanced functionalities, and discover the nuances that make NumPy ...


20 / 58

20: Explaining How Python Works Behind the Scenes

https://strngeblogs.hashnode.dev/explaining-how-python-works-behind-the-scenes

Hashnode - python (python)

Welcome to the world of Python! Have you ever wondered what happens when you use one Python file in another' Or how Python turns your code into something the computer understands' Let's dive into Python's inner workings, from creating special folders...


21: Asynchronous JavaScript: Unveiling the Power of Promises, Async/Await, and the Event Loop

https://mohitxoxo.hashnode.dev/asynchronous-javascript-unveiling-the-power-of-promises-asyncawait-and-the-event-loop

Hashnode - javascript (Javascript)

In the dynamic world of web development, handling asynchronous operations is a crucial skill. As websites become more interactive and data-driven, JavaScript developers must grapple with tasks like making network requests, reading files, and executin...


22: How to Remove Duplicate Objects from an Array in JavaScript

https://rajamsr.hashnode.dev/how-to-remove-duplicate-objects-from-an-array-in-javascript

Hashnode - javascript (Javascript)

Do you love working with arrays in JavaScript' They are awesome for storing and managing multiple values in one variable. But sometimes, you may have a problem with duplicate objects in your array. This can mess up your code's performance, memory, an...


23: Google Bard sous Gemini Pro est dispo en France, et peut créer des images

https://www.lebigdata.fr/google-bard-gemini-pro

Le Big Data (dataviz)

Bard, l'IA de Google, aura bientôt une place considérable dans le secteur de l'IA. En effet, les développeurs viennent d'annoncer … Cet article Google Bard sous Gemini Pro est dispo en France, et peut créer des images a été publié sur LEBIGDATA.FR.


24: Les petits agriculteurs n'ont pas été entendus

http://amisdekervoyal.viabloga.com/news/les-petits-agriculteurs-n-ont-pas-ete-entendus

Amis de Kervoyal (Divers...)

secure.avaaz.org/campaign/fr/lagriculture_que_nous_voulons_loc/


25: Exploring the Potential of AJAX in Modern Web Development

https://abdulk.hashnode.dev/ajaxweb

Hashnode - javascript (Javascript)

In today's fast-paced world, where user experience reigns supreme, web developers are constantly seeking ways to make their applications more dynamic, responsive, and engaging. Enter AJAX ' a powerhouse technology that has transformed the way we inte...


26: Hashnode blog generation added

https://srajan12.hashnode.dev/70bfe6bbfb1bddf1aeeb9a8c70549db299b1ffcb

Hashnode - javascript (Javascript)

Overview This commit updates the Hashnode blog generator to use a newer version and improves the metadata associated with the generated posts. File wise changes made .github/workflows/commit-blog-generator.yml The name of the job has been changed fr...


27: Publishing Packages using Poetry

https://blog.siddhesh.tech/publishing-packages-using-poetry

Hashnode - python (python)

Poetry is rapidly gaining recognition as an excellent dependency manager in the Python community. It has risen rapidly to become the dependency manager for various projects across the Python community. But did you know that not only can poetry be use...


28: Debug your Flutter App like a Pro with these 5 Tips & Tricks!

https://hashnode.tomicriedel.com/debug-your-flutter-app-like-a-pro-with-these-5-tips-tricks

Hashnode - Flutter (Flutter)

Debugging your Flutter app can be hard. But it does not have to be. Today, I will show you 5 Tips & Tricks that help you squeeze those pesky little bugs. This also includes best practices, special error-handling cases, and more! Get a cup of coffee o...


29: Empowering Web Development: Unveiling the Power of REST and Fetch API.

https://blogs-by-nishant-sinha.hashnode.dev/empowering-web-development-unveiling-the-power-of-rest-and-fetch-api

Hashnode - javascript (Javascript)

Representational State Transfer (REST) and the Fetch API have become integral components of modern web development, revolutionizing the way applications communicate and interact with servers. REST, a stateless architectural style, simplifies the comm...


30 / 58

30: Liens vagabonds : Meta, 20 ans de solitude

https://www.meta-media.fr/2024/02/03/liens-vagabonds-meta-sous-les-feux-des-critiques-mais-toujours-incontournable.html

Meta Media (Internet)

Facebook souffle (presque) ses 20 bougies devant le Sénat américain. Ce 31 janvier, aux côtés des autres grandes plateformes, le géant des réseaux sociaux a été soumis à l'interrogatoire de sénateurs, jamais à court de punchlines, une étape de plus dans sa longue tournée d'excuses. Cette fois-ci, société est accusée... The post Liens vagabonds : Meta, 20 ans de solitude first appea [...]


31: Facebook : de FarmVille à nos statuts honteux, 20 ans de souvenirs à assumer

https://www.blogdumoderateur.com/facebook-farmville-statuts-honteux-20-ans-souvenirs/

Blog du Moderateur ()

Des pokes aux événements "ironiques" : retour sur les tendances plus ou moins passagères sur Facebook, qui célèbre son vingtième anniversaire.


32: My react Journey with chai and code

https://codecsk.hashnode.dev/my-react-journey-with-chai-and-code

Hashnode - javascript (Javascript)

After getting the peek of JS its the time to learn React from the OG Hitesh Chaudhary ( chai aur code) with series chai and react. Today i got to know about how to create react app using npx and vite. how similar it is as js just looking at file size...


33: How to Setup MongoDB & Mongo Shell '

https://nitinsoni90.hashnode.dev/how-to-setup-mongodb-mongo-shell

Hashnode - javascript (Javascript)

Installation or setup of MongoDB' You can install MongoDB using two different methods one is using MSI and another is using zip. Here, we will discuss how to install MongoDB using MSI, so you need to follow each step carefully: Steps to install Mong...


34: JavaScript slice() Method

https://lucieyarish.hashnode.dev/javascript-slice-method

Hashnode - javascript (Javascript)

The slice() method is often confused with splice(), and vice versa. In this article, we are going to take a closer look at the JavaScript slice() method with code examples. In the upcoming articles in this series, I am going to dive into splice(), to...


35: npm vs npx: Friends or Enemy'

https://10xdev.codeparrot.ai/npm-vs-npx-package-management

Hashnode - javascript (Javascript)

npm '' Package Manager npm is the default package management system for JavaScript, enabling developers to share and consume packages from the npm registry. Definition and Core Functions npm helps manage packages in a project, allowing you to add, up...


36: Introduction to Redis: A Powerful In-Memory Database

https://jps27cse.hashnode.dev/introduction-to-redis-a-powerful-in-memory-database

Hashnode - javascript (Javascript)

Overview Redis, which stands for Remote Dictionary Server, is an open-source, in-memory data structure store. It is often referred to as a data structure server because it supports various data structures such as strings, hashes, lists, sets, and mor...


37: Stockage des données de santé chez Microsoft : pourquoi c'est un gros problème''

https://www.lebigdata.fr/stockage-donnees-sante

Le Big Data (dataviz)

La CNIL a donné le feu vert à Microsoft. Désormais, l'entreprise de Bill Gates peut stocker les données de santé … Cet article Stockage des données de santé chez Microsoft : pourquoi c'est un gros problème'' a été publié sur LEBIGDATA.FR.


38: Débit 5G : Cet opérateur français ridiculise tous les autres et creuse l'écart

https://www.lebigdata.fr/debit-5g

Le Big Data (dataviz)

Cet opérateur propose le débit 5G le plus élevé sur le marché français. Il a laissé la concurrence loin derrière … Cet article Débit 5G : Cet opérateur français ridiculise tous les autres et creuse l’écart a été publié sur LEBIGDATA.FR.


39: JavaScript: What is Type Coercion and Type conversion'

https://kanmicodes.hashnode.dev/javascript-what-is-type-coercion-and-type-conversion

Hashnode - javascript (Javascript)

JavaScript is a loosely typed programming language, meaning variables can store any values of any data type, and type coercion would take place when operations or comparisons involve values of different types. Types Of Type Coercion There are two typ...


40 / 58

40: End-to-end Flutter Architecture Guide

https://yatendrakumar.hashnode.dev/end-to-end-flutter-architecture-guide

Hashnode - Flutter (Flutter)

Whether you're building apps or preparing for interviews, understanding flutter architecture is essential. That's why I spent 20+ hours simplifying Flutter's complexities to make it straightforward for you. This is your step-by-step guide, crafted fo...


41: How to migrate SQL db data in Django'

https://nikhilakki.in/how-to-migrate-sql-db-data-in-django

Hashnode - python (python)

I recently had a task at hand to migrate from a on VM PostgreSQL DB instance to Azure PostgreSQL Flexible server (a cloud native managed PostgreSQL server). We use docker compose for service orchestration for local development due to its easy of use ...


42: 20 ans de Facebook : comment le réseau social a modelé nos rapports à l'information et à la politique

https://www.usine-digitale.fr/article/20-ans-de-facebook-comment-le-reseau-social-a-modele-nos-rapports-a-l-information-et-a-la-politique.N2207568

L'usine-digitale (Informatique)

Le 4 février 2024 marque les 20 ans du lancement de Facebook par Mark Zuckerberg. Alors que l'année en cours est particulièrement chargée en élections à travers le monde, les responsables du Forum sur l'information et la démocratie (FID) invitent régulateurs et citoyens à questionner les enchevêtrements entre réseaux sociaux, information et politique.


43: Loid - Read, Write and Publish blogs on hashnode straight from your terminal

https://captainjay.hashnode.dev/loid-read-write-and-publish-blogs-on-hashnode-straight-from-your-terminal

Hashnode - python (python)

Ever been so busy programming that you just don't want to leave your workspace' https://tenor.com/view/guaton-computadora-enojado-computer-rage-gif-14480338 Loid got you covered, now Read, Write, and Publish articles on Hashnode without ever leavin...


44: Troubleshooting Linux Scenarios ' Part 1

https://blog.prasadsuman.me/troubleshooting-linux-scenarios-part-1

Hashnode - python (python)

Issue 1: Unable to Start a Service '' Approach / Solution: ''' Check if the service is installed ''' Verify the service configuration file ''' Check the service status using systemctl or other command ''' Inspect the service logs for any errors ''' ...


45: What is framework'

https://devopsumesh.hashnode.dev/what-is-framework

Hashnode - python (python)

A framework is a set of conceptural structure and guidelines used to build something useful A framework may include predefined classes and functions that can be used to process input, manage hardware devices, and interact with system software Why use...


46: Extract data from DataFrame in Python

https://blog.grippybyte.com/extract-data-from-dataframe-in-python

Hashnode - python (python)

Extracting data from a DataFrame in Python is useful for data analysis, manipulation, and visualization. This guide will walk you through the basics of extracting data from DataFrames, including selecting columns, filtering rows, and advanced techniq...


47: Extract domain from URL in Python

https://blog.grippybyte.com/extract-domain-from-url-in-python

Hashnode - python (python)

Extracting the domain from a URL in Python can be accomplished using several methods, ranging from utilizing the standard library to leveraging third-party packages for more complex URL parsing. Below is a comprehensive guide that covers different ap...


48: Resist Exploding Complexity

https://rplopes.hashnode.dev/resist-exploding-complexity

Hashnode - javascript (Javascript)

Building web applications seems to be getting more and more complex. Abstractions upon abstractions, and fixes for problems caused by fixes for other problems. But does it have to be this way' There's a place for complex frameworks and architectures,...


49: How Image Processing Revolutionizes Data Science (Day -2)

https://blog.techlearnindia.com/how-image-processing-revolutionizes-data-science-day-2

Hashnode - python (python)

#Day 2:Creation of Shape and Create Text with Vegeta from DragonBallZ! Ready for a power-up worthy of Vegeta himself' Today, we're leveling up our image processing skills by creating awesome shapes and text directly on images! Prerequisites: Librarie...


50 / 58

50: Communicating with the WAX Blockchain

https://onblock.dev/communicating-with-the-wax-blockchain

Hashnode - python (python)

If you are building a WAX-powered site, app, or game you need to be able to read and even write data to the WAX Blockchain and allow your users to login, interact, and sign transactions. This article will serve as a resource to collect the libraries ...


51: Commit blog generator update

https://srajan12.hashnode.dev/f186e5c9bcde4a63db0b911e7bfe917d7c88aeea

Hashnode - javascript (Javascript)

Overview The commit-blog-generator workflow is updated from version 0.33 to 0.34. File wise changes made .github/workflows/commit-blog-generator.yml Updated the commit-blog-generator action to version v0.34. Summary The commit appears to update the...


52: Unleashing Python's Power in AI and Image Processing A Practical Guide

https://ai-image.hashnode.dev/unleashing-pythons-power-in-ai-and-image-processing-a-practical-guide

Hashnode - python (python)

Python's dominance in the realms of Artificial Intelligence (AI) and image processing is not just theoretical; it's palpable through practical implementations. In this guide, we'll dive into hands-on examples using popular libraries, showcasing Pytho...


53: Python's Role in Artificial Intelligence and Image Editing

https://ai-image.hashnode.dev/pythons-role-in-artificial-intelligence-and-image-editing

Hashnode - python (python)

Python, a versatile and powerful programming language, has become a cornerstone in the realm of Artificial Intelligence (AI) and image processing. Its simplicity, readability, and extensive libraries make it an ideal choice for developers and researc...


54: Added React dependency

https://srajan12.hashnode.dev/c4002a0281bbdf5c0abbb0341d03312402ca2231-1

Hashnode - javascript (Javascript)

Overview Upgraded express from version ^4.18.2 to ^4.18.2. Added react as a dependency with version ^18.2.0. File wise changes made package-lock.json react dependency added with version ^18.2.0 js-tokens dependency added with version 4.0.0 loose-e...


55: Day 20 of LeetCode

https://evelynsjourney.hashnode.dev/day-20-of-leetcode

Hashnode - python (python)

Documenting LeetCode solving. Celebrate 20 days completed! ' Q60 297. Serialize and Deserialize Binary Tree Hard. Tree DFS class Codec: def serialize(self, root): """Encodes a tree to a single string. :type root: TreeNode ...


56: Added React dependency

https://srajan12.hashnode.dev/c4002a0281bbdf5c0abbb0341d03312402ca2231

Hashnode - javascript (Javascript)

Overview Express version was bumped. React was added as a dependency. A few more modules were added as dependencies, js-tokens, loose-envify, and react. File wise changes made package-lock.json Added react version "^18.2.0" as dependency. Added js...


57: Tags array single quotes replaced with double quotes

https://srajan12.hashnode.dev/f278e07e1bde728614ed63d3b720db95e4c410fe

Hashnode - javascript (Javascript)

Overview The tags key in the .github/workflows/commit-blog-generator.yml file was modified to use a different syntax. File wise changes made .github/workflows/commit-blog-generator.yml Updated the blog-domain to 'srajan12.hashnode.dev' from the pr...




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