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

« Avril 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


23 Avril 2023 (58)

1: Approximate Nearest Neighbors Algorithms and Libraries

https://rtriangle.hashnode.dev/approximate-nearest-neighbors-algorithms-and-libraries

Hashnode - python (python)

Introduction Approximate nearest neighbor or ANN is a critical problem in Machine Learning and has numerous applications in various fields. The importance of ANN search lies in its ability to efficiently find approximate solutions to the nearest neig...


2: Comment faire de la segmentation d'images avec Python '

https://larevueia.fr/comment-faire-de-la-segmentation-dimages-avec-python/

La revue IA (data)

La segmentation d’images est un enjeu crucial dans le domaine de la vision par ordinateur, permettant une compréhension plus fine des éléments qui constituent une image. Dans cet article, je vous propose de découvrir comment faire de la segmentation d’images avec Python en utilisant Segment Anything Model (SAM), un modèle de développé par Meta. Alors […] L'article Comment [...]


3: Responsive programming with React

https://devadvocate.blog/responsive-programming-with-react

Hashnode - javascript (Javascript)

We all love our websites to adapt to whatever screen size we load it on, the most annoying part of visiting a website; especially on mobile, is seeing the screen not adapting, or the buttons being out of place, or the navbar stretching out the entire...


4: Avons-nous raison de nous méfier des intelligences artificielles '

https://fredcavazza.net/2023/04/23/avons-nous-raison-de-nous-mefier-des-intelligences-artificielles/

Cavazza, Fred (Internet / Web 2)

Nous venons à peine de découvrir les possibilités de GPT-4 que l’on nous annonce déjà l’avènement d’Auto-GPT. Les agents intelligents sont de retour, mais cette fois ils bénéficient de la formidable puissance des larges modèles de langage. Faut-il se réjouir ou se méfier de l’avènement des IA générative ' La question n’est pas simple, car … Lire la [...]


5: Integrating Opay into your Flutter app

https://raksblog.com/integrating-opay-into-your-flutter-app

Hashnode - Flutter (Flutter)

OPay is a digital payment platform that offers financial services such as mobile money, bill payments, and P2P transfers. Flutter, on the other hand, is an open-source UI development framework developed by Google. This article aims to guide developer...


6: DAY 8 of PYTHON top 100 questions : from Basic to Advanced !!

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

Hashnode - python (python)

