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

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


Samedi 23 Septembre 2023 (55)

1: A Comprehensive Comparison of JavaScript and Python

https://codegeeks.hashnode.dev/a-comprehensive-comparison-of-javascript-and-python

Hashnode - javascript (Javascript)

Choosing the right programming language is a critical decision in the software development process. JavaScript and Python are two prominent programming languages, each with its own strengths and weaknesses. In this detailed comparison, we will explor...


2: Building an Order Tracking Bar for E-Commerce: A Step-by-Step Guide in Next.js

https://thewheelofcoder.hashnode.dev/building-an-order-tracking-bar-for-e-commerce-a-step-by-step-guide-in-nextjs

Hashnode - javascript (Javascript)

Introduction In the fast-paced world of e-commerce, tracking the status of orders is crucial for both businesses and customers. A well-designed order tracking system enhances the user experience and keeps customers informed about the whereabouts of t...


3: Building a Workout Tracker Web App with React and Docker Part 1

https://blog.learnhub.africa/building-a-workout-tracker-web-app-with-react-and-docker-part-1

Hashnode - javascript (Javascript)

Tracking your workouts and fitness goals is critical for monitoring progress and staying motivated. Web apps provide a convenient way to log this data accessible on any device. However, web data can be lost if the server goes down. Containerizing the...


4: Difference Between Async & Defer Attributes in JavaScript

https://ekaterine-mitagvaria.hashnode.dev/difference-between-async-defer-attributes-in-javascript

Hashnode - javascript (Javascript)

When you are loading JavaScript files in your code, their download time takes longer than HTML because the size of JavaScript is usually larger. The scripts of JavaScript are downloaded along with other things like stylesheets and images and will be ...


5: Aspirante Data Analyst: Du Stockage Massif à l'Analyse de Données avec Python et SQL

https://gkennethe.hashnode.dev/aspirante-data-analyst-du-stockage-massif-a-lanalyse-de-donnees-avec-python-et-sql

Hashnode - python (python)

Le monde de la technologie évolue à une vitesse vertigineuse. À mesure que notre capacité à stocker d'énormes quantités d'informations s'accroît, l'analyse de données devient de plus en plus cruciale. Dans les prochaines semaines, je vous ammène avec...


6: [Automation] Scheduling Python Programs: Pushing Notifications, Executing SQLs, etc...

https://alinsky.hashnode.dev/automation-scheduling-python-programs-pushing-notifications-executing-sqls-etc

Hashnode - python (python)

This article is about pitfalls, solutions, and what I've come to in scheduling Python scripts. Imagine the following case: periodically, you have to execute updating SQLs using ORM models from your codebase with intermediate processing. For example, ...


7: Recursion: A Powerful Tool for JavaScript Developers

https://mohamedzhioua.hashnode.dev/recursion-a-powerful-tool-for-javascript-developers

Hashnode - javascript (Javascript)

Table of Contents Introduction to Recursion in JavaScript How Recursive Functions Work Differences Between Recursion and Iteration Example Code for Recursion on Nested Objects Recursive Power in Nested Objects Against Normal Iteration Conclus...


8: Sequences in Python

https://logak.hashnode.dev/sequences-in-python

Hashnode - python (python)

In this comprehensive article, we will delve into the fascinating world of sequences in Python, exploring their intricacies and various applications. By providing a thorough examination of the different types of sequences available in Python, we aim ...


9: Mastering Batch Normalization for Neural Networks

https://kaanberke.hashnode.dev/mastering-batch-normalization-for-neural-networks

Hashnode - python (python)

Batch normalization has become a key technique for training deep neural networks. But what exactly does it do and why is it so important' In this post, we'll explain batch normalization using an analogy, walk through the technical details, and cover ...


10 / 55

10: Simplicity vs Performance: How to transition between the background color and an image

https://iwaduarte.dev/articles/simplicity-vs-performance-how-to-transition-between-the-background-color-and-an-image

Hashnode - javascript (Javascript)

Simplicity vs Performance: How to transition between the background color and an image What to consider when they both clash' When developing my new website https://iwaduarte.dev/ I wanted to have a 'killer' feature: to hover over an element and have...


11: Setup Multi-Page JavaScript boilerplate with Wepack 5, Babel, husky, and Github-actions

https://blog.mastercodding.com/setup-multi-page-javascript-boilerplate-with-wepack-5-babel-husky-and-github-actions

