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


24 Septembre 2023 (63)

1: Bringing Elegance to the Night: Implementing Dark Mode in Your Rails 7 App with Tailwind and Stimulus JS

https://arthurariza.hashnode.dev/bringing-elegance-to-the-night-implementing-dark-mode-in-your-rails-7-app-with-tailwind-and-stimulus-js

Hashnode - javascript (Javascript)

In the ever-evolving landscape of web development, user experience remains a top priority. One key element of enhancing the user experience is the implementation of dark mode, a feature that has gained immense popularity in recent years. Dark mode no...


2: JavaScript for Beginners: Variable Declarations

https://ekaterine-mitagvaria.hashnode.dev/javascript-for-beginners-variable-declarations

Hashnode - javascript (Javascript)

A variable in JavaScript is a box that holds different data in it and this box has a name. A variable can contain different data types. The name is mandatory because it will help to find this box later on. If there is no name it would be hard to find...


3: Web responsiveness in Flutter using flutter_bootstrap5

https://mayourwa.hashnode.dev/web-responsiveness-in-flutter-using-flutterbootstrap5

Hashnode - Flutter (Flutter)

Achieving responsiveness across various device sizes is an integral part of building any product web or mobile, especially now that we are moving into the era of foldable phones (Foldables again ! ', I would rant in another article '). Today we wil...


4: Please input your OTP code

https://nyenooke.com/vue-otp-component

Hashnode - vuejs (Javascript)

Introduction As part of the authentication process, many products require users to provide a one-time password (OTP). By way of design, the inputs for this OTP are usually single-input boxes that allow only one digit per input. By the end of this art...


5: Conditionally calling queries in React Query

https://fercodes.hashnode.dev/conditionally-calling-queries-in-react-query

Hashnode - javascript (Javascript)

Note to the reader: This article uses the most current version of react-query, also known as @tanstack/react-query, which is currently at version 5. If you're interested in learning more about the updates in this newer version, you can find further d...


6: Conditionally calling queries in React Query

https://deadcode.hashnode.dev/conditionally-calling-queries-in-react-query

Hashnode - javascript (Javascript)

Note to the reader: This article uses the most current version of react-query, also known as @tanstack/react-query, which is currently at version 5. If you're interested in learning more about the updates in this newer version, you can find further d...


7: How to Summarize Large Documents using Langchain and OpenAI in Python

https://harikirankante.hashnode.dev/how-to-summarize-large-documents-using-langchain-and-openai-in-python

Hashnode - python (python)

Introduction In today's fast-moving world where we're bombarded with lots of written information every day, it can feel overwhelming. Whether you're a researcher going through a stack of complicated research papers, someone in charge of organizing a ...


8: JavaScript Functions and the Call Stack

https://james-reed.hashnode.dev/javascript-functions-and-the-call-stack

Hashnode - javascript (Javascript)

Introduction In this article, I am going to explain the benefits of functions including how to declare and then invoke them. Then we will take a look at how the JavaScript compiler looks at and runs our code. Lastly, I will go through the concepts of...


9: Microservice Architecture: Scaling Full-Stack Applications for Success

https://babluroy.hashnode.dev/microservice-architecture-scaling-full-stack-applications-for-success

Hashnode - javascript (Javascript)

In the ever-evolving world of software development, staying competitive and meeting user demands has become increasingly challenging. Traditional monolithic architectures often hinder agility and scalability, prompting many developers to turn to micr...


10 / 63

10: Master the concept of 'this' in JavaScript : A to Z explanation

https://fullstackwebdevtalks.hashnode.dev/master-the-concept-of-this-in-javascript-a-to-z-explanation

Hashnode - javascript (Javascript)

JavaScript is all about objects, and that means almost everything in it is like an object. Now, here's the cool part: we can make functions even more awesome by adding extra stuff to them. It's like giving them superpowers! We've talked about this th...


11: Understanding Object-Oriented Programming (OOP) in JavaScript