Write a Python program to count the number of vowels in a given string : vowels = set("aeiouAEIOU") count = 0 string = input("Enter a string: ") for char in string: if char in vowels: count += 1 print("The number of vowels in the string i...


7: Python Fundamentals: Python programming for complete beginners.

https://nischaljain.hashnode.dev/python-fundamentals-python-programming-for-complete-beginners

Hashnode - python (python)

In the following blog, you will learn Python from the very beginning that is from what is python, from setting up the environment to variables. Let's get started Introduction. Python is a general-purpose programming language that supports an object-o...


8: Understanding React.JS Props

https://kunald.hashnode.dev/understanding-reactjs-props

Hashnode - javascript (Javascript)

In React.JS, components are the building blocks of a user interface. They allow you to encapsulate the code that defines how a specific part of the UI should behave and look, and enable you to reuse that code across your application. However, it is o...


9: Objects in javascript

https://abhijeet-nandvikar.hashnode.dev/objects-in-javascript

Hashnode - javascript (Javascript)

In this blog, I will try to cover the concept of objects in JavaScript in detail. After reading this blog I am sure you will have a clear understanding of the topic. Let's get started' Introduction. Object in JavaScript is just a collection of key-va...


10 / 58

10: Comment le Nokia 3310 permet de voler des voitures '

https://www.lebigdata.fr/voler-voitures-nokia-3310

Le Big Data (dataviz)

Des hackers ont récemment diffusé une vidéo sur le net montrant leur technique pour voler des voitures avec un Nokia … Cet article Comment le Nokia 3310 permet de voler des voitures ' a été publié sur LEBIGDATA.FR.


11: Tracking a Job Change with UTMs and Resume Hyperlinks

https://datatribute.com/tracking-a-job-change-with-utms-and-resume-hyperlinks

Hashnode - python (python)

Thought I got curious if recruiters or hiring managers were even reading my resume, let alone clicking on the links I provided them on my resume. So I got curious.. how can I get concrete visibility into their engagement' Here is what the top of my r...


12: A Beginner's Guide to Using map(), filter(), and reduce() in JavaScript

https://amulgaurav.hashnode.dev/a-beginners-guide-to-using-map-filter-and-reduce-in-javascript

Hashnode - javascript (Javascript)

"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." JavaScript offers a powerful set of built-in functions, including map(), filter(), and reduce(). If you've been programming for a while...


13: Ep. 4 How functions work in JS '' & Variable Environment - HOISTING | Namaste JavaScript

https://atomicjuggernaut.hashnode.dev/ep-4-how-functions-work-in-js-variable-environment-hoisting-namaste-javascript

Hashnode - javascript (Javascript)

If you're new to JavaScript, you may have heard the term "hoisting" thrown around but not fully understood what it means. In this article, we'll dive into the concept of hoisting and how it affects the way your code is executed. What is Hoisting in J...


14: Event Handling and Embedded Expressions

https://chrisabuga.com/event-handling-and-embedded-expressions

Hashnode - javascript (Javascript)

Hello Guys, I'm sort of excited to be publishing my first article, more to come. I'll be writing on event handling which is actually an exciting and essential part of JavaScript and React. So In this article, you'll learn the different ways to embed ...


15: Which Countries are Granted the Most New Patents'

https://www.visualcapitalist.com/cp/countries-new-patents/

Visual Capitalist (dataviz)

Which countries, and technologies, are being granted the most new patents' This graphic visualizes patent grants by country of origin. The post Which Countries are Granted the Most New Patents' appeared first on Visual Capitalist.


16: Python Fundamentals in a Nutshell

https://vaishnave.page/python-fundamentals-in-a-nutshell

Hashnode - python (python)

After some time off from Python, I decided to revisit some old concepts as well as learn a few new ones. Thought of summarizing them here: If you are performing the same calculation within a function for different input arguments, use nested functio...


17: Use your own Python packages in Glue jobs

https://martijn-sturm.hashnode.dev/use-your-own-python-packages-in-glue-jobs

Hashnode - python (python)

Many data engineering use cases require you to repeat some ETL logic on different (database) tables or event streams. It is adviced to separate the ETL workflows for those tables in separate Glue jobs for multiple reasons: Keeping your ETL runs per ...


18: Defining ETL jobs as Infrastructure-as-Code

https://martijn-sturm.hashnode.dev/defining-glue-etl-jobs-as-infrastructure-as-code

Hashnode - python (python)

Using Infrastructure-as-Code (IaC) for deployment of resources to the cloud is a no-brainer nowadays. The learning-curve at the start is a bit steeper than applying click-ops, but will pay off in te long-term. In this post I try to assist in getting ...


19: Navigating the Fog of Tech: My Journey as an Introverted Tech Enthusiast

https://hyperleafy.hashnode.dev/navigating-the-fog-of-tech-my-journey-as-an-introverted-tech-enthusiast

Hashnode - python (python)

"Writing is like driving at night in the fog. You can only see as far as your headlights, but you can make the whole trip that way." This quote by E.L. Doctorow resonates with me on many levels. The idea is that even if you don't know exactly where ...


20 / 58

20: Ultimate Guide on Docker

https://abishekydv.hashnode.dev/ultimate-guide-on-docker

Hashnode - python (python)

Introduction Hello and welcome to this blog post where I will show you how to get started with Docker, one of the most popular and powerful tools for creating and managing containers. If you are new to containers, they are a way of packaging your app...


21: Leetcode Public APIs

https://bharathkalyans.hashnode.dev/leetcode-public-apis

Hashnode - javascript (Javascript)

I have been searching for public APIs of leetcode for a personal project. But sadly couldn't find one that offered multiple endpoints. As a matter of fact, I found only a single service that offered only one endpoint. So, I created my own service u...


22: Ternary Operators.

https://chikacodes.hashnode.dev/ternary-operators

Hashnode - javascript (Javascript)

Ternary operators are conditional expressions which can be used as a substitute for the if-else control structure. Unlike the regular If-else control structure, Ternary operators could return a value, and that value can be assigned to a variable. The...


23: LeetCode - Divide Two Integers

https://alkesh26.hashnode.dev/leetcode-divide-two-integers

Hashnode - javascript (Javascript)

Problem statement Given two integers dividend and divisor, divide two integers without using multiplication, division, and mod operator. The integer division should truncate toward zero, which means losing its fractional part. For example, 8.345 woul...


24: Step-by-step guide on how to build and deploy a Serverless React application using AWS Amplify.

https://techiechristie.hashnode.dev/step-by-step-guide-on-how-to-build-and-deploy-a-serverless-react-application-using-aws-amplify

Hashnode - javascript (Javascript)

Introduction: Serverless applications are becoming increasingly popular due to their scalability, cost-effectiveness, and ease of deployment. AWS Amplify is a great tool for building serverless apps. With its announcement in November 2017 as an open-...


25: Day 56 - Introduction to OOPs in Python

https://codewithjain.hashnode.dev/day-56-introduction-to-oops-in-python

Hashnode - python (python)

Introduction Welcome to my 56th blog post on the Python coding journey. On day 56, I learned about the concept of OOP's i.e Object Oriented Programming in Python. I learnt the concept of object and classes in OOP's and also learned about the properti...


26: Best Practices For Async Programming In JavaScript

https://openreplay.hashnode.dev/best-practices-for-async-programming-in-javascript

Hashnode - javascript (Javascript)

JavaScript provides several tools to allow you to write and execute asynchronous (async) code with no loss in performance. This article will show several best practices for async coding so you can write optimum code. JavaScript is one of the most po...


27: Solid.js: Rev Up Your Web Apps!

https://phoenixdev.hashnode.dev/solidjs-rev-up-your-web-apps

Hashnode - javascript (Javascript)

Introduction Are you ready to embark on a delightful journey to discover the marvels of Solid.js, a groundbreaking JavaScript framework' If you're a web developer or a technology enthusiast, you're in for a treat! In this fun and engaging blog, we wi...


28: Optimizing React Performance with Batching: A Simple Guide

https://devstation.hashnode.dev/optimizing-react-performance-with-batching-a-simple-guide

Hashnode - javascript (Javascript)

Batching is an important concept in React that helps to optimize the performance of your application by grouping multiple updates together into a single batch. In this blog post, we'll take a look at what batching is, how it works, and provide a simp...


29: Creating a Mastodon Bot with Python

https://blog.tiagorangel.com/creating-a-mastodon-bot-with-python

Hashnode - python (python)

Mastodon is a decentralized social network that allows users to create their own instances and communicate with users on other instances. With a Mastodon bot, you can automate tasks such as posting updates, replying to mentions, or even creating inte...


30 / 58

30: Top 5 Features of Vue Js

https://blog.skillsafari.in/top-5-features-of-vue-js

Hashnode - vuejs (Javascript)

The well-known Javascript framework Vue.js was created by evanu. Developers primarily use it to produce interactive user interfaces. The primary purpose of the Javascript framework Vue.js used by developers is to build interactive user interfaces. Th...


31: Maps in JavaScript

https://singhanushka.hashnode.dev/maps-in-javascript

Hashnode - javascript (Javascript)

A map is a collection of elements where each element is stored as a Key, value pair. It remembers the original insertion order of the keys. A key in the Map may only occur once; it is unique in the Map's collection. Iteration happens in insertion ord...


32: Why theming in Flutter is confusing (to me) Part 2

https://fluttergamedev.com/why-theming-in-flutter-is-confusing-to-me-part-2

Hashnode - Flutter (Flutter)

In my previous article, I tried to explain why theming in Flutter confuses me.I ended the article by saying the way ThemeData is implemented doesn't make sense to me. A few weeks have passed and I've been playing with this in my head, and within my p...


33: Flutter + Fastlane + GitHub Actions (Part 2)

https://o-ifeanyi.hashnode.dev/flutter-fastlane-github-actions-part-2

Hashnode - Flutter (Flutter)

Introduction In the previous article, Flutter + Fastlane, we discussed setting up Fastlane for building and deploying Android and iOS applications to the Play Store and App Store respectively. Makefile was also utilized to automate the testing, build...


34: Binning Data with Pandas and NumPy: A Comprehensive Guide on Handling Multiple Conditions for Improved Data Analysis

https://rios.hashnode.dev/binning-data-with-pandas-and-numpy-a-comprehensive-guide-on-handling-multiple-conditions-for-improved-data-analysis

Hashnode - python (python)

Have you ever wanted to analyze data but found that the variables you're working with have different criteria for grouping' For example, you might be curious about the relationship between age and income across different countries or exploring how te...


35: How I Reduced Docker Image Size from 1.43 GB to 22.4 MB

https://mdfaisal.hashnode.dev/how-i-reduced-docker-image-size-from-143-gb-to-224-mb

Hashnode - javascript (Javascript)

To read more articles like this, visit my blog If you are working in web development, then you probably already know about the idea of containerization and how it's so great and everything. But when working with Docker image size is a great concern. ...


36: Multiple Process Creation and Scheduling in OS: Practical Example with Code

https://harshmange.hashnode.dev/multiple-process-creation-and-scheduling-in-os-practical-example-with-code

Hashnode - python (python)

Here's an example of how to create multiple processes, schedule them using priority scheduling, and execute a task in Python: import multiprocessing import heapq def worker_task(task): print("Executing task:", task) if __name__ == '__main__': ...


37: The Start....

https://emilyiannizzi.hashnode.dev/the-start

Hashnode - javascript (Javascript)

Welcome to my blog! Here, I wanna share my journey as I start my path into a programming career. Whether you're here to watch as I dive into the coding world or offer encouragement to my fellow beginners as well, I want to use this platform to share ...


38: Diving into useEffect React Hooks

https://imsidkg.hashnode.dev/diving-into-useeffect-react-hooks

Hashnode - javascript (Javascript)

What are Side-Effects' Before we get into the useEffect we need to recall what are Side-Effects. Suppose you have a pure function that takes two integers as an argument and returns the sum of those two numbers and the function also has console.log we...


39: Diving into more React Hooks

https://imsidkg.hashnode.dev/diving-into-more-react-hooks

Hashnode - javascript (Javascript)

What are Side-Effects' Before we get into the hooks we need to recall what are Side-Effects. Suppose you have a pure function that takes two integers as an argument and returns the sum of those two numbers and the function also has console.log well. ...


40 / 58

40: Prototypes in JavaScript

https://www.omkarterbhai.com/prototypes-in-javascript

Hashnode - javascript (Javascript)

The word 'prototype' according to Google is "an original model on which something is patterned". Does this hold in the case of Javascript' This article assumes that you have spent significant time with Javascript. Hopefully till the basics of classes...


41: Best 3 Bootstrap Alternatives

https://badbatunde.hashnode.dev/best-3-bootstrap-alternatives

Hashnode - javascript (Javascript)

Bootstrap is a free and open-source front-end framework developed in the mid-2010 by a designer and a developer at Twitter that provides a set of tools and resources for building responsive, mobile-first websites and web applications. It is one of th...


42: How to run custom SQL queries using functions in Supabase

https://blog.1links.app/how-to-run-custom-sql-queries-using-functions-in-supabase

Hashnode - javascript (Javascript)

Supabase is an open-source alternative to Firebase that offers a PostgreSQL database, authentication, and API tools for developers. One of the most powerful features of Supabase is the ability to run custom SQL queries using functions. In this articl...


43: Avec Stealth Browser, Searchlight Cyber sécurise les enquêtes sur le dark web

https://www.lemondeinformatique.fr/actualites/lire-avec-stealth-browser-searchlight-cyber-securise-les-enquetes-sur-le-dark-web-90228.html

Le monde informatique (Internet / Informatique)

Terrain de jeux des cybercrcriminels, le dark web intéresse aussi beaucoup les analystes et les chercheurs en sécurité. Mais leurs (...)


44: "Getting Started with Front-End Development : A Beginner's Guide"

https://aishwaryablogs.hashnode.dev/getting-started-with-front-end-development-a-beginners-guide

Hashnode - javascript (Javascript)

Introduction:- Front-end development refers to the part of web development that focuses on the user-facing or client-side aspects of a website or application. This includes the design, layout, and interactivity of a website, as well as the functional...


45: Implementing the Outbox Pattern in Nodejs and Postgres

https://antman-does-software.com/implementing-the-outbox-pattern-in-nodejs-and-postgres

Hashnode - javascript (Javascript)

As applications scale, infrequent problems become significant. A network failure for 0.1% of requests is trivial at 1,000 requests per day, but a nightmare for customer support at 1,000,000 requests per day. This commonly happens when we have externa...


46: "Mastering the Top 5 Most Asked Topics in JavaScript: A Comprehensive Guide for Developers"

https://jayrajblog.hashnode.dev/mastering-the-top-5-most-asked-topics-in-javascript-a-comprehensive-guide-for-developers

Hashnode - javascript (Javascript)

Call In javascript call() is a built-in method of the Function prototype that allows you to call a function with a specified this value and arguments provided individually.The call() method is similar to the apply() method, except that it takes argum...


47: Basics of Python Part-1

https://muqafam.hashnode.dev/basics-of-python-part-1

Hashnode - python (python)

What is Python: Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is an interpreted, High Level, general-purpose programming language. Python also offers the ability...


48: Complete Jenkins CI/CD Project

https://irfan786.hashnode.dev/complete-jenkins-cicd-project

Hashnode - javascript (Javascript)

Task-01 Fork this repository: Create a connection to your Jenkins job and your GitHub Repository via GitHub Integration. Read About GitHub WebHooks and make sure you have CICD setup I have forked the repository, Let's start Step1: Step:2 Create...


49: Graph data structure in Typescript

https://stackfull.dev/graph-data-structure-in-typescript

Hashnode - javascript (Javascript)

The graph data structure is a fundamental concept in computer science, and it is used in various domains such as social networks, transportation systems, and computer networks. A graph is a collection of nodes connected by edges, where each node repr...


50 / 58

50: Restore The Array

https://leeting-lcs.hashnode.dev/restore-the-array

Hashnode - python (python)

Problem Statement:- A program was supposed to print an array of integers. The program forgot to print whitespaces and the array is printed as a string of digits s and all we know is that all integers in the array were in the range [1, k] and there ar...


51: Day 33 - Short Hand if else

https://viveky.hashnode.dev/day-33-short-hand-if-else

Hashnode - python (python)

If ... Else in One Line There is also a shorthand syntax for the if-else statement that can be used when the condition being tested is simple and the code blocks to be executed are short. Here's an example: a = 2 b = 330 print("A") if a > b else prin...


52: How to Set Up a New Jenkins Build Agent

https://mrdevops.hashnode.dev/how-to-set-up-a-new-jenkins-build-agent

Hashnode - javascript (Javascript)

Are you running out of Jenkins executors or stuck waiting for queued jobs for your Jenkins Windows jobs' If so, you need to set up more Jenkins agents. In this tutorial, you'll learn how to add a Jenkins agent Windows node to support an ever-growing ...


53: Understanding DOM

https://sandrana.hashnode.dev/understanding-dom

Hashnode - javascript (Javascript)

Basic Definition DOM stands for Document Object Model is a programming interface for webpages. It represents the structure and content of the webpage in a tree-like structure, with each element on the page as a "node" in the tree. Imagine a web page ...


54: ColPat : The Ultimate Design Tool

https://blog.itsvg.in/colpat-the-ultimate-design-tool

Hashnode - javascript (Javascript)

ColPat: The Ultimate Design Tool Color is a crucial aspect of design, and choosing the perfect color palette can be a daunting task. Luckily, ColPat offers a range of awesome tools that allow you to unleash your creativity and take your designs to th...


55: Essential Design Patterns -An Easy Explanation through Real-World Examples - Part 2: Observer and Decorator

https://techtonics.hashnode.dev/essential-design-patterns-an-easy-explanation-through-real-world-examples-part-2-observer-and-decorator

Hashnode - python (python)

Welcome! to the second part of the series on Object-Oriented Design Patterns through Python. Read the first part here. In this post, we will discuss the next two important design patterns: the Observer pattern and the Decorator pattern*.* Observer De...


56: Working on Matching and User Interface Improvements for the project

https://arashjangali.com/working-on-matching-and-user-interface-improvements-for-the-project

Hashnode - javascript (Javascript)

Day 82 of #100DaysOfCode and today I made some great progress on the project. I wrote the code for the other side of users to capture the user ID of liked users and send them along with the signed-in user's ID to the backend and to the database. As I...


57: Web Weekly 99 (blogPost)

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

Stefan Judis (Développement)

Guten Tag! 'Do you know what's new in ECMAScript 2023' Or are you still confused about all these CSS color spaces' Or want to learn how to shrink your custom web fonts' All the answers and much more are included in this week's Web Weekly. ' Three weeks ago, I published a post getting into variable fonts, the Roboto font, and its GRAD axis that enables you to transition font weights without charact [...]




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