Hashnode - javascript (Javascript)

Setting up a boilerplate using Webpack seems daunting at first unless I set it up step by step and found that it wasn't as difficult as I thought it to be. If you are looking for setting up a multi-page JavaScript project using Webpack 5, you have co...


12: DAY 23 of PYTHON top 100 questions : from Basic to Advanced !!

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

Hashnode - python (python)

Write a Python program to count the number of words in a given string #Write a Python program to count the number of words in a given string word = input("enter the word : ") split_word=word.split() print(len(split_word)) Output : enter the word ...


13: Unveiling the Magic of Django ORM: A Powerful Tool for Effortless Database Management.

https://blog.congineal.com/unveiling-the-magic-of-django-orm-a-powerful-tool-for-effortless-database-management

Hashnode - python (python)

Introduction In the world of web development, managing databases is a crucial task. Storing, retrieving, and manipulating data efficiently is essential for building robust applications. This is where Object-Relational Mapping (ORM) comes into play, a...


14: Creating a 9x9 Tic Tac Toe Game with Pygame

https://haochengcodedev.hashnode.dev/creating-a-9x9-tic-tac-toe-game-with-pygame

Hashnode - python (python)

Welcome to this tutorial! Today, we learn how to create an enhanced version of the classic Tic Tac Toe game. Instead of the traditional 3x3 grid, we will design a more challenging 9x9 version and use Pygame, a library in Python for game design. Prer...


15: ' Demystifying React JSX: A Beginner-Friendly Guide! '

https://kushal.com/react-jsx

Hashnode - javascript (Javascript)

Introduction to React JSX' In React, sometimes we need to mix JavaScript with HTML. That's where JSX comes in'. Instead of inventing a whole new technology for this, React introduced JSX. It's like a special file type that lets us blend JavaScript ...


16: Flutter GetX: Effortlessly Implementing Snackbars

https://umairabbasi7.hashnode.dev/flutter-getx-effortlessly-implementing-snackbars

Hashnode - Flutter (Flutter)

In the world of Flutter, user feedback is paramount, and one of the most common ways to communicate with users is through Snackbars. These unobtrusive, temporary messages provide information, alerts, or actions. Today, we'll explore how to seamlessly...


17: The Event Loop: JavaScript's Traffic Cop for Asynchronous Tasks

https://chirayu31.hashnode.dev/the-event-loop

Hashnode - javascript (Javascript)

JavaScript is a programming language known for its single-threaded, synchronous execution. This means it processes one task in a specified order at a time. The JavaScript engine contains a call stack, which keeps track of the execution context, inclu...


18: Finding Largest and Smallest element from a list in python

https://codeverses.hashnode.dev/finding-largest-and-smallest-element-from-a-list-in-python

Hashnode - python (python)

In this article, I will provide you with functions for finding the largest and smallest element from a list in Python using two ways methods. Without using the library function Using library function Without library Function Finding the largest ...


19: What happens when you type a URL to your browser and press 'Enter'

https://howardphung.hashnode.dev/what-happens-when-you-type-a-url-to-your-browser-and-press-enter

Hashnode - javascript (Javascript)

' The scenario You open your browser (Chomre, Safari or Firefox,... etc). You type "google dot com" into your browser and then hit Enter or Return (for you Apple fan). What really happens under the hood' ' In this article, I will walk you through t...


20 / 55

20: What happens when you type 'google.com' into your browser and press 'Enter'

https://howardphung.hashnode.dev/what-happens-when-you-type-googlecom-into-your-browser-and-press-enter

Hashnode - javascript (Javascript)

' The scenario You open your browser (Chomre, Safari or Firefox,... etc). You type "google dot com" into your browser and then hit Enter or Return (for you Apple fan). What really happens under the hood' ' In this article, I will walk you through t...


21: Power BI vs Python for Data Analysis ' When to use Which '

https://haard.hashnode.dev/power-bi-vs-python-for-data-analysis-when-to-use-which

Hashnode - python (python)

There are many business problems where we need Data Analysis. The corporate world need Data Analysis for sales analysis, Market Analysis for better product reach, Customer Analysis etc.. managers and executives have nothing to do with which tools the...


22: Converting String to Lowercase in JavaScript

https://stackabuse.com/converting-string-to-lowercase-in-javascript/

Stack Abuse (Javascript)

