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

« Mai 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 27 Mai 2023 (79)

1: Exploring Python: A Comprehensive Review of My First Datacamp Course

https://jaymiebelz.me/exploring-python-a-comprehensive-review-of-my-first-datacamp-course

Hashnode - python (python)

It all started from the day my sister shared a scholarship form with me and asked if it is something I'd like to apply for. With all excitement, I checked it out because I had a feeling the scholarship will undoubtedly play a significant role in my j...


2: Streamlining Codebase, Mastering useContext, and Deployment Research: A Day in Coding

https://arashjangali.com/streamlining-codebase-mastering-usecontext-and-deployment-research-a-day-in-coding

Hashnode - javascript (Javascript)

Day 116 of #365DaysOfCode & day 16 of #100DaysOfPython Hello everyone! Today, I want to share the progress made on my ongoing project and the insights I have gained. Cleaning Up the Codebase First things first, let's talk about the backbone of any pr...


3: *args and **kwargs in python

https://rivondave.hashnode.dev/args-and-kwargs-in-python

Hashnode - python (python)

In this article, we would discover what the single asterisk(*) and double asterisks (**) mean in Python. *args - Multiple arguments **kwargs - Multiple keyword arguments Before going into our main topic for today, let's talk about functions. FUNCTION...


4: pandarallel: A Simple Tool to Parallelize Pandas Operations

https://mathdatasimplified.com/2023/05/27/pandarallel-a-simple-tool-to-parallelize-pandas-operations/

Math Data Simplified (data)

If you want to parallelize your Pandas operations on all available CPUs by adding only one line of code, try pandarallel. The post pandarallel: A Simple Tool to Parallelize Pandas Operations appeared first on Data Science Simplified.


5: Unleashing Your Coding Potential: Setting Goals and Crafting an Engaging Study Routine

https://vishal28.hashnode.dev/unleashing-your-coding-potential-setting-goals-and-crafting-an-engaging-study-routine

Hashnode - javascript (Javascript)

Introduction Embarking on the coding journey is an exhilarating experience filled with endless possibilities. But how can you ensure a successful learning path' In this blog, we'll explore the art of setting effective goals and establishing a study r...


6: Functions in Python

https://aayushsinha.hashnode.dev/functions-in-python

Hashnode - python (python)

In programming, abstraction refers to the idea of not necessarily knowing (exactly) how something works but knowing how to properly use it instead. For example, you may not know what a module of code consists of or how it was built, but you can still...


7: Demystifying Prototypes and Prototypal Inheritance in JavaScript

https://santhoshdhadi.hashnode.dev/demystifying-prototypes-and-prototypal-inheritance-in-javascript

Hashnode - javascript (Javascript)

Introduction: When working with JavaScript, you may have come across concepts like prototypes, prototypal inheritance, and prototype chaining. These concepts are fundamental to JavaScript's object-oriented nature and understanding them is crucial for...


8: Getting started with APIs

https://moayaan.hashnode.dev/getting-started-with-apis

Hashnode - python (python)

Introduction: Application Programming Interfaces (APIs) are essential tools for connecting different software applications and enabling them to communicate and share data seamlessly. Whether you're a beginner developer or a non-technical person inter...


9: Remove Linked List Elements

https://nileshsaini.hashnode.dev/remove-linked-list-elements

Hashnode - javascript (Javascript)

Linked lists are fundamental data structures widely used in programming and algorithmic problem-solving. One common task when working with linked lists is removing specific elements based on a given criterion. Problem Statement: Given the head of a ...


10 / 79

10: The Widget Whisperer : Unleashing Your Creativity in Flutter's UI Realm | Episode-01

https://randomblogs.in/the-widget-whisperer-unleashing-your-creativity-in-flutters-ui-realm-episode-01

Hashnode - Flutter (Flutter)

This is the first episode of our ' The Widget Whisperer ' series. Introduction Have you ever wondered how Flutter developers create those stunning, interactive, and pixel-perfect user interfaces' The secret lies in the magical world of Flutter widget...


11: Chiffrement Twitter : pourquoi les experts dénoncent une supercherie '

https://www.lebigdata.fr/chiffrement-message-twitter-2

Le Big Data (dataviz)

