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

« Octobre 2023 »

  • 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


15 Octobre 2023 (45)

1: Code Smell 227 - Cowboy Coding

https://maximilianocontieri.com/code-smell-227-cowboy-coding

Hashnode - python (python)

TL;DR: Write code as a team programmer Problems Readability Unreliable code People Management Issues Lack of coordination Solutions Write professional code Use declarative non-cryptic names Context Cowboy coders don't follow best practices...


2: A brief description of Lambda function, Map, Filter, and Reduce in Python

https://karan4.hashnode.dev/a-brief-description-of-lambda-function-map-filter-and-reduce-in-python

Hashnode - python (python)

Python is an object-oriented, high-level programming language. It is interpreted by an interpreter and is dynamic in nature. Python is widely used due to its easy-to-write and understandable syntax.What about writing a function in one line for the ta...


3: Building A Hybrid Book Recommender System: Combining Collaborative Filtering With Content-Based Recommendations, Using Web Scraping And Logging

https://virendrasinh.hashnode.dev/building-a-hybrid-book-recommender-system-combining-collaborative-filtering-with-content-based-recommendations-using-web-scraping-and-logging

Hashnode - python (python)

In this blog, we delve into the world of book recommender systems, uncovering a powerful solution that combines the strengths of collaborative filtering and content-based recommendations. Harnessing the potential of web scraping and logging for data ...


4: Day17 - Break and Continue Statement

https://codingsplash.com/day17-break-and-continue-statement

Hashnode - python (python)

break statement The break statement enables a program to skip over a part of the code. A break statement terminates the very loop it lies within. Example: for i in range(12): if(i == 10): #print table of 5 till 10 break print("5 X", i...


5: How to Optimize Performance with useCallback

https://queenislamiat.hashnode.dev/how-to-optimize-performance-with-usecallback

Hashnode - javascript (Javascript)

You have just built a remarkable React application, but as it grows in complexity, it begins to slow down, the themes take a little longer to change, and your animations are slowing down. You set out to identify the root cause of these issues, and mo...


6: Exploring Machine Learning with Iris Dataset: A Deep Dive into K-Nearest Neighbors

https://jelloexe.hashnode.dev/exploring-machine-learning-with-iris-dataset-a-deep-dive-into-k-nearest-neighbors

Hashnode - python (python)

Introduction Let's talk about a machine learning technique called the K-Nearest Neighbors (KNN) algorithm. In this article, we'll use the well-known Iris dataset to show how KNN can be used for classification. The Iris dataset is like a classic puzzl...


7: Python Statements for Beginners

https://theofficialeze.hashnode.dev/python-statements-for-beginners

Hashnode - python (python)

Statements in Python are instructions that tell the interpreter what to do. They are the building blocks of Python programs, and they can be used to perform a variety of tasks, such as: Assigning values to variables Performing mathematical operatio...


8: Python Statements Explained

https://theofficialeze.hashnode.dev/python-statements-explained

Hashnode - python (python)

Statements in Python are instructions that tell the interpreter what to do. They are the building blocks of Python programs, and they can be used to perform a variety of tasks, such as: Assigning values to variables Performing mathematical operatio...


9: 30 Days of JAVASCRIPT 13/30

https://asifcodes.hashnode.dev/30-days-of-javascript-1330

Hashnode - javascript (Javascript)

4. Prototyes and Modules(export/import) Prototypes and modules are two important concepts in JavaScript that help developers write more efficient and organized code. In this blog post, we will discuss what prototypes and modules are and how to use th...


10 / 45

10: How to Work with Strings, Arrays, and Objects in JavaScript '

https://maaz-blogs.hashnode.dev/how-to-work-with-strings-arrays-and-objects-in-javascript

Hashnode - javascript (Javascript)

JavaScript is a popular programming language that 78% of developers use. You can build almost anything with JavaScript. The problem is that many developers learn JavaScript in a very short period of time, without understanding some of the most essent...


11: DAY 26 of PYTHON top 100 questions : from Basic to Advanced !!

https://priyachakraborty.hashnode.dev/day-26-of-python-top-100-questions-from-basic-to-advanced

Hashnode - python (python)