Introduction If you've ever found yourself needing to standardize user input or prepare text data for analysis, then you may have needed to lowercase strings. While there is one widely used method, there are also other string manipulation methods that you should consider as well, which is what we'll cover


23: NumPy Introduction

https://boratechlife.hashnode.dev/numpy-introduction

Hashnode - python (python)

-Stands for Numerical Python provides an array object that is faster than the common python array. To install pip install numpy After installing open your jupiter notebook or python file and type `import numpy` Example 1: convert and array to nu...


24: Python One-Liners: Unveiling the Magic of Concise Code Part - 1 ''

https://coderj001.hashnode.dev/python-one-liners-unveiling-the-magic-of-concise-code-part-1

Hashnode - python (python)

In the world of coding, elegance and brevity can be just as captivating as complexity. Welcome to the first instalment of our Python One-Liners series, where we'll explore the art of achieving remarkable tasks in a single line of Python code. Inspire...


25: Essential Python Functions: Unlocking the Power of Tuples

https://blog.bytescrum.com/essential-python-functions-unlocking-the-power-of-tuples

Hashnode - python (python)

This bonus blog explores Python functions in tuples, highlighting their importance in programming. Python functions are powerful tools that streamline programs, organize them, and solve complex problems. The blog is a way to thank the community for t...


26: From Novice to Pro: Understanding JavaScript Primitive and Reference Data Types

https://ajikadev.hashnode.dev/from-novice-to-pro-understanding-javascript-primitive-and-reference-data-types

Hashnode - javascript (Javascript)

Introduction In this article, we are going to learn all you need to become a master in data types which is the most important language of the web. We shall get to know their importance, how they affect variable declaration, the various types and the...


27: Adding a Page Scroll Indicator to an HTML page.

https://blog.theadeyemiolayinka.com/adding-a-page-scroll-indicator-to-an-html-page

Hashnode - javascript (Javascript)

Scroll indicators serve as a visual aid for website visitors, helping them understand how far they've scrolled through your content. In this tutorial, we'll walk you through the process of creating a JavaScript scroll indicator from the ground up. We...


28: Understanding JavaScript Execution Context

https://arindam1729.hashnode.dev/understanding-javascript-execution-context

Hashnode - javascript (Javascript)

Introduction When we write JavaScript code, it's more than just lines of instructions. It creates a sequence of events and executes them in an order. But, How does JavaScript decide the order in which these events are executed' The answer is simple! ...


29: Swapping Variables with XOR Operator in JavaScript

https://shunnu.hashnode.dev/swapping-variables-with-xor-operator-in-javascript

Hashnode - javascript (Javascript)

Swapping variables is a typical operation in programming. Traditionally, this is done using a temporary variable to store one of the values. However, did you know you can achieve the same result in JavaScript using the XOR (^) operator' Let's dive in...


30 / 55

30: Maximizing Performance: Techniques to Optimize FPS in Unity Applications

https://kalyanvissamsetty.hashnode.dev/maximizing-performance-techniques-to-optimize-fps-in-unity-applications

Hashnode - Unity (unity)

In the world of game development and interactive applications, achieving smooth and consistent frame rates is crucial for delivering a seamless user experience. Whether you're creating a game, a simulation, or an augmented reality application, optimi...


31: Data Types in JavaScript

https://sdemanish.hashnode.dev/data-types-in-javascript

Hashnode - javascript (Javascript)

When you work with JavaScript, you encounter various data types that allow you to store and manipulate different kinds of information. Understanding these data types is fundamental to effective programming in JavaScript. In this blog post, we'll expl...


32: "Mastering the Art of Clean Code: Building Bug-Free and Scalable Python Applications"

https://idostack.hashnode.dev/mastering-the-art-of-clean-code-building-bug-free-and-scalable-python-applications

Hashnode - python (python)

'' As I immerse myself in the world of Python programming, I've come to understand the significance of writing code that's free of errors and the art of troubleshooting. ' ' When it comes to Python development, I firmly believe that the journey to...


33: Demystifying Machine Learning: 5 Common Algorithms for Real-World Applications

https://devhawks.hashnode.dev/demystifying-machine-learning-5-common-algorithms-for-real-world-applications

Hashnode - python (python)

Introduction In an era where data reigns supreme, the ability to extract meaningful insights from the vast sea of information has become a cornerstone of innovation and progress. At the heart of this data-driven revolution lies machine learning'a pow...


34: Ces scientifiques viennent de réussir à écrire sur l'eau : une révolution '