Après l'annonce du chiffrement des messages sur Twitter, le réseau à l'oiseau bleu a rapidement essuyé une vague de critiques. … Cet article Chiffrement Twitter : pourquoi les experts dénoncent une supercherie ' a été publié sur LEBIGDATA.FR.


12: A Brief Dive Into x86 Windows Structured Exception Handling Implementation

https://tahadraidia.com/a-brief-dive-into-x86-windows-structured-exception-handling-implementation

Hashnode - python (python)

This post has been ported from my old self-hosted blog. The original post was published on 22/12/2021. When it comes to handling exceptions in programming, we are all familiar with try/catch and its other variant syntax sugars. For example, below is...


13: Understanding the Different Types of Values in JavaScript

https://www.apnicodeshala.com/understanding-the-different-types-of-values-in-javascript

Hashnode - javascript (Javascript)

Introduction: JavaScript is a versatile programming language that offers a wide range of data types to store and manipulate values. Understanding these types is crucial for writing effective and efficient code. In this blog post, we will explore the ...


14: React: How to use JavaScript's reduce() method.

https://waqar07.hashnode.dev/react-how-to-use-javascripts-reduce-method

Hashnode - javascript (Javascript)

In React, JavaScript's reduce() method is a powerful function that allows you to manipulate and aggregate data flexibly. This ability to reduce an array of values to a single value can be used in various scenarios, such as calculating the total of a ...


15: Micha' Bentkowski XSS Challenge

https://tahadraidia.com/michal-bentkowski-xss-challenge

Hashnode - javascript (Javascript)

This post has been ported from my old self-hosted blog. The original post was published on 05/05/2020. Back in April, Micha' Bentkowski posted an XSS challenge on Twitter. So I decided to give this a try and here is my write-up about it. The first t...


16: An Xmas story of self-XSS on Amazon.com

https://tahadraidia.com/an-xmas-story-of-self-xss-on-amazoncom

Hashnode - javascript (Javascript)

This post has been ported from my old self-hosted blog. The original post was published on 02-04-2020. In this post, I will walk you through how, in less than five minutes, I found a self-XSS bug on the main Amazon.com website. It was Christmas time...


17: Day 2 of 100DaysOfCode

https://alexrider04.hashnode.dev/day-2-of-100daysofcode

Hashnode - python (python)

Today Tasks - Solve 1 box on HackTheBox Python data structures HackTheBox I choose a very easy box called "Reedemer". It has 11 Tasks which are related to recon, database, guest access, Redis. This lab focuses on enumerating a Redis server remot...


18: What are Promises in Javascript'

https://pulkitgovrani.hashnode.dev/what-are-promises-in-javascript

Hashnode - javascript (Javascript)

If an interviewer asks you "What do you understand by promises"' Then what will be your answer' Here's the cleanest answer from the mdn documentation: " A promise is basically an object which tells the eventual completion or failure of an asynchronou...


19: Using AI Correctly in Open-Source Projects, part II

https://jcdev.com/using-ai-correctly-in-open-source-projects-part-ii

Hashnode - javascript (Javascript)

Welcome to this three-article series on how to responsibly implement AI into your apps for public use. For Part II, we will be discussing removing unwanted content, interacting with the AI on the UI, and some code examples in JS that show you how to ...


20 / 79

20: Build a button that shows and hides a paragraph - Elzero Frontend Challenges

https://hashnode.mouatezbenariba.me/build-a-button-that-shows-and-hides-a-paragraph-elzero-frontend-challenges

Hashnode - javascript (Javascript)

Overview on Elzero Frontend Challenges Elzero Frontend Challenges is a collection of coding challenges designed for learners who want to improve their HTML and CSS skills. Created by Osama Mohamed (Elzero), these challenges are available in the front...


21: Making API Requests in React-Native with Fetch and Axios

https://webginner.hashnode.dev/making-api-requests-in-react-native-with-fetch-and-axios

Hashnode - javascript (Javascript)

What is API' API stands for Application Programming Interface. An API is a way for computer programs to communicate with each other. It's like a software interface that offers a service to other software. An API specification is a document or standar...


22: Making API Requests in React-Native with Fetch and Axios

