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

« Mai 2024 »

  • Lu | Ma | Me | Je | Ve | Sa | Di |


Webriche: les veilleurs ne dorment jamais...

Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).

La veille     Haut de page     Lendemain


Samedi 25 Mai 2024 (47)

1: PyTA Project: Refactoring test_check_on_dir() in test_check.py

https://raine-yang.com/pyta-project-refactoring-testcheckondir-in-testcheckpy

Hashnode - python (python)

Today's task is to refactor test_check_on_dir() function in test_check.py module for PythonTA (https://github.com/pyta-uoft/pyta). According to the instruction, the current test_check_on_dir() does two things simultaneously: testing whether python_ta...


2: JavaScript Execution Context: Everything You Need to Know

https://bhaveshjadhavblog.com/javascript-execution-context-everything-you-need-to-know

Hashnode - javascript (Javascript)

JavaScript is a synchronous, single-threaded language. This might sound complex, but let's break it down to understand what it really means and how it affects the way JavaScript executes code. JavaScript is a synchronous, single-threaded language. Th...


3: Blog site Mini project (without a database)

https://manmohan65.hashnode.dev/blog-site-mini-project-without-a-database

Hashnode - javascript (Javascript)

Introduction A blog site is pretty self explanatory so... I'll just say how its different(for now). It doesn't have a database so when we restart the server all the blogs get wiped. There's also no logins or accounts, so for now you just write, vi...


4: Using Configuration Files for Dynamic System Behavior

https://abeltavares.hashnode.dev/dynamic-system-configuration-files

Hashnode - python (python)

Introduction In software development, configuration files play a very important role in creating flexible and maintainable systems. They allow you to manage system behavior without changing the codebase, making it easier to adapt to changing requirem...


5: 140. Word Break II

https://tapanrachchh.hashnode.dev/140-word-break-ii

Hashnode - python (python)

class Solution: def wordBreak(self, s: str, wordDict: List[str]) -> List[str]: # Have to use entire s # Can have 0 or more breaks # All should be valid words ans = [] def isValidWord(word): retu...


6: Day 9 of 100DaysOfCode - Secret Auction Program

https://keiran-portfolio.hashnode.dev/day-9-of-100daysofcode-secret-auction-program

Hashnode - python (python)

On Day 9 of #100DaysOfCode, this mini project I have created a secret auction program using the dictionaries and nested lists, skills which I have learned from Dr Angela Yu's 100DaysOfCode: The Complete Python Bootcamp Udemy course. Secret auction pr...


7: Understanding Hooks in React: A Beginner's Guide

https://shivamgoswami5123.hashnode.dev/understanding-hooks-in-react-a-beginners-guide

Hashnode - javascript (Javascript)

In this article, we will discuss some basic hooks, including useState, useEffect, useCallback, useRef, and useId. Additionally, we will explore how to create custom hooks. The discussion will include both theoretical explanations and code examples. F...


8: Unlocking the Mysteries of the Fetch API: Beyond the Basics

https://vedansh.hashnode.dev/unlocking-the-mysteries-of-the-fetch-api-beyond-the-basics

Hashnode - javascript (Javascript)

Before starting, I have a question. Let's say you get a 404 error (file not found) while fetching a request. Where will the data get stored: in resolve or reject' Stay connected with the article to find the answer by the end. You must have been using...


9: 1255. Maximum Score Words Formed by Letters

https://tapanrachchh.hashnode.dev/1255-maximum-score-words-formed-by-letters

Hashnode - python (python)

class Solution: def maxScoreWords(self, words: List[str], letters: List[str], score: List[int]) -> int: L = len(words) ans = 0 def isValid(word, letters): safe = letters.copy() localScore = 0 ...


10 / 47

10: Understanding JUnit: A Comprehensive Guide with Examples

https://fullstackjava.hashnode.dev/understanding-junit-a-comprehensive-guide-with-examples

Hashnode - javascript (Javascript)

JUnit is one of the most widely used testing frameworks for Java programming. It provides a simple yet powerful way to write and run repeatable tests, making it an essential tool for developers to ensure the reliability and correctness of their code....


11: Data Pipeline with Dependency Injection

https://abeltavares.hashnode.dev/data-pipeline-dependency-injection

Hashnode - python (python)

Introduction Dependency Injection is a software design pattern that allows a class to receive its dependencies from an external source rather than creating them itself. See the benefit' This approach leads to more maintainable and testable code. Toda...


12: JavaScript setTimeout() Function explained.

https://ayushrastogi.hashnode.dev/javascript-settimeout-function-explained