https://www.lebigdata.fr/scientifiques-ecrire-sur-eau

Le Big Data (dataviz)

Écrire dans l’eau semble contre-intuitif, mais des scientifiques allemands ont réussi cet exploit étonnant. Utilisant une microbille comme stylo, ils … Cet article Ces scientifiques viennent de réussir à écrire sur l'eau : une révolution ' a été publié sur LEBIGDATA.FR.


35: JavaScript's Amazing Duo: async/await

https://ashuraturiblogs.hashnode.dev/amazing-duo-asyncawait

Hashnode - javascript (Javascript)

Introduction In this article, we will learn about the async/await in JavaScript from scratch. First, we will learn about each keyword in detail and then we will move on to how we can use the combination async/await to handle asynchronous operations. ...


36: Microsoft inaugure AI Copilot dans Windows 11 23H2

https://www.lemondeinformatique.fr/actualites/lire-microsoft-inaugure-ai-copilot-dans-windows-11-23h2-91646.html

Le monde informatique (Informatique / Internet)

C'est à l'occasion de son événement ce 21 septembre à New York que Microsoft a dévoilé la mise à (...)


37: The Edgiest Stack of 2023: Next.js, ShadCN UI, OpenAI, and Supabase

https://programmingfire.com/the-edgiest-stack-of-2023-nextjs-shadcn-ui-openai-and-supabase

Hashnode - javascript (Javascript)

Are you ready to ride the wave of cutting-edge technology and take your web development game to the next level' The year 2023 has ushered in a stack that's not just edgy; it's the epitome of cool in the web development world. Brace yourself for the u...


38: Build Facial recognition with Python, OpenCV, OpenAI CLIP and pgvector

https://krishabh.devops/build-facial-recognition-with-python-opencv-openai-clip-and-pgvector

Hashnode - python (python)

Facial recognition technology has taken the world by storm, revolutionizing industries such as security, social media, and even our smartphones. With Python, OpenCV, and PostgreSQL at our disposal, we embark on a journey to develop a powerful facial ...


39: An In-Depth Explanation of Vue 3 Lifecycle Methods

https://salkobalic.com/an-in-depth-explanation-of-vue-3-lifecycle-methods

Hashnode - vuejs (Javascript)

If you want to be a pro at developing and managing Vue.js applications, it's super important to get a good grasp on Vue.js lifecycles. Just like many other cool JavaScript frameworks, Vue.js uses a component-based architecture and offers a bunch of l...


40 / 55

40: Introducing Bun: A Game-Changing Toolkit for JavaScript and TypeScript Development

https://vibenr.hashnode.dev/introducing-bun-a-game-changing-toolkit-for-javascript-and-typescript-development

Hashnode - javascript (Javascript)

Bun is a super fast all-in-one toolkit for JavaScript and TypeScript apps. Bun streamlines the development process, making it smoother and more efficient. Bun is not just a runtime, but also a package manager, bundler, and test runner. Bun aims to...


41: Demystifying Promises in JavaScript

https://theibinolamichael.hashnode.dev/demystifying-promises-in-javascript

Hashnode - javascript (Javascript)

Hey there! So, you know how in JavaScript, we often have to deal with tasks that take some time to finish, like fetching data from a website or reading a file' Well, that's where Promises come into play. They're like a more organized way of handling ...


42: From Zero to Python Hero: Day 11 - The Number Guessing Game

https://nongeekcodelab.hashnode.dev/from-zero-to-python-hero-day-11-the-number-guessing-game

Hashnode - python (python)

Introduction Greetings, fellow coding enthusiasts! Welcome back to my 100-day programming journey. On Day 11, I delved deeper into the Python programming language, exploring namespaces, scopes, and taking on the challenging Number Guessing Game proje...


43: Exploring JavaScript Array Methods

https://rubelmehmed.xyz/exploring-javascript-array-methods

Hashnode - javascript (Javascript)

By Rubel Mehmed JavaScript is a versatile and widely-used programming language, and one of its most fundamental data structures is the array. Arrays allow developers to store and manipulate collections of data efficiently. In this blog post, we'll d...


44: Android: Content Provider

https://rommansabbir.com/android-content-provider

Hashnode - Kotlin (Mobiles)

If you've ever wondered how Android apps share data or how they manage to access and manipulate data across different apps, you've come to the right place. In the world of Android development, Content Providers play a pivotal role in making this happ...