https://aniketjha9179.hashnode.dev/making-api-requests-in-react-native-with-fetch-and-axios

Hashnode - javascript (Javascript)

What is API' API stands for Application Programming Interface. An API is a way for computer programs to communicate with each other. It's like a software interface that offers a service to other software. An API specification is a document or standar...


23: Embracing the "Dumb": The Unapologetic Art of Asking Dumb Questions

https://arter.dev/embracing-the-dumb-the-unapologetic-art-of-asking-dumb-questions

Hashnode - javascript (Javascript)

Let's start with a truth bomb: dumb questions exist. Case in point: https://www.reddit.com/r/yahooanswers/. The Yahoo Answers subreddit is a place where the dumbest questions are on display to be laughed at, mocked, and upvoted. However... that's OK....


24: understanding javascript as a programming language

https://denis-dev.hashnode.dev/understanding-javascript-as-a-programming-language

Hashnode - javascript (Javascript)

Well, have been coding on javascript for about 3 years now but I wouldn't be confident enough to explain what javascript is as a programming language. If you can explain easily what Javascript is within a few minutes allocated for the question, then ...


25: Building Etch-A-Sketch Using JavaScript: Get Better at Coding ''

https://shivankjshacker.hashnode.dev/building-etch-a-sketch-using-javascript-get-better-at-coding

Hashnode - javascript (Javascript)

Etch-a-sketch is a browser canvas that I built using HTML, CSS and JS. I didn't come up with the idea though, the credits go to TheOdinProject, one of the best sites to learn Full Stack JavaScipt Development or Full Stack Ruby Development. The Functi...


26: Create and Invite Users to your Admin App Using Supabase Edge Functions

https://blog.hijabicoder.dev/create-and-invite-users-to-your-admin-app-using-supabase-edge-functions

Hashnode - Flutter (Flutter)

In this blog, we will look at how to create and send invite emails to users while staying logged in to your application using Supabase Edge Functions. We will also see an approach to assigning roles to users in an admin application. Prerequisites We ...


27: Understanding Values and Variables in JavaScript

https://susanodii.hashnode.dev/understanding-values-and-variables-in-javascript

Hashnode - javascript (Javascript)

Introduction JavaScript is a high-level programming language widely used in web development, mobile development, and various other domains of software development. In JavaScript, gaining a strong grasp of the fundamental concepts of values and variab...


28: Optimizing TensorFlow Code for Performance and Exportability

https://prajwaal.live/optimizing-tensorflow-code-for-performance-and-exportability

Hashnode - python (python)

Introduction Welcome back to our ongoing series, "Learn TensorFlow for Machine Learning," where we delve deeper into the fascinating world of machine learning using the TensorFlow framework. In our previous article, we introduced the fundamentals of ...


29: Why are Django Forms so helpful and easy to use'

https://saumyacodes.hashnode.dev/why-are-django-forms-so-helpful-and-easy-to-use

Hashnode - python (python)

After learning Flask, it has been quite a few months since I started using Django. And clearly, it makes your work easier. Let it be Django forms, authentication, or its ORM, every aspect of development gets covered. Till now, I tried quite a few Dj...


30 / 79

30: Creating a Robust Authentication System: Harnessing the Power of JWT and Session Authentication

https://free-for-dev.hashnode.dev/creating-a-robust-authentication-system-harnessing-the-power-of-jwt-and-session-authentication

Hashnode - javascript (Javascript)

Introduction In today's digital landscape, the need for robust authentication systems has become paramount. Safeguarding sensitive user information and ensuring secure access to applications are top priorities for developers and businesses alike. Thi...


31: Python Loop (for and while) and some practice exercises

https://karthickmv.hashnode.dev/python-loop

Hashnode - python (python)

Python Loops: A Powerful Tool for Iteration and Automation Python is a versatile programming language known for its simplicity and readability. One of the most powerful features of Python is its ability to handle repetitive tasks efficiently through ...


32: Working With Dom

https://bashcode.dev/working-with-dom

Hashnode - javascript (Javascript)

DOM tree refers to an HTML page where all objects are nodes. There are 3 types of nodes in the DOM tree text nodes element nodes comment nodes Text node: So here "Bootstrap · The most popular HTML, CSS, and JS library in the world." is a text...