Hashnode - javascript (Javascript)

Prerequisites Before direclty jumping into the setTimeout(), it's good to have a basic understanding of Javascript and its fundamental concepts. Being familiar with variables, basic control flow (such as if-else statements and loops) and functions, w...


13: Server-Side Rendering (SSR) vs Client-Side Rendering (CSR) in Next.js

https://amyth2002.hashnode.dev/server-side-rendering-ssr-vs-client-side-rendering-csr-in-nextjs

Hashnode - javascript (Javascript)

Next.js supports server side rendering. All components are server side by default. The main issue with client side rendering is client will have direct access to server, which makes it easy to access and update data in server by client. In order to a...


14: Weekend Reading ' Don't give eeffoc

https://labnotes.org/weekend-reading-dont-give-eeffoc/

Lab notes (Développement)

This week we turn web app into desktop app, discover a new tablet, stop chasing our dreams, review the new Google 'No Intelligence' Search, Microsoft spying on you, OpenAI's ties with News Corp, grieve over Kabosu, avoid Teslas, and scream out loud.


15: Publishing your own NPM Package is too simple!!

https://swapnoneel.hashnode.dev/publish-your-own-npm-package

Hashnode - javascript (Javascript)

Introduction Isn't it cool if you can run command like npx in someone's terminal, and they can read about you, your works, and find details like your social media handles, right at their terminal' Or maybe you have created some cool React ...


16: Ultimate Guide to Automating Twitter/X Posts with AI

https://blog.itsvg.in/ultimate-guide-to-automating-twitterx-posts-with-ai

Hashnode - javascript (Javascript)

Everyone wants to become an influencer or at least be active on social media nowadays, but we know it's not easy to plan, create, schedule, and post content every day. It's a headache for most people, and many don't even start their journey to becomi...


17: Why I Started Learning Python in 2024

https://buildingwithpython.hashnode.dev/why-i-started-learning-python-in-2024

Hashnode - python (python)

Hi there! My name is Fanny, and I am a software engineer specializing in web development. Over the years I have written PHP and Javascript mostly, however, I have never written any code in Python. I want to share a bit about my journey into Python pr...


18: Python Data Structures

https://varshv.hashnode.dev/python-data-structures

Hashnode - python (python)

Overview Data Structures are a way of organizing data so that it can be accessed more efficiently depending upon the situation. Lists A list is any list of data items, separated by commas, inside square brackets. They are ordered, mutable, and allo...


19: Daily Hack day52 - Python List To String Conversion

https://cloudtuned.hashnode.dev/daily-hack-day52-python-list-to-string-conversion

Hashnode - python (python)

To convert a Python list to a string using the str.join() method with a generator expression, you can follow these steps: Create a list with elements: Begin by creating a list with the elements you want to convert to a string. For example:cars_list ...


20 / 47

20: Exploring Asynchronous JavaScript: Callbacks, Promises, and Async/Await

https://jps27cse.hashnode.dev/exploring-asynchronous-javascript-callbacks-promises-and-asyncawait

Hashnode - javascript (Javascript)

JavaScript is a single-threaded language, which means it can only perform one operation at a time. However, web applications often need to perform multiple operations simultaneously, like fetching data from a server, reading files, or handling user i...


21: Create an Animated 3D Tree Loader with HTML, CSS, and JavaScript

https://withaarzoo.hashnode.dev/create-an-animated-3d-tree-loader-with-html-css-and-javascript

Hashnode - javascript (Javascript)

Welcome to Day 37 of the #100DaysOfCode Challenge! Today, we'll be creating an engaging animated 3D tree using HTML, CSS, and JavaScript. This project is perfect for enhancing your web development skills and adding a dynamic visual element to your po...


22: Master React

https://sololearner.hashnode.dev/master-react

Hashnode - javascript (Javascript)

React Hooks are a feature that allows you to use state and other React capabilities in functional components. They are beneficial because they simplify code by eliminating the need for class components, making it easier to read and maintain. Hooks al...


23: Building a local https server with Expressjs

https://maxmartinez.dev/building-a-local-https-server-with-expressjs

Hashnode - javascript (Javascript)

As part of the tools which works with Single SPA Framework we have one called import-map-overrides which allow us override the import maps values. By overriding an specific "micro front end" with a local environment version we are able to work with t...


24: Top 10 Must-Have Browser Extensions for Web Developers in 2024 '

https://dopecoding.hashnode.dev/top-10-must-have-browser-extensions-for-web-developers-in-2024

Hashnode - javascript (Javascript)