45: Plan B animal : la cartographie sensible d'un espace partagé

https://visionscarto.net/plan-b-animal

Visions Carto (dataviz)

Plan B Animal est une carte alternative qui trace deux années de cheminements pistés et géolocalisés de la faune sauvage vivant dans un milieu forestier et agricole contraint, découpé par des voies de transport et des zones d'activité humaine, qui sont autant d'obstacles plus ou moins infranchissables pour les animaux. Leurs sentes et lieux de vie révèlent la présence d'animaux souvent i [...]


46: Cybersécurité : Cisco veut acheter ce mastodonte pour 28 milliards de dollars

https://www.lebigdata.fr/cybersecurite-cisco-veut-acheter-ce-mastodonte-pour-28-milliards-de-dollars

Le Big Data (dataviz)

Le 21 septembre, Cisco Systems a annoncé une acquisition historique en acceptant d’acheter la société de cybersécurité Splunk. Cisco Systems … Cet article Cybersécurité : Cisco veut acheter ce mastodonte pour 28 milliards de dollars a été publié sur LEBIGDATA.FR.


47: Microsoft Copilot : tout savoir sur l'IA qui va transformer Windows

https://www.lebigdata.fr/microsoft-copilot-tout-savoir

Le Big Data (dataviz)

Oubliez Clippy, l’ancien assistant de Microsoft Word. Copilot, la nouvelle révélation de Microsoft lors du Surface Event 2023, est prêt … Cet article Microsoft Copilot : tout savoir sur l'IA qui va transformer Windows a été publié sur LEBIGDATA.FR.


48: Introduction to Frontend Development

https://sundayfavour.com/introduction-to-frontend-development

Hashnode - javascript (Javascript)

Definition of Frontend Development. Role of Frontend Developers. Importance of User Interface (UI) and User Experience (UX). The Basics of Web Technologies. HTML (Hypertext Markup Language) 1. Structure and Elements 2. Semantic HTML B. CSS (Casca...


49: Composition vs Inheritance

https://javascriptproxy.wordpress.com/composition-vs-inheritance

Hashnode - javascript (Javascript)

React has a powerful composition model, and we recommend using composition instead of inheritance to reuse code between components. In this section, we will consider a few problems where developers new to React often reach for inheritance, and show h...


50 / 55

50: Javascript Loops

https://princ.hashnode.dev/javascript-loops

Hashnode - javascript (Javascript)

Loops are a way to repeat codes multiple times. The While Loops: While loops work if the statement is true, the code/content in the parenthesis runs continually until the condition is no longer true. Example: let i = 1 While (i < 2) { console.log...


51: Why '3 < 2 < 1' Evaluates to True - JavaScript's Sneaky Comparison

https://blogs.suyashpatil.me/why-3-2-1-evaluates-to-true-javascripts-sneaky-comparison

Hashnode - javascript (Javascript)

Introduction In the world of JavaScript, things aren't always as they seem. One peculiar quirk that often leaves developers scratching their heads is the surprising result of expressions like '3 < 2 < 1' evaluating to true. At first glance, it might ...


52: Understanding the difference between props and State in React

https://mohawwal.hashnode.dev/understanding-the-difference-between-props-and-state-in-react

Hashnode - javascript (Javascript)

Prerequisites Before diving into React, you should be familiar with HTML and CSS because they are necessary to create and style React components. Also, it's essential to have a solid grasp of JavaScript, as React is a JavaScript library. Understandin...


53: Python Basics

https://dhananjaykulkarni.hashnode.dev/python-basics

Hashnode - python (python)

In the first part of our "Python for Scripting" series, we introduced Python, its use cases, and features, and even ran a simple "Hello World" script. In this second installment, we're going to dive deeper into Python and explore its fundamental buil...


54: Liens vagabonds : l'IA entre à Matignon, avec Meta et Google

https://www.meta-media.fr/2023/09/23/liens-vagabonds-lia-entre-a-matignon-avec-meta-et-google.html

Meta Media (Internet)

Le 28 août dernier, la Première ministre Elisabeth Borne annonçait lors de la rencontre des entrepreneurs souhaiter mettre en place un comité pour l'intelligence artificielle générative à Matignon. Ce mardi, la composition de ce comité et ses missions ont été dévoilées par le gouvernement. Présidé par Philippe Aghion, économiste spécialiste... The post Liens vagabonds : l'IA entre [...]




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