33: Understanding Arguments in Functions and Their Parameter Types in Python

https://rhythmblogs.hashnode.dev/understanding-arguments-in-functions-and-their-parameter-types-in-python

Hashnode - python (python)

In programming, functions are essential tools for organizing and reusing code. They allow us to encapsulate a set of instructions and provide flexibility by accepting arguments. Arguments are values passed to a function when it is called, allowing us...


34: JavaScript Exposed ': The Astonishing Truth About Its Interpreter vs. Compiler Battle! You Won't Believe What Really Happens!

https://ravineupane.hashnode.dev/javascript-exposed-the-astonishing-truth-about-its-interpreter-vs-compiler-battle-you-wont-believe-what-really-happens

Hashnode - javascript (Javascript)

JavaScript is a popular programming language used for creating websites and web applications. But have you ever wondered whether it is an interpreter or a compiler language' In this article, we will break down the confusion and explain how JavaScript...


35: Hands on MediaPipe and OpenCV

https://akhilworld.hashnode.dev/hands-on-mediapipe-and-opencv

Hashnode - python (python)

Learning about computer vision, I found OpenCV. OpenCV is a library for real-time applications of computer vision. This is a cross-platform developed by Intel. Originally, OpenCV library was written in C++ programming language but it has binding with...


36: Containerizing a Machine Learning App with Docker

https://ahtesham-zaidi.hashnode.dev/containerizing-a-machine-learning-app-with-docker

Hashnode - python (python)

Introduction Containerization has revolutionized the way software applications are developed, deployed, and managed. Docker, a popular containerization platform, offers a seamless solution for packaging an application and its dependencies into a port...


37: Tout sur les Context React

https://deadsimplechat.com/blog/react-context-tutorial/

Humancoders ()

Un bon article sur l'utilisation des Context React : comment partager des données entre plusieurs composants en évitant le 'props drilling' : quand utiliser les Context et quand ne pas les utiliser: Commentaires L'article Tout sur les Context React a été posté dans la catégorie Dev. Front de Human Coders News


38: Simplify Your Forms with Formik: Why Formik is an Essential Tool for React Development

https://himanshuchauhan.hashnode.dev/simplify-your-forms-with-formik-why-formik-is-an-essential-tool-for-react-development

Hashnode - javascript (Javascript)

In this article, we will understand the use and actual need of the Formik library. we will understand why we need an external library for form handling. And also we will use the yup library to validate the form. We will see the difficulties when not ...


39: How to skip the school without any consequences (maybe)

https://neverquest.fermi.lol/how-to-skip-the-school-without-any-consequences-maybe

Hashnode - javascript (Javascript)

Hi it's yarik again, in the last days i was trying to make an app for my smartwatch in order to retrieve the homework and notify me when a teacher assign a new task. Since our school software doesn't have public APIs i reversed it. How it works All t...


40 / 79

40: Basic of JavaScript for MERN Stack

https://mayankonweb.hashnode.dev/basic-of-javascript-for-mern-stack

Hashnode - javascript (Javascript)

Importance of Javascript JavaScript is the only language that can run both on the front-end and the back-end. This means you can use the same language and syntax for creating the user interface with React and the server logic with Node and Express. ...


41: [JavaScript] Object & Array Destructuring

https://jaylog.hashnode.dev/javascript-object-array-destructuring

Hashnode - javascript (Javascript)

Introduction In this article, we will be learning about object and array destructuring, which makes your code more readable and organized. Object & Array destructuring help you to avoid writing a long code to do a simple job. For example: // Printing...


42: Building Navigation Menus with HTML and CSS

https://uchnino.hashnode.dev/building-navigation-menus-with-html-and-css

Hashnode - javascript (Javascript)

Introduction In today's web design landscape, navigation menus play a vital role in providing a seamless user experience. They serve as a roadmap, guiding visitors through your website's content and helping them find what they're looking for efficien...


43: Using AI Correctly in Open-Source Projects

https://jcdev.com/using-ai-correctly-in-open-source-projects

Hashnode - javascript (Javascript)