Enhance your web development workflow with these essential browser extensions. Here are my top 10 picks based on popularity and utility: 1. ColorZilla ' - Color picker and gradient generator. Chrome:- https://rb.gy/av7x8p Firefox:- https://t.ly/F1...


25: How do you calculate the length of a tuple in Python'

https://lingarajtechhub.com/how-do-you-calculate-the-length-of-a-tuple-in-python

Hashnode - python (python)

You can calculate the length of a tuple in Python using the built-in len() function. Here are five examples demonstrating how to do this: Example with a simple tuple: tuple1 = (1, 2, 3, 4, 5) length = len(tuple1) print("Length of tuple1:", length) ...


26: Discuss the advantages of using tuples over lists in certain scenarios.

https://lingarajtechhub.com/discuss-the-advantages-of-using-tuples-over-lists-in-certain-scenarios

Hashnode - python (python)

Tuples offer several advantages over lists in certain scenarios due to their immutability and structural simplicity. Here are five examples: Immutable Data Structures for Safety: Tuples are immutable, meaning once created, their contents cannot be c...


27: (lt.39)Mastering Regular Expressions and Efficient Use of Spread & Rest Operators in JavaScript

https://gopalkdwivedi.hashnode.dev/lt39mastering-regular-expressions-and-efficient-use-of-spread-rest-operators-in-javascript

Hashnode - javascript (Javascript)

A regular expression (regex) in JavaScript is a pattern used to match character combinations in strings. They consist of a sequence of characters and special metacharacters that define the criteria for the search. // let pattern = "hello" // //conver...


28: How to create a layout switcher with Tailwind CSS and JavaScript

https://michaelandreuzza.hashnode.dev/how-to-create-a-layout-switcher-with-tailwind-css-and-javascript

Hashnode - javascript (Javascript)

Today we are recreating a layout switcher we did with Tailwind CSS and Allpine JS but with Vainilla JavaScript. See it live and get code A small refresh of what a toggle is A layout switcher is a component that allows the user to switch between two d...


29: The Factory Pattern: Plug-and-Play Architecture for Your Data Pipeline

https://abeltavares.hashnode.dev/factory-pattern-data-pipeline

Hashnode - python (python)

Introduction In today's bullet fast tech world, the ability to adapt and expand systems quickly and efficiently is a game changer. One powerful design pattern that allows just this is the Factory Pattern. In this post, I dive into how you can leverag...


30 / 47

30: Tutorial : How to get Recent Blogs using Hashnode API 2024 Updated

https://tanujabhatnagar.hashnode.dev/tutorial-how-to-get-recent-blogs-using-hashnode-api-2024-updated

Hashnode - javascript (Javascript)

Whether you're looking to showcase your latest posts on your portfolio website or simply want to streamline your content management, this tutorial will guide you through the process with ease. In this article, I will be sharing how you can fetch all ...


31: Getting Started with Zustand

https://devshekhawat.com/getting-started-with-zustand

Hashnode - javascript (Javascript)

Hey there, React developer! If you've been wrangling with state management in your React applications, you've probably come across libraries like Redux, MobX, and Context API. While these are powerful tools, they can sometimes feel like overkill for ...


32: Building a web app (Whinst): Epilogue

https://andysonm.hashnode.dev/building-a-web-app-whinst-epilogue

Hashnode - javascript (Javascript)

After a couple of months of development',the Whinst app is now completed, deployed and ready for use. Whinst is a web application that allows you to create and share digital catalogs of the products and services your business offers. The application...


33: Building Web Applications with Django: A Comprehensive Guide

https://blog.bytescrum.com/building-web-applications-with-django-a-comprehensive-guide

Hashnode - python (python)

Django is a high-level Python web framework that enables rapid development of secure and maintainable websites. Developed with a "batteries-included" philosophy, Django comes with many built-in features that streamline the process of building web app...


34: Understanding Higher Order Loops in Javascript

https://subhbits.com/higher-order-loops-in-javascript

Hashnode - javascript (Javascript)

If you're tired of writing repetitive code to iterate over arrays and objects, it's time to discover the higher-order loops. Higher-order loops offer a powerful and elegant way to handle collections of data, making your code more readable, concise, a...


35: How to Use the zip() Function with Tuples in Python

https://lingarajtechhub.com/how-to-use-the-zip-function-with-tuples-in-python

Hashnode - python (python)

The zip() function in Python is used to combine multiple iterables into a single iterable of tuples. Each tuple contains elements from the corresponding positions of the input iterables. Here are five examples demonstrating the use of the zip() funct...


36: [Test] Roborock Q Revo Pro : combien de temps libre l'IA peut vous faire gagner ' 