https://delight2003.hashnode.dev/understanding-object-oriented-programming-oop-in-javascript

Hashnode - javascript (Javascript)

JavaScript is a versatile and dynamic programming language that is widely used for building web applications. One of the key features that make JavaScript powerful is its support for Object-Oriented Programming (OOP). In this article, we will explore...


12: Created vs. Mounted in Vue: Which One to Use'

https://salkobalic.com/created-vs-mounted-in-vue-which-one-to-use

Hashnode - vuejs (Javascript)

In the Vue.js world, lifecycle hooks are super important for managing the different stages of a component's life, from when it's created to when it's removed from the app. These hooks let developers step in at just the right moments during a componen...


13: React Fiber

https://mohitxoxo.hashnode.dev/react-fiber

Hashnode - javascript (Javascript)

Shared a great repo from GitHub In this repo you will find virtual dom and reconciliation and explain in such a great way if you're a react developer or learning check this out https://x.com/MOHIT__002/status/1705989427070484626't=3T-88uf74hu_fZ1rBb2...


14: React JS Props

https://conceptsinshort.hashnode.dev/react-js-props

Hashnode - javascript (Javascript)

What are Props' Props (short for properties) are a way to pass data from a parent component to its child components in React. Props are used to provide configuration or data to components and allow them to customize their behavior and content. Pro...


15: Mastering the Art of User Experience (UX) Design

https://omotayoo.com/mastering-the-art-of-user-experience-ux-design

Hashnode - javascript (Javascript)

User experience (UX) is a user's overall experience when interacting with a product or service. User experience design (UXD) is designing products and services with the user's experience in mind. UXD is essential because it increases user satisfactio...


16: Class constructor and static in JavaScript

https://idealead.hashnode.dev/class-constructor-and-static-in-javascript

Hashnode - javascript (Javascript)

Getting started from the basics of constructors, Instance methods and Static Methods. Constructors Purpose: The constructor is a special method that gets called when you create an instance of a class. It's used to initialize the object's properties...


17: java script json in detail

https://abhijeet123.hashnode.dev/java-script-json-in-detail

Hashnode - javascript (Javascript)

Json (javascript object notation ) is a lightweight human readable data interchange format-commonlyused for transmitting and storing data. It is widely used in web application and has become a popular choice for representing structure data. Json synt...


18: Lists in Python

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

Hashnode - python (python)

In this comprehensive article, we will delve into the world of lists in Python, exploring their fundamental properties, storage mechanisms, and retrieval processes. We will also examine the basic operations that can be performed on Python lists, prov...


19: React Custom Hooks : useOnScreen Hook And The Intersection Observer API

https://sivalaxman8.hashnode.dev/react-custom-hooks-useonscreen-hook-and-the-intersection-observer-api

Hashnode - javascript (Javascript)

In the world of web development, creating responsive web applications that adapt to various screen sizes and user interactions is crucial. One key aspect of this is knowing when elements come into view or go out of view as the user scrolls. The useOn...


20 / 63

20: What Are React Components' Explained Simply !!

https://kushal.com/reactcomponents

Hashnode - javascript (Javascript)

Understanding React Components ' In React, we use something called components. These are like building blocks for making websites and apps. Think of them as small, individual parts that can be put together to create a whole website or app. Imagine a...


21: Mastering JavaScript Event Loops: A Deep Dive

https://webdv.hashnode.dev/mastering-javascript-event-loops-a-deep-dive

Hashnode - javascript (Javascript)

What are Event Loops' In short, an Event Loop is an infinite loop within the JavaScript runtime environment that determines which task to execute at any given moment. Now, you might be wondering, "Why should I familiarize myself with this concept'" W...


22: Node creator says you should strive for simplicity.

https://iwaduarte.dev/articles/node-creator-says-you-should-strive-for-simplicity

Hashnode - javascript (Javascript)