Welcome to this three-article series on how to responsibly implement AI into your apps for public use. As if there weren't enough precautions that developers MUST take to keep their applications user-friendly, accessible, reliable, and safe. Well AI ...


44: GitLab corrige une faille critique au score CVSS de 10

https://www.lemondeinformatique.fr/actualites/lire-gitlab-corrige-une-faille-critique-au-score-cvss-de-10-90543.html

Le monde informatique (Internet / Informatique)

La plateforme d'hébergement et de partage de code source GitLab a publié un correctif de sécurité qu'il est urgent d'appliquer (...)


45: Project ideas for beginner front-end developer

https://thatisabhi.hashnode.dev/project-ideas-for-beginner-front-end-developer

Hashnode - javascript (Javascript)

As a beginner front-end developer, it can be overwhelming to decide which project to start with. There are numerous options out there, each with its own set of technologies and requirements. To help you get started, we've compiled a list of some of t...


46: Exploring the Features of Flutter Framework

https://developnsolve.com/exploring-the-features-of-flutter-framework

Hashnode - Flutter (Flutter)

Introduction Flutter is an amazing open-source UI software development framework brought to you by Google! It's designed to help developers create stunning cross-platform applications for mobile, web, and desktop using just one codebase. With its ext...


47: Arrays : A Fruity Adventure in JavaScript ''''

https://pushpamali.hashnode.dev/arrays-a-fruity-adventure-in-javascript

Hashnode - javascript (Javascript)

Introduction: Arrays are a powerful data structure in JavaScript that allow us to store and manipulate collections of values. In this article, we'll embark on a fruit-filled journey through arrays, using delightful fruit emojis to represent our array...


48: Javascript vs python

https://harsh.dev/javascript-vs-python

Hashnode - javascript (Javascript)

As a JavaScript developer for the past 1-1.5 years, I've been curious about the disparities between JavaScript and Python. Both are powerful programming languages, but what sets them apart' In this blog post, we'll explore the fundamental differences...


49: Unveiling the Power of Django's MVT Architecture

https://thomascherickal.com/unveiling-the-power-of-djangos-mvt-architecture

Hashnode - python (python)

Introduction Django, a widely-used and highly-regarded Python web framework, adheres to the Model-View-Template (MVT) architectural pattern. This design pattern offers a well-organized and systematic approach to constructing web applications, placing...


50 / 79

50: EZ JavaScript ! Part 2 ( Scopes & Hoisting )

https://ab-dev.hashnode.dev/ez-javascript-part-2-scopes-hoisting

Hashnode - javascript (Javascript)

Today, we're going to explore an important concept in JavaScript called "scopes." Don't worry if it sounds complicated ' I'll explain it in a way that's easy to understand. So put on your coding cap, and let's dive in! What are Scopes' In JavaScript,...


51: Simplify Your Documentation Workflow with MkDocs: A Markdown-based Alternative to Sphinx

https://coderatul.hashnode.dev/simplify-your-documentation-workflow-with-mkdocs-a-markdown-based-alternative-to-sphinx

Hashnode - python (python)

Introduction Documentation is an essential aspect of software development, enabling developers to communicate effectively with users and fellow developers. Sphinx and MkDocs are two popular documentation generators in the Python ecosystem. While Sphi...


52: List Traversal Methods in Python

https://codewithvidya.hashnode.dev/list-traversal-methods-in-python

Hashnode - python (python)

Exploring List Traversal Methods in Python! Are you ready to level up your Python skills' Let's dive into the world of list traversal methods and unleash the power of Python's built-in functions! Lists are one of the most versatile and commonly used ...


53: Implementing Auto Update Feature in Vite Plugin PWA

https://jaybharadia.hashnode.dev/implementing-auto-update-feature-in-vite-plugin-pwa

Hashnode - vuejs (Javascript)

Overview Progressive Web Apps (PWAs) have gained popularity due to their ability to deliver a seamless and app-like experience to users across various platforms. In this article, we will explore the steps involved in running the auto-update feature...


54: Writing Shorter & Optimize Code in JavaScript

https://roshancodes.com/writing-shorter-optimize-code-in-javascript

Hashnode - javascript (Javascript)

In JavaScript, writing concise and efficient code is crucial for improving readability, performance, and maintainability. One way to achieve this is by leveraging shorthand expressions, which allow you to write shorter code while maintaining clarity ...


55: How to Dockerize a React.js Application: A Step-by-Step Guide

https://roshancodes.com/how-to-dockerize-a-reactjs-application-a-step-by-step-guide

Hashnode - javascript (Javascript)

Docker has become a popular choice for containerizing applications, and it can greatly simplify the deployment and distribution process. If you have a React.js application and want to containerize it using Docker, this step-by-step guide will walk yo...


56: Starting with Distributed Systems

https://blog.ashokdey.com/starting-with-distributed-systems

Hashnode - javascript (Javascript)

Distributed systems are trending due to several factors. Firstly, the growth of data-intensive applications and the need for scalable solutions have driven the demand for distributed computing. With distributed systems, organizations can harness the ...


57: Web Scraping With Node.js and Cheerio '

https://blog.baguscahyono.dev/web-scraping-with-nodejs-and-cheerio

Hashnode - javascript (Javascript)

In this post, I will show you how to create a web scraper using Node.js, Axios, and Cheerio. I use Axios to make an HTTP Request to a website then I use Cheerio to parse the HTML, and extract the data I needed. Let's get to it. ' Create a Web Scrape...


58: Python Programming : Greater of two numbers

https://thecodingcoder.hashnode.dev/python-programming-greater-of-two-numbers

Hashnode - python (python)

Example Input enter first number 5 enter second number 6 Output Greater is 6 Required to Know Use of Variables, Use of different operators like assignment or arithmetic operators, Use of functions like print(), and input(), Use of If-else, and Use...


59: Python programming: Simple Interest

https://thecodingcoder.hashnode.dev/python-programming-simple-interest

Hashnode - python (python)

Example Input enter the principal 1200 enter the rate 5 enter the time 2 Output The simple interest is 120 Required to Know Use of Variables, Use of different operators like assignment or arithmetic operators, Use of functions like print(), and ...


60 / 79

60: What is an ORM'

https://nikhilakki.in/what-is-an-orm

Hashnode - python (python)

Introduction ORM stands for Object-Relational Mapping. It is a programming technique that enables developers to access and manipulate data in a database using an object-oriented programming language. In other words, it's a way to map database tables ...


61: Liens vagabonds : Sur l'IA, "il n'est plus temps de négocier"

https://www.meta-media.fr/2023/05/27/liens-vagabonds-sur-lia-il-nest-plus-temps-de-negocier.html

Meta Media (Internet)

Réguler, ne pas réguler, jusqu'où réguler ' Telle était la question. Cette semaine, Sam Altman, cofondateur d'OpenAI rencontrait plusieurs dirigeants européens : à Madrid, Varsovie, Paris, Londres et Munich. Une tournée diplomatique qui ne passe pas inaperçue, alors que le Parlement européen travaille à l'élaboration de l'IA Act, prévoyant d'encadrer l'intelligence... The post Liens [...]


62: swekage's Python Turtle Cheatsheet

https://swekage.hashnode.dev/swekages-python-turtle-cheatsheet

Hashnode - python (python)

turtle is a preinstalled library in python that allows you to draw graphics. Many beginner computer science courses use it to teach students because it is easy to set up and use. I made this cheatsheet because one day, I was tutoring a student who ne...


63: The Process of Manufacturing Rubber Patches

https://www.bestfreewebresources.com/the-process-of-manufacturing-rubber-patches

Best Free Web Resources (Veille)

Diving into the fascinating world of everyday objects, you may be surprised by how much there is to learn about something as small and seemingly simple as a rubber patch. These little, often intricately designed objects have found a place in several industries, ranging from fashion and military to outdoor gear and more. In this […] The post The Process of Manufacturing Rubber Patches appeare [...]


64: Build Infrastructure - Terraform Docker Example

https://mrdevops.hashnode.dev/build-infrastructure-terraform-docker-example

Hashnode - javascript (Javascript)

With Terraform installed, you are ready to create your first infrastructure. In this tutorial, you will review the previous configuration for your Docker container. Prerequisites This tutorial assumes that you are continuing from the previous tutoria...


65: Everything you need to know about 'this' keyword in JavaScript

https://amitsblog.hashnode.dev/everything-you-need-to-know-about-this-keyword-in-javascript

Hashnode - javascript (Javascript)

'this' keyword is something that is most important to learn when you are learning js. since 'this' keyword refers to the current execution context in javascript , so we first need to understand what is execution context and what is binding then we ca...


66: WhatsApp Is Working on Streamlined Group Message Settings

https://www.webpronews.com/whatsapp-is-working-on-streamlined-group-message-settings/

WebProNews SEO (Développement)

WebProNews WhatsApp Is Working on Streamlined Group Message Settings WhatsApp is working on streamlining group message settings in an effort to improve the user experience. WhatsApp Is Working on Streamlined Group Message Settings Staff


67: Learn React The Lazy Way in 2023 (Part 2)

https://blog.learnhub.africa/learn-react-the-lazy-way-in-2023-part-2

Hashnode - javascript (Javascript)

This part of the "Learn React The Lazy Way" series will delve into essential topics that will take your This part of the "Learn React The Lazy Way" series will delve into essential topics that will take your React skills to the next level. Find the f...


68: Learn React The Lazy Way in 2023 (Part 2)

https://blog.learnhub.africa//learn-react-the-lazy-way-in-2023-part-2

Hashnode - javascript (Javascript)

This part of the "Learn React The Lazy Way" series will delve into essential topics that will take your This part of the "Learn React The Lazy Way" series will delve into essential topics that will take your React skills to the next level. Find the...


69: Bukmacherzy z PayPal Zak'ady Bukmacherskie z PayPal 2023

https://catswhocode.com/bukmacherzy-z-paypal-zaklady-bukmacherskie-z-paypal-2023/

Cats who code (Javascript / wordpress / PHP)

Prawdopodobnie znasz ju' nazw' eWinner wraz z jej tradycyjnych kasyn by potwierdzi' wp'at'. Marka prowadzi równie' obstawiac zak'ady bukmacherskie internetowego. To troch' wyj'wszy fanaberii oferta ' ca'okszta't jest najzwyczajniej w 'wiecie rozplanowane i 'atwo osi'galne, a fanom oferuje prowizje si' niesamowit' gam' rynków. Wykszta'cenie Mateusz jest absolwentem Liceum Ogólnokszta'c'cego w '' [...]


70 / 79

70: Mapped: European Colonial Shipping Lanes (1700'1850)

https://www.visualcapitalist.com/cp/colonial-shipping-lanes/

Visual Capitalist (dataviz)

This map plots the colonial shipping lanes used by the British, the French, the Spanish, and the Dutch in the 18th and 19th centuries. The post Mapped: European Colonial Shipping Lanes (1700'1850) appeared first on Visual Capitalist.


71: Sets in Python part 1

https://uaam.hashnode.dev/sets-in-python-part-1

Hashnode - python (python)

What are sets' Sets are one of Python's 4 built-in data types used to store data collections. Sets in python are similar to sets in mathematics, so they share characteristics. For example, both stores unordered, and unindexed data. Sets can't store m...


72: Introduction to TypeScript

https://frontendalchemist.com/introduction-to-typescript

Hashnode - javascript (Javascript)

What is TypeScript' TypeScript is an open-source, object-oriented programming language designed by Microsoft in 2012 under the Apache 2 license. It is a statically and strongly typed language that serves as a syntactic superset of JavaScript. By comp...


73: Day 115 of Coding: Improving Authentication and Exploring Nested Data Structures

https://arashjangali.com/day-115-of-coding-improving-authentication-and-exploring-nested-data-structures

Hashnode - javascript (Javascript)

Hello everyone, Today was day 115 of my #365DaysOfCode and day 15 of my #100DaysOfPython. I've been making steady progress on my ongoing project and continuing my learning journey with Python. In my project, I focused on refining the authentication p...


74: Ethereum & Python - Future of Web3 V3

https://ankuraxz.hashnode.dev/ethereum-python-future-of-web3-v3

Hashnode - python (python)

In this article, we will explore the fascinating world of Ethereum transactions using Python and the Web3 library. With the power of Python and the Web3 library, developers can interact with the Ethereum network, create transactions, and send value s...




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