Write a Python program to find the common elements between three given lists: list1 = [1, 2, 3, 4, 5] list2 = [3, 4, 5, 6, 7] list3 = [5, 6, 7, 8, 9] set1 = set(list1) set2 = set(list2) set3 = set(list3) common_elements = set1.intersection(set2, set3...


12: Effective Cross-Browser Testing Strategies

https://openreplay.hashnode.dev/effective-cross-browser-testing-strategies

Hashnode - javascript (Javascript)

Front-end development plays a crucial role in creating captivating web experiences as the digital world keeps expanding. Yet, the diversity of devices has made it hard to maintain consistent functionality and design across all platforms. To address t...


13: Building Interactive Dashboards With Gridstack.Js

https://openreplay.hashnode.dev/building-interactive-dashboards-with-gridstackjs

Hashnode - javascript (Javascript)

A Dashboard is an excellent feature to add to applications. It is any user interface that allows for quick visualization of important information or reports users of an application need. Many applications include a dashboard page where their users se...


14: The DOM

https://natureworld.hashnode.dev/the-dom

Hashnode - javascript (Javascript)

Introduction to DOM The Document Object Model (DOM) allows programming languages like JavaScript to manipulate and modify web pages, including HTML and XML documents, through a tree-like structure of objects. Consider how a web page would look as a b...


15: JavaScript Execution Context and Code Execution with Examples

https://gauriraut.hashnode.dev/javascript-execution-context-and-code-execution-with-examples

Hashnode - javascript (Javascript)

JavaScript is a single-threaded language, which means that it can only execute one line of code at a time. However, JavaScript can use a technique called call stacking to execute multiple functions at the same time. In this blog, we will explore exec...


16: Exploring the World of Car Rental Management: Building a Python Application - Part 1

https://bryanjames.hashnode.dev/exploring-the-world-of-car-rental-management-building-a-python-application-part-1

Hashnode - python (python)

Article 1: Introduction to Car Rental Management Systems Welcome to a thrilling journey into the world of car rental management systems. In this article series, we will embark on a comprehensive exploration of how to build a sophisticated Python appl...


17: React Element - Simplified

https://blogs.jaytillu.in/react-element-simplified

Hashnode - javascript (Javascript)

A React element is like a blueprint for something you want to show on a web page. It's a simple JavaScript object that describes what you want to display, like text or components. For example, you can create a React element to show a heading with the...


18: How to deploy a Flutter web app using Firebase

https://whoisay.hashnode.dev/how-to-deploy-a-flutter-web-app-using-firebase

Hashnode - Flutter (Flutter)

The good part about this is that it has a good free plan for small projects. Here are the list of steps we will take : Install the Firebase CLI tool Authenticate your account Initialise and deploy the app Install the Firebase CLI tool There are ...


19: How to deploy a Flutter web app using Firebase

https://whoisay.me/how-to-deploy-a-flutter-web-app-using-firebase

Hashnode - Flutter (Flutter)

The good part about this is that it has a good free plan for small projects. Here are the list of steps we will take : Install the Firebase CLI tool Authenticate your account Initialise and deploy the app Install the Firebase CLI tool There are ...


20 / 45

20: What is React Element'

https://blogs.jaytillu.in/what-is-react-element

Hashnode - javascript (Javascript)

The React Element is a small piece of code representing a part of the User Interface in a React Application. Every React element is a JavaScript Object at the end. It is a plain JavaScript object that represents a virtual representation of a DOM elem...


21: Features of React

https://blogs.jaytillu.in/features-of-react

Hashnode - javascript (Javascript)

Below are some key features of React. Efficient UI Updates: Facebook's web applications require frequent updates to the user interface (UI) as users interact with them. Traditional approaches to UI development often led to inefficient updates and po...


22: Rethinking Password Strength Estimation: Beyond Composition Rules

https://blog.ghaleb.dev/rethinking-password-strength-estimation-beyond-composition-rules

Hashnode - javascript (Javascript)

Despite many systems implementing authentication mechanisms that replace or complement the traditional username/password approach, passwords remain at the center of internet security today. The best way to guarantee a password is strong is to guarant...


23: BorgBackup : sauvegarde sur une machine distante via SSH

https://blog.flozz.fr/2023/10/15/borgbackup-sauvegarde-sur-une-machine-distante-via-ssh/

Humancoders ()

Dans un précédent article, je vous avais présenté BorgBackup et comment l'utiliser pour effectuer des sauvegardes sur un disque local. Aujourd'hui, je vais vous expliquer comment effectuer les sauvegardes sur une machine distante via SSH et comment sécuriser et automatiser tout ça. Commentaires L'article BorgBackup : sauvegarde sur une machine distante via SSH a été posté dans la catég [...]


24: JavaScript Pass by Value and Pass by Reference - Simplified

https://blogs.jaytillu.in/javascript-pass-by-value-and-pass-by-reference-simplified

Hashnode - javascript (Javascript)

Based upon Datatype, JavaScript passes a value of a variable using two ways: Using Pass by Value Using Pass by Reference Pass by Value When you pass primitive data types (such as numbers, strings, or booleans) to a function, a copy of the actual ...


25: Building Real-Time Experiences

https://uva.hashnode.dev/building-real-time-experiences

Hashnode - javascript (Javascript)

Unraveling Polling and Its Alternatives in App Development With the Cricket World Cup in full swing, the current excitement is palpable. While this event serves as an exciting backdrop, it also presents an interesting challenge: how do we build a sys...


26: The Central Limit Theorem Will Blow Your Mind!

https://theengineerkid.hashnode.dev/the-central-limit-theorem-will-blow-your-mind

Hashnode - python (python)

'' What is the Central Limit Theorem(CLT)' The Central Limit Theorem is a fundamental concept in statistics. It states that the sample mean of the sampling distribution approaches a Normal Distribution regardless of the shape of the population dist...


27: Solve arithmetic expressions in JavaScript

https://monisazeem.hashnode.dev/solve-arithmetic-expressions-in-javascript

Hashnode - javascript (Javascript)

If you want to solve arithmetic expressions in JavaScript, we have an eval() function for that but to understand the logic let's implement our function which solves arithmetic expressions in the exact hierarchy that needs to be solved from brackets t...


28: React Context API: A step-by-step guide

https://luqmanshaban.blog/react-context-api-a-step-by-step-guide

Hashnode - javascript (Javascript)

What is Context' At its core, Context is a way to share data between components without explicitly drilling through components props. It's a global state management system within your React application. When to use Context' You should consider using ...


29: Zod in Action: Building a Resilient Data Validation Pipeline

https://codezera.hashnode.dev/zod-in-action-building-a-resilient-data-validation-pipeline

Hashnode - javascript (Javascript)

Welcome back to the second part of my blog series on Zod, the powerful data validation library in JavaScript!. In our previous blog, we explored the fundamentals of Zod and its extensive capabilities for ensuring data integrity and validation. Today,...


30 / 45

30: Unraveling the abrupt behaviour of JavaScript: Understanding the "Why'"

https://zaidwrites.com/unraveling-the-abrupt-behaviour-of-javascript-understanding-the-why

Hashnode - javascript (Javascript)

JavaScript is a dynamic and flexible programming language widely used for web development. While it offers many advantages, it is also notorious for its occasional abrupt behaviour, which can perplex developers. In this blog post, we will delve into ...


31: How to Make Blog Post Management Effortless with Python

https://cs310.hashnode.dev/how-to-make-blog-post-management-effortless-with-python

Hashnode - python (python)

Introduction Hello everyone. In this article, I will show you how to create an all-in-one blog manager system. We will use Python, a high-level dynamically typed language, and GitHub Actions, a continuous integration system developed by GitHub. Setti...


32: Python (basic) Solutions for problems from Hackerrank (Arithmetic Operations)

https://codewithme.dev/python-basic-solutions-for-problems-from-hackerrank-arithmetic-operations

Hashnode - python (python)

Arithmetic Operations: Question: The provided code stub reads two integers from STDIN, a and b. Add code to print three lines where: The first line contains the sum of the two numbers. The second line contains the difference of the two numbers (fir...


33: test everywhere with dagger.io

https://blog.matteogassend.com/test-everywhere-with-daggerio-clnr9fyui0509pdnv29yff0k3

Hashnode - javascript (Javascript)

Have you ever had to implement a CI/CD pipeline and then proceed to push to a repository 10/20 times just to see if the pipeline works correctly' Well, this ends today! Dagger (not the stabby kind) Dagger's tagline is CI/CD as Code that Runs Anywher...


34: Writing Small Automation Script

https://tulusibrahim.hashnode.dev/writing-small-automation-script

Hashnode - javascript (Javascript)

Background The project just started, and the team decided to use nextjs with graphql, both graphql client and graphql server. But, we also have a separate backend that is written in Go. For me, it's not very common to use those stacks since I feel it...


35: Mastering Form Validation with Zod, TypeScript, and React Hook Form

https://niteshs.hashnode.dev/mastering-form-validation-with-zod-typescript-and-react-hook-form

Hashnode - javascript (Javascript)

In the vast world of web development, TypeScript and React Hook Form are like superheroes teaming up to save the day. But every superhero needs some powerful tools, and that's where the Zod package comes into play. In this blog post, we'll explore ho...


36: Numpy & Arrays

https://bashcode.dev/numpy-arrays

Hashnode - python (python)

Introduction To Numpy Numpy is a powerful library in Python designed for scientific computing and manipulating data. Numpy Arrays Arrays are homogenous in nature. They contain the same datatype. 1-Dimensional array This is how we declare an array i...


37: JavaScript: Function()

https://kanmicodes.hashnode.dev/javascript-function

Hashnode - javascript (Javascript)

As someone who loves learning new things, and practicing a lot, one of my decisions is to share and document what I'm learning as much as I can. if you're someone like me who also love learning then I'm pretty sure you will gain one or two things fro...


38: DALL-E 3 sur Bing : Les images les plus bizarres et dérangeantes

https://www.lebigdata.fr/dall-e-3-bing

Le Big Data (dataviz)

Les internautes s'en donnent à c'ur joie depuis l'arrivée de DALL-E 3 sur Bing. Les images dérangeantes ont contraint Microsoft … Cet article DALL-E 3 sur Bing : Les images les plus bizarres et dérangeantes a été publié sur LEBIGDATA.FR.


39: Mastering NextJS 13: A Beginner's Guide

https://sauravblog.hashnode.dev/mastering-nextjs-13-a-beginners-guide-1

Hashnode - javascript (Javascript)

Welcome to the first installment of our series on the NextJS 13 (app router), where we'll mastering NextJS a straightforward journey for everyone. In this blog, we'll discuss why NextJS is best for web development. We'll look at its key features, exp...


40 / 45

40: Working with Python Dictionary

https://ankitdevelops.hashnode.dev/working-with-python-dictionary

Hashnode - python (python)

A dictionary is one of the many built-in datatypes of Python, A dictionary allows us to store data in key-value pairs, where the key must be unique. it is also known as 'associative memories' or 'associative arrays' in some other programming language...


41: Building an Uber Data Engineering Project with GCP and Modern Tools

https://sohampatra.hashnode.dev/building-an-uber-data-engineering-project-with-gcp-and-modern-tools

Hashnode - python (python)

Project Description: In this blog post, we will explore the process of developing a modern data engineering project on the Uber dataset using Google Cloud Platform (GCP) and a stack of modern tools. We will cover the steps involved in building a data...


42: '' Simplest implementation for Vue Server-side Rendering with any Backend

https://sethphat.dev/simplest-implementation-for-vue-server-side-rendering-with-any-backend

Hashnode - vuejs (Javascript)

Hey guys, I recently discovered & successfully implemented server-side rendering using PHP + Laravel & Vue 3. Thought I would note them down here and share them with you guys, so I did ' With this simplest way, you will have the up-and-running Serve...


43: Brushing Up Your Flutter Skills: Custom Painting Essentials

https://sungod.hashnode.dev/custom-painter

Hashnode - Flutter (Flutter)

Introduction Welcome to the colourful world of Flutter custom painting! In this guide, we will embark on an exciting journey to unlock the true potential of Flutter's CustomPainter. If you've ever wanted to create unique, visually stunning, and inter...


44: Unlock The Power Of The "Switch" Statement: A Comprehensive Guide

https://aryansharma.hashnode.dev/switch-statement-in-js

Hashnode - javascript (Javascript)

Hey, Awesome ones! Welcome to my other blog about this JavaScript Blog Course. You can find it here'' In this blog, we are going to learn JavaScript Switch Statements. What to wait' Yeah.. let's begin' The "switch" statement A switch statement is u...


45: Web Weekly 112 (blogPost)

https://www.stefanjudis.com/blog/web-weekly-112/

Stefan Judis (Développement)

It's been a while, friends! 'You might have noticed that the last Web Weekly hit your inbox 35 days ago. It's the longest break since I started Web Weekly, and I can't say that this doesn't bug me, but I needed the break. Life was super busy; I moved, traveled countries to speak at a conference, and then got sick for a few days. It's been a ride... But it's all good, and I'm back! Thank you to all [...]




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