A frustrated user. (DALLE-2) I hate almost all software It's unnecessary and complicated at almost every layer. At best I can congratulate someone for quickly and simply solving a problem on top of the shit that they are given. The only software tha...


23: Applying laziness to the extreme: A new code generator for Node.js

https://iwaduarte.dev/articles/applying-laziness-to-the-extreme-a-new-code-generator-for-nodejs

Hashnode - javascript (Javascript)

Hello Sire! (DALLE-2) In my dev journey, I have always 'clicked' the lazy button. Lazy is the way pretty much like Dudeism is. Going with the flow and taking it easy until your boss is yelling at you about the bloody deadline. Instantly, you wake up ...


24: The Top 20 Programming Languages and Their Origins

https://blog.learnhub.africa/the-top-20-programming-languages-and-their-origins

Hashnode - javascript (Javascript)

Programming languages have evolved enormously over the decades since the first electronic computers emerged in the 1940s. The earliest programming was done by rewiring circuits or via plugboards to control computer operations. Soon after came the f...


25: POLYMORPHISM in JAVA

https://blogsbypatra.hashnode.dev/polymorphism-in-java

Hashnode - python (python)

Why Polymorphism ' Ans:- If I give a real-time example... we are using social media like Facebook, Instagram, YouTube, etc... Their application is allocating more space/memory. So, performance will be decreased. That's why are using a separate applic...


26: [AWS] Using API Gateway for S3 Uploads to Trigger Lambda Functions

https://iwaduarte.dev/articles/aws-using-api-gateway-for-s3-uploads-to-trigger-lambda-functions

Hashnode - javascript (Javascript)

I have stated a few posts back that I would make a tutorial like that. And yet due to procrastination, I did not do it. Also, there are a lot of tutorials on the internet that try to achieve the same thing. And that conflicts with my statement of no ...


27: GPT 4 and Why it is Good for Chrome to Crumble

https://iwaduarte.dev/articles/gpt-4-and-why-it-is-good-for-chrome-to-crumble

Hashnode - javascript (Javascript)

A long time without writing. Yeah, in a world of noise, I do not want to be this prolific AI copy/pasta that we see everywhere. The goal is to be less lazy but still try to be original (try because the temptation is real). Every word from here is fro...


28: Serverless Python: Your First Deployment ''

https://devops101-.hashnode.dev/serverless-python-your-first-deployment

Hashnode - python (python)

Introduction Serverless is a cloud computing application development and execution model that enables developers to build and run application code without provisioning or managing servers or backend infrastructure. The term 'serverless' doesn't imply...


29: Phishing : tout ce que vous devez savoir sur cette cybermenace

https://www.lebigdata.fr/phishing-tout-savoir

Le Big Data (dataviz)

Les premières arnaques au phishing ont commencé bien avant l'an 2000 ; avec l'évolution technologique, les arnaqueurs ont également amélioré … Cet article Phishing : tout ce que vous devez savoir sur cette cybermenace a été publié sur LEBIGDATA.FR.


30 / 63

30: Beginner's Guide to Web Scraping with Python: Extracting Data and Images from Flipkart

https://richak.hashnode.dev/beginners-guide-to-web-scraping-with-python-extracting-data-and-images-from-flipkart

Hashnode - python (python)

Hello Coders'''''' Are you curious about how to gather information and images from your favorite online shopping website, Flipkart' Web scraping is the key! In this beginner-friendly guide, we'll walk you through the process step by step, breaki...


31: Use of Javascript Closures in React App

https://blog.rdshinde.com/use-of-javascript-closures-in-react-app

Hashnode - javascript (Javascript)

Introduction Picture yourself enjoying your favourite latte at a coffee shop. Sitting at a corner table, you overhear two friends having a conversation. One of them shares a confidential secret with the other and asks them to keep it to themselves. L...


32: Flutter Toast Package: Adding User-Friendly Toast Notifications to Your App

https://umairabbasi7.hashnode.dev/flutter-toast-package-adding-user-friendly-toast-notifications-to-your-app