https://www.lebigdata.fr/roborock-q-revo-pro

Le Big Data (dataviz)

Le Q Revo Pro est le nouvel aspirateur robot haut de gamme du constructeur chinois Roborock sorti à la fin … Cet article [Test] Roborock Q Revo Pro : combien de temps libre l'IA peut vous faire gagner '  a été publié sur LEBIGDATA.FR.


37: Difference between a library and a Framework. For Beginners.

https://devshekhawat.com/difference-between-a-library-and-a-framework-for-beginners

Hashnode - javascript (Javascript)

This post is for beginners only who just started with coding and are in process of discovering the world of libraries and frameworks. I was thinking about an analogy to explain one of my fresher friends the difference between these two and I came up ...


38: Using console.log()

https://codeditz.hashnode.dev/using-consolelog

Hashnode - javascript (Javascript)

All modern web browsers, Node.js as well as almost every other JavaScript environments support writing messages to a console using a suite of logging methods. The most common of these methods is consloe.log(). In a browser environment, the console.lo...


39: Comment activer le mode sombre sur YouTube : les étapes à suivre

https://www.blogdumoderateur.com/comment-activer-mode-sombre-youtube/

Blog du Moderateur ()

Sur YouTube, le mode sombre, ou dark mode, a fait son apparition dès 2017. Découvrez comment l'activer, sur navigateur ou mobile, en quelques étapes.


40 / 47

40: Learn CSS in just 20 Days !! '

https://punisher.hashnode.dev/learn-css-in-just-20-days

Hashnode - javascript (Javascript)

Day 1 :- What is CSS '- Syntax- Importing CSS to HTML Day 2 :- CSS Selectors Day 3 :- CSS Colors Day 4 :- CSS Fonts Day 5 :- background-color- background image- background-repeat- background-attachment- background-position Day 6 :- CSS Units Day 7 :-...


41: All About NPM (Node Package Manager)

https://olibhia.hashnode.dev/all-about-npm-node-package-manager

Hashnode - javascript (Javascript)

Introduction NPM is an essential tool for JavaScript developers for managing versatile packages in the node.js ecosystem. While I was learning Tailwind CSS and Node.js, I came across this term "NPM" and this made me pretty curious. So I decided to di...


42: What Is the Latest Version of Java'

https://techguru1.hashnode.dev/what-is-the-latest-version-of-java-1

Hashnode - javascript (Javascript)

Java, a versatile and robust programming language, has been a cornerstone of software development for over two decades. Known for its portability, scalability, and extensive community support, Java continues to evolve, offering new features and impro...


43: Polyfills for Map , Filter & Reduce in Javascript

https://aaryan-bajaj-learnings.hashnode.dev/polyfills-for-map-filter-reduce-in-javascript

Hashnode - javascript (Javascript)

Introduction Ever found yourself working on a project only to realise your JavaScript methods aren't supported in older browsers' ' Let's talk about how polyfills can be your rescue squad! In this blog, we'll explore What polyfills are Why the...


44: javaScript forEach Array Method

https://kemi-owoyele.hashnode.dev/javascript-foreach-array-method

Hashnode - javascript (Javascript)

The forEach() method is used to execute a function for each of the items in an array. The callback function will normally contain some instructions that will be performed on each of the array items. Syntax array.forEach(callbackFunction); The callba...


45: Unveiling the Secrets of Python and React for a Dynamic Web Experience

https://colddsam.com/unveiling-the-secrets-of-python-and-react-for-a-dynamic-web-experience

Hashnode - python (python)

Unveiling the Secrets of Python and React for a Dynamic Web Experience Introduction In the realm of web development, Python and React reign supreme as a formidable duo. Python, a versatile programming language, empowers the backend, while React, a fr...


46: HTML Roadmap and Projects for absolute beginners '''

https://punisher.hashnode.dev/html-roadmap-and-projects-for-absolute-beginners

Hashnode - javascript (Javascript)

Here is the roadmap for the people who are beginners or revise their knowledge. Get Familiar with Web- What is HTML '- What are Web Pages and about its structures- Use of HTML '- Static and Dynamic Web Pages Running JavaScript- Get ready with HTML Ed...


47: 50 Project Ideas for JavaScript Developers '

https://punisher.hashnode.dev/50-project-ideas-for-javascript-developers

Hashnode - javascript (Javascript)

Creating projects after grabbing knowledge of any programming language helps to become pro developer in any of the field. Same way, to master in a web applications field, here I've mentioned 100 project ideas you should work on. It can lead to your d...




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