Hashnode - Flutter (Flutter)

Introduction In the world of mobile app development, providing feedback to users is crucial for a positive user experience. One effective way to do this is by using toast notifications. Toasts are unobtrusive messages that appear briefly on the scree...


33: Python Sets: Where Elements Play Musical Chairs

https://thealgorithmicjourney.com/python-sets-where-elements-play-musical-chairs

Hashnode - python (python)

Similar to Python lists and tuples, sets are data structures used to store data collection of items. There are some differences. Sets don't allow duplicate values. This makes sets an excellent choice when you need to work with unique items or perform...


34: Launch Modes in Android

https://priyanshub.hashnode.dev/launch-modes-in-android

Hashnode - Kotlin (Mobiles)

Have you ever wondered how your Android apps smoothly switch from one screen to another' It's like a well-choreographed dance, and Intents are the cues that make it happen. But what about the behind-the-scenes magic that governs how activities behave...


35: Unveiling Javascript Scopes

https://arindam1729.hashnode.dev/unveiling-javascript-scopes

Hashnode - javascript (Javascript)

Introduction: Scopes are one of the fundamental concepts of Javascript. Many Developers face problems understanding the behaviour of variables. If you are also facing the same problem. Don't Worry! You are in the right place! In this blog, We'll expl...


36: Simplify State Management with Provider in Flutter

https://raman04.hashnode.dev/simplify-state-management-with-provider-in-flutter

Hashnode - Flutter (Flutter)

In this blog post, we'll explore how to implement state management using the Provider package in Flutter. To illustrate this, we'll create a Voting Age Calculator application. This app will help users determine if they are eligible to vote based on t...


37: Weekly Design News 2

https://www.webdesignerdepot.com/2023/09/weekly-design-news-2/

Webdesigner depot (Design)

Every Sunday, we round up the best stories from webdesignernews.com. This issue features UX principles to improve your sites and apps, typography trends, a social rebrand, the best logos from the 1960s, and AI news. Plus, tons more! Let's dive in!


38: The Power of Object Pooling in Unity Game Development

https://kalyanvissamsetty.hashnode.dev/the-power-of-object-pooling-in-unity-game-development

Hashnode - Unity (unity)

Introduction: Object pooling is a crucial technique in Unity game development, optimizing performance by reusing objects instead of recreating them. It reduces resource overhead, improves gameplay smoothness, and is employed for various in-game eleme...


39: Python Packages - Everything you need to know to get started

https://saurabhmehta.hashnode.dev/python-packages-everything-you-need-to-know-to-get-started

Hashnode - python (python)

1. Course Introduction This course is for developers who have intermediate to expert-level skills in Python programming. In this course, we are going to learn : what are Python packages how to create a Python package how to install a Python packag...


40 / 63

40: Introduction to [Javascript]

https://kunmi001.hashnode.dev/introduction-to-javascript

Hashnode - javascript (Javascript)

Title: "Embarking on a Journey with JavaScript: The Heartbeat of the Web" Have you ever wondered how webpages can react to your every click, update content without a page refresh, or create those engaging online forms' It's all thanks to JavaScript, ...


41: Unleash Your Coding Skills: A Guide to Hacktoberfest 2023

https://jatinonwebdevelopment.hashnode.dev/unleash-your-coding-skills-a-guide-to-hacktoberfest-2023

Hashnode - javascript (Javascript)

Hacktoberfest 2023 Are you a college student or an open-source enthusiast looking to boost your coding prowess while contributing to the greater tech community' Well, look no further! Hacktoberfest 2023 is here, and it's your golden ticket to do just...


42: Connecting MongoDB to a Flutter App Using mongo_dart

https://kailash8799.hashnode.dev/connecting-mongodb-to-a-flutter-app-using-mongodart

Hashnode - Flutter (Flutter)

MongoDB is a popular NoSQL database known for its flexibility and scalability. Integrating MongoDB with a Flutter app can be a powerful combination. In this blog, we'll explore how to connect MongoDB to a Flutter app using the mongo_dart package. Pre...


43: Phishing : 1 personne sur 10 clique sur des liens d'hameçonnage

https://www.lebigdata.fr/1-personne-sur-10-clique-liens-hameconnage

Le Big Data (dataviz)

Selon un rapport de la société de sécurité Cloud Wandera, 1 personne sur 10 qui clique sur des liens d’hameçonnage … Cet article Phishing : 1 personne sur 10 clique sur des liens d'hameçonnage a été publié sur LEBIGDATA.FR.


44: Implementing a ViewModel in our App with MVVM & DI in Android: (Day 08)

https://blog.zuhayr.codes/implementing-a-viewmodel-in-our-app-with-mvvm-di-in-android-day-08

Hashnode - Kotlin (Mobiles)

Up until now, we have been working on injecting and implementing retrofit, RoomDB, and then our repository layer. The repository layer essentially helped us abstract the source from where data was generated or sent and worked as a single source which...


45: Python CLI Packaging: A Click Framework Guide

https://samarthgvasist.hashnode.dev/python-cli-packaging-a-click-framework-guide

Hashnode - python (python)

Introduction Command Line Interfaces (CLIs) are a powerful way to interact with Python applications, allowing users to execute various tasks and operations from the terminal. While Python offers several libraries for creating CLIs, click stands out a...


46: Formation en cybersécurité : pourquoi et comment devenir professionnel de la cyber '

https://www.lebigdata.fr/formation-cybersecurite

Le Big Data (dataviz)

Les experts en cybersécurité sont de plus en plus recherchés dans tous les secteurs, face à la recrudescence de cyberattaques. … Cet article Formation en cybersécurité : pourquoi et comment devenir professionnel de la cyber ' a été publié sur LEBIGDATA.FR.


47: Phishing : comment former vos collaborateurs contre le hameçonnage '

https://www.lebigdata.fr/phishing-formation-collaborateurs-hameconnage

Le Big Data (dataviz)

Les attaques par phishing ou hameçonnage constituent le principal danger de cybersécurité pour les entreprises françaises. Découvrez comment sensibiliser et … Cet article Phishing : comment former vos collaborateurs contre le hameçonnage ' a été publié sur LEBIGDATA.FR.


48: Navigating XGBoost 2.0.0: From Doctest Dilemma to Issue Resolution

https://rohan-anand.com/navigating-xgboost-200-from-doctest-dilemma-to-issue-resolution

Hashnode - python (python)

My recent escapade led me to the world of XGBoost, where an upgraded version turned my doctest world upside down. I was contributing to open source, at TheAlgorithms/Python, in an algorithm that uses XGBoost. Everything was running smoothly with the ...


49: Introduction To JavaScript Objects

https://thejason.hashnode.dev/introduction-to-javascript-objects

Hashnode - javascript (Javascript)

In JavaScript, objects play a fundamental role in representing and storing data. Objects are versatile and crucial in many aspects of the language, making it essential to grasp their concepts thoroughly before delving into more complex aspects of Jav...


50 / 63

50: La légende de Hyne dans FINAL FANTASY VIII

https://blog.lesieur.name/la-legende-de-hyne-final-fantasy-viii-ffviii-zet-tic/

Quelques #id et beaucoup de .class (Javascript)

Dans cet article, nous allons découvrir la légende de Hyne à travers le cours d'un professeur de la Balamb Garden University de FINAL FANTASY VIII. Nous allons nous appuyer sur le contenu des pages 477 et 478 du livre FINAL FANTASY X ULTIMANIA OMEGA. constament Chaque phrase est accompagnée de la version japonaise qui a servi de support à la traduction proposée. Cliquez sur le texte jap [...]


51: ' Exploring the Magic of JavaScript Sets and Maps ''

https://taquideveloper.hashnode.dev/exploring-the-magic-of-javascript-sets-and-maps

Hashnode - javascript (Javascript)

Hey there, fellow coding enthusiasts! ' Are you ready to embark on a thrilling journey into the fascinating world of JavaScript sets and maps' ' Strap in because we're about to delve deep into these essential data structures that can supercharge yo...


52: Python in DevOps: Simplifying Automation for Better Operations

https://srikanthmergu.hashnode.dev/python-in-devops-simplifying-automation-for-better-operations

Hashnode - python (python)

Introduction In the world of IT operations, DevOps is like a superhero, helping organizations work faster and smarter. At the core of DevOps is automation, and Python is like a trusty companion that makes automation easy. In this blog, we'll explore ...


53: Python for Data Science: A Roadmap to Follow

https://sazidthe1.hashnode.dev/python-for-data-science-a-roadmap-to-follow

Hashnode - python (python)

Nearly three months ago, I embarked on a very popular coding challenge. Yes, you've probably guessed it correctly: I started the 100DaysOfCode challenge. I am a data professional with four years of experience in the non-profit sector. When I joined t...


54: Docker - Dockerize your Python Application

https://heyanirudh.hashnode.dev/docker-dockerize-your-python-application

Hashnode - python (python)

In this world where developers and SRE strive to ship their applications to various environments in an agile and efficient way. Docker an open-source tool has emerged as a game-changer. Docker is a fantastic tool to scale up an application's producti...


55: Naming Conventions in JavaScript

https://ifeanyi-aladi.hashnode.dev/naming-conventions-in-javascript

Hashnode - javascript (Javascript)

Are you a newbie in tech' Are you new to programming with JavaScript' This blog is for you! Here I will talk about naming conventions of identifiers in JavaScript and I'll make this blog as simple as possible without much mumbo-jumbo. First of all, w...


56: Weekly Indie Log 3

https://roehl.dev/weekly-indie-log-3

Hashnode - Flutter (Flutter)

We are already diving into the third issue of this weekly indie log! Time truly flies when you're trying to build an app business alongside your 9-5 job. I hope that I can keep this consistency, and I appreciate all of you for reading this and suppor...


57: A Beginner's Guide to Basic Animation in Flutter

https://sungod.hashnode.dev/basic-animation-in-flutter

Hashnode - Flutter (Flutter)

Introduction Animation is the secret ingredient that can transform a simple mobile app into a captivating and engaging experience for users. In the world of mobile app development, Flutter stands out as a powerful framework for building natively comp...


58: What we can do with JavaScript

https://anantguptablogs.hashnode.dev/what-we-can-do-with-javascript

Hashnode - javascript (Javascript)

Javascript can be used for a variety of purposes beyond just front-end web development. Some of the main things you can do with Javascript are: You can ask a web server for data and then display that data on your page. You can add, modify, or remov...


59: npx vs npm: what's the difference and why should you care'

https://mohamedzhioua.hashnode.dev/npx-vs-npm-whats-the-difference-and-why-should-you-care

Hashnode - javascript (Javascript)

Table of Contents Introduction npm npx Differences between npm and npx Example Another example Conclusion Why should you care' Introduction: Npm and npx are two CLI tools that are used to manage Node.js packages. However, they have differen...


60 / 63

60: Building a Multilingual Translation Plugin in JavaScript

https://kaburaj.hashnode.dev/building-a-multilingual-translation-plugin-in-javascript

Hashnode - javascript (Javascript)

In our increasingly interconnected world, communication knows no boundaries. Whether you're running a global business, managing a multicultural team, or simply trying to connect with people from diverse linguistic backgrounds, language should never b...


61: How to Structure a Flutter Project

https://nick747.hashnode.dev/how-to-structure-a-flutter-project

Hashnode - Flutter (Flutter)

Hello everyone! After creating our first application I think it's important to dive even more into Flutter development by learning how to structure a good Flutter project. How is a Flutter project structured' Before creating our structure for a proje...




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