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


Lundi 29 Mai 2023 (131)

1: Generative AI: A Comprehensive Overview of Its History and Impact

https://kaanberke.hashnode.dev/generative-ai-a-comprehensive-overview-of-its-history-and-impact

Hashnode - python (python)

Generative Adversarial Network (GAN), a type of machine learning algorithm, was introduced in 1962 in chatbots. By 2014, generative AI applications were able to create authentic images, videos, audio of real people, and synthetic data. 1. What is Gen...


2: Python for Beginners: Part 1 - Installation Guide

https://matthewhard.com/python-for-beginners-part-1-installation-guide

Hashnode - python (python)

Python is a versatile and beginner-friendly programming language that has gained immense popularity due to its simplicity and readability. Whether you're interested in web development, data analysis, or automation, learning Python is a fantastic star...


3: Customer retention rate: Meaning, formula, how to calculate

http://blog.logrocket.com/product-management/retention-rate-meaning-formula-how-to-calculate/

Log Rocket blog (Web 2)

While many product managers focus on gaining new customers as fast as possible, it doesn't do much for overall business growth if they leave as quickly as they arrived. The post Customer retention rate: Meaning, formula, how to calculate appeared first on LogRocket Blog.


4: Mastering Mongoose and MongoDB with Node.js

https://iamstepaul.hashnode.dev/mastering-mongoose-and-mongodb-with-nodejs

Hashnode - javascript (Javascript)

Mongoose is a popular Object-Document Mapper (ODM) for Node.js that provides a convenient and elegant way to interact with MongoDB. In this article, I will show you how to install and use Mongoose with Node.js to create a simple CRUD application. Pre...


5: ReactJS: Everything you need to know to get started.

https://efkumah.hashnode.dev/reactjs-everything-you-need-to-know-to-get-started

Hashnode - javascript (Javascript)

This article explains ReactJS from a beginner's perspective. It is designed to guide developers who are comfortable building dynamic user interfaces with JavaScript transition into building large-scale user interfaces with ReactJS At the end of this ...


6: Choosing The Right Frontend Framework

https://abatoms.hashnode.dev/choosing-the-right-frontend-framework

Hashnode - vuejs (Javascript)

Hey guys, welcome to my new article. In this new article, I'll be discussing different front-end frameworks and how to choose the right one for you. What is a framework' There is more than one way of making pounded yam these days. Before during the d...


7: Mastering Asynchronous Programming: A Comprehensive Guide to Kotlin Coroutines

https://subhadipfx.hashnode.dev/mastering-asynchronous-programming-a-comprehensive-guide-to-kotlin-coroutines

Hashnode - Kotlin (Mobiles)

Introduction:In traditional synchronous programming, blocking operations can lead to poor resource utilization, reduced responsiveness, and bottlenecks. Asynchronous programming, with its non-blocking nature, addresses these issues by allowing concur...


8: How to implement a linked list' | Techletter 33

https://prajwalhaniya.hashnode.dev/how-to-implement-a-linked-list-techletter-33

Hashnode - javascript (Javascript)

Below is the code for linked list implementation in JavaScript. You can review the code and comments to understand it's implementation. class Node { constructor(data) { // The data stored in the node this.data = data; // R...


9: Mastering the Frontend: Exploring Advanced Techniques and Best Practices in HTML, CSS, JavaScript, and React

https://ayush77.hashnode.dev/mastering-the-frontend-exploring-advanced-techniques-and-best-practices-in-html-css-javascript-and-react

Hashnode - javascript (Javascript)

How to implement different lifecycle methods using useEffect' How to do this' componentDidMount: To mock componentDidMount, use the useEffect hook with an empty dependency array - this will execute the callback function passes as its first parameter...


10 / 131

10: Concurrency Vs Parallelism

https://subhadipfx.hashnode.dev/concurrency-vs-parallelism

Hashnode - javascript (Javascript)

Imagine you and your friends are playing on a playground, and there are different activities to do: swinging on the swings, sliding down the slide, and climbing on the jungle gym. Concurrency is like taking turns doing these activities one by one. Fi...


11: Isomorphic Strings

https://nileshsaini.hashnode.dev/isomorphic-strings

Hashnode - javascript (Javascript)

Isomorphic String is a classic problem that challenges us to determine whether two given strings have a one-to-one character mapping. In other words, we need to check if we can replace characters in one string with corresponding characters from the o...


12: The Power of React Conditional Rendering: Unleashing Dynamic UI Experiences ':

https://balajibatchu.hashnode.dev/the-power-of-react-conditional-rendering-unleashing-dynamic-ui-experiences

Hashnode - javascript (Javascript)

In the realm of modern web development, user interfaces (UIs) have evolved to become highly dynamic and interactive. React, a widely adopted JavaScript library, has gained immense popularity due to its ability to build rich and responsive UIs. One of...


13: TURN Server Costs: A Complete Guide

https://metered.hashnode.dev/turn-server-costs-a-complete-guide

Hashnode - javascript (Javascript)

In this article we are going to learn about different TURN server providers. Their pros and cons along with the pricing. There are options for going with free providers, paid providers and also an option to run your own TURN server. We are going to l...


14: Building Web Applications with Express: A Guide

https://cosmosduck.hashnode.dev/building-web-applications-with-express-a-guide

Hashnode - javascript (Javascript)

Express is a backend framework that is built on Node Js which allows you to make API calls, determine the route and create dynamic pages easily. It provides various utilities that make creating a backend service with Node Js a lot easier. As a backen...


15: Day 7 Web Devlope

https://rsbcode.hashnode.dev/day-7-web-devlope

Hashnode - javascript (Javascript)

CSS Flexbox is a powerful layout module that allows you to create flexible and responsive designs. It provides a way to distribute space among items in a container and align them according to various layout options. Properties for the Parent (flex c...


16: Charted: The World's Aging Population from 1950 to 2100

https://www.visualcapitalist.com/cp/charted-the-worlds-aging-population-1950-to-2100/

Visual Capitalist (dataviz)

This graphic visualizes the world's aging population, showing data for every country and territory around the world. The post Charted: The World's Aging Population from 1950 to 2100 appeared first on Visual Capitalist.


17: What is flat() function in JavaScript ,how to implement it's polyfill.

https://amitsblog.hashnode.dev/what-is-flat-function-in-javascript-how-to-implement-its-polyfill

Hashnode - javascript (Javascript)

Before starting to read this article, You must have good knowledge of 'this' keyword of JavaScript. If you want to learn about 'this' keyword ,Please Click here The flat() method creates a new array with all sub-array elements concatenated into it . ...


18: Scopes and Closures in JavaScript: An In-depth Analysis of Context and Variable Scoping

https://fullstackwebdevtalks.hashnode.dev/scopes-and-closures-in-javascript-an-in-depth-analysis-of-context-and-variable-scoping

Hashnode - javascript (Javascript)

before ES6, JavaScript had only Global and Function scopes which were defined by var keywords. ES6 introduced two important and new JavaScript keywords: let and const which helped developers in reducing the scoping-based bugs. These two keywords prov...


19: Amazonie - Nouvelle Menace -

http://amisdekervoyal.viabloga.com/news/amazonie-nouvelle-menace

Amis de Kervoyal (Divers...)

Normal021falsefalsefalseMicrosoftInternetExplorer4/* Style Definitions */table.MsoNormalTable{mso-style-name:"Tableau Normal";mso-tstyle-rowband-size:0;mso-tstyle-colband-size:0;mso-style-noshow:yes;mso-style-parent:"";mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-para-margin:0cm;mso-para-margin-bottom:.0001pt;mso-pagination:widow-orphan;font-size:10.0pt;font-family:"Times New Roman";mso-fareast-font-fa [...]


20 / 131

20: Client-Side Form Validation Basics

https://blog.aashish-panthi.com.np/client-side-form-validation-basics

Hashnode - javascript (Javascript)

Introduction Definition of Client-Side Form Validation Client-side form validation refers to the process of validating user input directly in the browser before submitting the form to the server. It allows us to provide instant feedback to users, red...


21: React Hooks Best Practices

https://fredoly.hashnode.dev/react-hooks-best-practices

Hashnode - javascript (Javascript)

Introduction React hooks provide a concise and intuitive way to manage state, side effects, and other React features. However, with great power comes great responsibility. In this blog post, we will explore the top 10 best practices when using React ...


22: How to show Confetti on the screen when a user signs up on your Django app

https://chuddytech.hashnode.dev/how-to-show-confetti-on-the-screen-when-a-user-signs-up-on-your-django-app

Hashnode - python (python)

Adding delightful animations to your web application can greatly enhance the user experience and make it more engaging. In this tutorial, we will explore how to implement confetti animation on the screen when a user signs up on your Django app. The c...


23: Build your web apps using Next.js

https://adityatech.hashnode.dev/build-your-web-apps-using-nextjs

Hashnode - javascript (Javascript)

Using modern technologies, the world is finding ways to stretch and enable new possibilities in online experiences. Users require experiences which are faster and easier in the case of online services. React is a JavaScript library created by Meta fo...


24: Nvidia CEO: Thanks to AI, 'Everyone Is a Programmer Now'

https://www.webpronews.com/nvidia-ceo-thanks-to-ai-everyone-is-a-programmer-now/

WebProNews SEO (Développement)

WebProNews Nvidia CEO: Thanks to AI, ‘Everyone Is a Programmer Now’ Nvidia CEO Jensen Huang says artificial intelligence is ushering in a new era for programming, one where "everyone is a programmer." Nvidia CEO: Thanks to AI, ‘Everyone Is a Programmer Now’ Matt Milano


25: Inspirational Websites Roundup 46

https://tympanus.net/codrops/2023/05/29/inspirational-websites-roundup-46/

Codrops (Design / Internet)

A fresh collection of the most creative and beautiful websites that caught our attention in the past couple of weeks.


26: Unleashing the Power of Front-End Web Development: A Journey into the Digital Realm ''''

https://sharadvx.hashnode.dev/unleashing-the-power-of-front-end-web-development-a-journey-into-the-digital-realm

Hashnode - javascript (Javascript)

Introduction: Welcome, aspiring web developers, to the captivating world of front-end web development! ' In this article, we embark on an exciting adventure filled with HTML, CSS, and JavaScript, unlocking the secrets to crafting stunning and intera...


27: Using AI Correctly in Open-Source Projects, part III

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

Hashnode - javascript (Javascript)

In the final part of this series, we will continue going over JavaScript code to get you ready to implement AI into your applications with a sense of security! Let's hop right back in! Restricting AI Access to Sensitive Data: JavaScript Code Examples...


28: HTML, CSS, and JavaScript: The Holy Trinity of Web Development (Or So They Say)

https://shitalmainali.com.np/html-css-and-javascript-the-holy-trinity-of-web-development-or-so-they-say

Hashnode - javascript (Javascript)

Introduction In today's digital age, web development has emerged as a highly sought-after career path. With the increasing demand for websites and web applications, having a strong foundation in HTML, CSS, and JavaScript has become essential for aspi...


29: Simplifying Flutter State Management: Choosing the Right Approach

https://adityatech.hashnode.dev/simplifying-flutter-state-management-choosing-the-right-approach

Hashnode - Flutter (Flutter)

Introduction: State management is a crucial aspect of Flutter app development. As your app grows in complexity, handling and updating the application state becomes essential. Flutter provides various state management approaches, each with its own str...


30 / 131

30: How to draw 0800

https://feeds.feedblitz.com/~/743351030/0/tanglepatterns~How-to-draw.html

TanglePatterns (Zentangle)

Online instructions for drawing CZT® Damy (Mei Hua) Teng's Zentangle® pattern: 0800. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


31: Demystifying Flutter BLoC: A Powerful State Management Solution

https://adityatech.hashnode.dev/demystifying-flutter-bloc-a-powerful-state-management-solution

Hashnode - Flutter (Flutter)

Introduction: In the world of cross-platform app development, Flutter has emerged as a popular choice due to its ease of use, fast development cycles, and excellent performance. To build robust and scalable Flutter applications, developers often rely...


32: 'Supercharge Your Website with JavaScript Libraries'

https://jorshimayor.hashnode.dev/supercharge-your-website-with-javascript-libraries

Hashnode - javascript (Javascript)

Moving further on our web development journey, we come across powerful tools that can make our job easier and our websites more dynamic - JavaScript libraries. JavaScript libraries are like the toolkits in our house analogy. They contain a set of pre...


33: 'Diving into Asynchronous JavaScript: AJAX and Fetch API'

https://jorshimayor.hashnode.dev/diving-into-asynchronous-javascript-ajax-and-fetch-api

Hashnode - javascript (Javascript)

As we continue exploring JavaScript, it's time to delve into the world of Asynchronous JavaScript and XML, or AJAX, and the Fetch API. In our house analogy, if AJAX and Fetch were features, they'd be like the postal service. They allow our house (web...


34: 'Understanding the Document Object Model (DOM)'

https://jorshimayor.hashnode.dev/understanding-the-document-object-model-dom

Hashnode - javascript (Javascript)

Continuing our adventure into the world of web development, we're now stepping into the forest of the Document Object Model, or DOM for short. If you recall our previous discussions, HTML is the structure of our house, CSS adds style, and JavaScript ...


35: 'Bringing Your Web Page to Life with JavaScript'

https://jorshimayor.hashnode.dev/bringing-your-web-page-to-life-with-javascript

Hashnode - javascript (Javascript)

Building on our web development journey, we've created the structure of our webpage with HTML, and beautified it with CSS. Now, it's time to add some interactivity and life to our page. That's where JavaScript comes in! In the context of our house an...


36: Discussion on this keyword in Javascript

https://pulkitgovrani.hashnode.dev/discussion-on-this-keyword-in-javascript

Hashnode - javascript (Javascript)

In javascript, this keyword behaves differently compared to other languages. This keyword refers to an object and the manner in which it is called will be responsible for telling which object. Mini Question: What will be the output if we console.log ...


38: Supercharge Your Website with Google's Web Vitals: The Ultimate Guide

https://risesumit.hashnode.dev/supercharge-your-website-with-googles-web-vitals-the-ultimate-guide

Hashnode - javascript (Javascript)

Introduction In today's fast-paced digital world, having a high-performing website and delivering a great user experience is vital for online success. With shorter attention spans, users expect websites to load fast, work smoothly, and provide a seam...


39: Mastering the Inner Workings of JavaScript: Call Stack, Event Loop, and Asynchronous Tasks

https://ajayravi.hashnode.dev/mastering-the-inner-workings-of-javascript-call-stack-event-loop-and-asynchronous-tasks

Hashnode - javascript (Javascript)

Introduction: In the world of JavaScript, understanding the inner workings of the runtime environment is crucial for writing efficient and performant code. Two key concepts to comprehend in this regard are the Call Stack and the Event Loop. Furthermo...


40 / 131

40: Importing data in python

https://ujjwalrastogi.hashnode.dev/importing-data-in-python

Hashnode - python (python)

One can use 'r' or 'w'. This allows you to create a context in which you can execute commands with the file open. Once out of this clause/context, the file is no longer open and, for this reason, with is called a Context Manager. What you're doing h...


41: Python for Geospatial Analysis: Exploring GIS Libraries

https://pinakdatta.hashnode.dev/python-for-geospatial-analysis-exploring-gis-libraries

Hashnode - python (python)

Introduction: In the world of geospatial analysis, Python has emerged as a powerful tool for working with spatial data. With its extensive ecosystem of libraries and frameworks, Python provides a wide range of capabilities for processing, analyzing, ...


42: Javascript Jumpstart - Objects

https://dev.ojhaintech.com/javascript-jumpstart-objects

Hashnode - javascript (Javascript)

What we'll cover Creating objects and accessing their properties Modifying and deleting object properties Accessing properties of nested objects Understanding global objects like Window and Global Objects Object is a built-in function in JavaS...


43: How to perform a UX content inventory

http://blog.logrocket.com/ux-design/how-to-perform-ux-content-inventory/

Log Rocket blog (Web 2)

Discover what a content inventory is, how it differs from a content audit, and how the two practices work together. The post How to perform a UX content inventory appeared first on LogRocket Blog.


44: Statement of work: What it is and how to write one

http://blog.logrocket.com/product-management/what-is-a-statement-of-work/

Log Rocket blog (Web 2)

A statement of work should be clear on communicating the type of problem that needs to be solved and the time and money required to solve it. The post Statement of work: What it is and how to write one appeared first on LogRocket Blog.


45: Cosmicenergy, un malware pour débrancher les réseaux électriques

https://www.lemondeinformatique.fr/actualites/lire-cosmicenergy-un-malware-pour-debrancher-les-reseaux-electriques-90551.html

Le monde informatique (Internet / Informatique)

Au cours des dernières années, les cyberattaquants épaulés par des Etats ont renforcé leurs capacités à (...)


46: My React Plugin Journey: Embarking on an Epic Adventure

https://utinfrancis.hashnode.dev/my-react-plugin-journey-embarking-on-an-epic-adventure

Hashnode - javascript (Javascript)

Welcome to this series, where I will share my journey with you as I attempt to build a bridging aggregator react plugin alongside my mentor and the boys. Before we dive deep into the first week's activities, grab a glass of water and join me as I qui...


47: L'accélérateur GH200 de Nvidia entre en production

https://www.lemondeinformatique.fr/actualites/lire-l-accelerateur-gh200-de-nvidia-entre-en-production-90547.html

Le monde informatique (Internet / Informatique)

Nvidia ne perd pas de temps. Deux mois après avoir présenté DGX Cloud et ses systèmes DGX H100 à base d'accélérateur (...)


48: Removing Navbar and Footer on Login/Registration Page: A Cleaner User Experience

https://sauravblog.hashnode.dev/removing-navbar-and-footer-on-loginregistration-page-a-cleaner-user-experience

Hashnode - javascript (Javascript)

In my project, I needed to remove the navbar and footer on a specific page while keeping them on others. It turned out to be simpler than expected, so I decided to create a blog sharing clear instructions for others to implement. In this, The useLoca...


49: Simple Screen Navigation in Jetpack Compose

https://rhythamnegi.com/simple-screen-navigation-in-jetpack-compose

Hashnode - Kotlin (Mobiles)

Introduction Jetpack Compose is a modern, declarative framework for building native Android UIs. In this blog post, we will explore how to implement navigation in Jetpack Compose using the Navigation Component. Setting up the project First, you need ...


50 / 131

50: Simple Screen Navigation in Android Jetpack Compose

https://rhythamnegi.com/navigation-in-android-jetpack-compose

Hashnode - Kotlin (Mobiles)

Introduction Jetpack Compose is a modern, declarative framework for building native Android UIs. In this blog post, we will explore how to implement navigation in Jetpack Compose using the Navigation Component. Setting up the project First, you need ...


51: How Disinflation Could Affect Company Financing

https://www.visualcapitalist.com/sp/how-disinflation-could-affect-company-financing/

Visual Capitalist (dataviz)

History signals that after a period of slowing inflation'also known as disinflation'debt and equity issuance expands. The post How Disinflation Could Affect Company Financing appeared first on Visual Capitalist.


52: Metadata in .Net

https://artificialintelligencebymahima.hashnode.dev/metadata-in-net

Hashnode - javascript (Javascript)

Metadata is information about assemblies, modules and types that constitute .NET programs. In .Net, metadata is a common mechanism that the .NET runtime, compilers and tools all can use. Microsoft .NET uses metadata to describe all types that are use...


53: Building type-safe forms in React with react-ts-form

http://blog.logrocket.com/building-type-safe-forms-react-ts-form/

Log Rocket blog (Web 2)

react-ts-form is a complete and customizable library for creating more maintainable type-safe forms in React while avoiding boilerplate code. The post Building type-safe forms in React with react-ts-form appeared first on LogRocket Blog.


54: 4 templates to uplevel your product strategy

http://blog.logrocket.com/product-management/4-templates-to-uplevel-your-product-strategy/

Log Rocket blog (Web 2)

Product strategy is a plan that outlines what a team aims to accomplish with its product and how it will get there. The post 4 templates to uplevel your product strategy appeared first on LogRocket Blog.


55: Salaires 2023 : Des hausses moins prononcées dans l'IT

https://www.lemondeinformatique.fr/actualites/lire-salaires-2023-des-hausses-moins-prononcees-dans-l-it-90550.html

Le monde informatique (Internet / Informatique)

Après une année 2002 marquées par une euphorie générale post-Covid, le marché de l'emploi des informaticiens (...)


56: Fedora KDE Will Drop X11 In Favor of Wayland

https://www.webpronews.com/fedora-kde-will-drop-x11-in-favor-of-wayland/

WebProNews SEO (Développement)

WebProNews Fedora KDE Will Drop X11 In Favor of Wayland Fedora's KDE spin is taking a major step forward, planning to drop X11 altogether in favor of Wayland. Fedora KDE Will Drop X11 In Favor of Wayland Matt Milano


57: 3 Essential Design Trends, June 2023

https://www.webdesignerdepot.com/2023/05/3-essential-design-trends-june-2023/

Webdesigner depot (Design)

This month we are focusing on three trends within a bigger website design trend ' different navigation menu styles and features. So many projects are featuring interesting navigation patterns right now as there's a focus ' and almost push and pull ' on navigation that feels more consistent between devices.


58: Da Vinci Labs veut faire de la Touraine un territoire d'innovation technologique

https://www.usine-digitale.fr/article/da-vinci-labs-veut-faire-de-la-touraine-un-territoire-d-innovation-technologique.N2136857

L'usine-digitale (Informatique)

Fondé par l'entrepreneur Xavier Aubry au c'ur de la Touraine, le Da Vinci Labs a pour objectif de rassembler chercheurs, entrepreneurs et pouvoirs publics pour inventer des solutions en liant technologie et monde du vivant.


59: Simple NLP in Python with TextBlob: Pluralization and Singularization

https://stackabuse.com/simple-nlp-in-python-with-textblob-pluralization-and-singularization/

Stack Abuse (Javascript)

Introduction In today's digital world, there is a vast amount of text data created and transferred in the form of news, tweets, and social media posts. Can you imagine the time and effort needed to process them manually' Fortunately, Natural Language Processing (NLP) techniques help us manipulate, analyze, and interpret


60 / 131

60: PaLM : tout savoir sur le modèle de langage avancé de Google

https://www.lebigdata.fr/palm-google-tout-savoir

Le Big Data (dataviz)

PaLM, le modèle de langage avancé de Google repousse les frontières de la compréhension linguistique. Découvrez les avantages de cette … Cet article PaLM : tout savoir sur le modèle de langage avancé de Google a été publié sur LEBIGDATA.FR.


61: Comment acheter des billets d'avion moins cher grâce à un VPN '

https://www.lebigdata.fr/billets-davion-moins-chers

Le Big Data (dataviz)

Que vous soyez un voyageur passionné ou que vous ayez simplement besoin de prendre l’avion de temps en temps, il … Cet article Comment acheter des billets d’avion moins cher grâce à un VPN ' a été publié sur LEBIGDATA.FR.


62: Python Integer Numeric Data Type

https://logiclair.hashnode.dev/python-integer-numeric-data-type

Hashnode - python (python)

A. Introduction Data types are names given to an entity or object to differentiate them. The idea is to create a rule which operators to use for each specific type that allows Python to run efficiently. Programmers must also be familiar with the data...


63: L'événement tennistique français le plus important de l'année explore le tennis immersif

https://www.realite-virtuelle.com/roland-garros-explore-le-tennis-immersif/

realite-virtuelle.com (Réalité Virtuelle)

Et c'est parti pour l'édition 2023 du RG Lab (Roland-Garros Lab) ! Cette année, l'événement aura […] Cet article L'événement tennistique français le plus important de l'année explore le tennis immersif a été publié sur REALITE-VIRTUELLE.COM.


64: Python Programming : Alphabet or not

https://thecodingcoder.hashnode.dev/python-programming-alphabet-or-not

Hashnode - python (python)

Example Input Enter the character A Output Alphabet 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 of Data types. Steps Ta...


65: Effortlessly Customize Tailwind Components.

https://ashrafulmalik.hashnode.dev/effortlessly-customize-tailwind-components

Hashnode - vuejs (Javascript)

Are you a web developer looking for a hassle-free way to create stunning web designs' Look no further than Mytailwind! Our website simplifies the process of copying and customizing Tailwind components, saving you time and effort. In this blog post, w...


66: Python Programming : Lowercase or uppercase

https://thecodingcoder.hashnode.dev/python-programming-lowercase-or-uppercase

Hashnode - python (python)

Example Input Enter the character A Output Uppercase alphabet 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 of Data types....


67: Unlock Your Flutter Mastery: A Strategic Learning Plan for Success, Beyond Tutorials

https://shubhamkhare.hashnode.dev/unlock-your-flutter-mastery-a-strategic-learning-plan-for-success-beyond-tutorials

Hashnode - Flutter (Flutter)

Are you eager to master Flutter, the popular cross-platform app development framework' Whether you're a beginner or have some coding experience, this comprehensive 30-day learning plan is designed to help you become proficient in Flutter and build be...


68: Python Programming : profit and loss

https://thecodingcoder.hashnode.dev/python-programming-profit-and-loss

Hashnode - python (python)

Example Input enter the cost price 250 enter the sell price 260 Output The profit is 10 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-el...


69: Comment (et pourquoi) Greehill numérise les arbres en ville

https://www.usine-digitale.fr/article/comment-et-pourquoi-greehill-numerise-les-arbres-en-ville.N2136852

L'usine-digitale (Informatique)

Greehill, c'est le croisement de l'analyse de terrain et du traitement de la donnée grâce au jumeau numérique. Et les arbres sont au c'ur du dispositif. L'offre vient d'arriver sur le marché en France.


70 / 131

70: Day 3: 100 Days of Python

https://datapythonist.hashnode.dev/day-3-100-days-of-python

Hashnode - python (python)

favourite_food = input ("what is your favourite food: ") preferred_plant = input ("what plant do you prefer: ") method_of_cooking = input ("what method of cooking do you prefer: ") burnt_food = input ("what word describe burned food: ") household_ite...


71: Microsoft Ads to launch UET Insights dashboard with new traffic data

https://searchengineland.com/microsoft-uet-insights-dashboard-427658

Search engine land (Référencement)

The Universal Event Tracking Tag will update on June 29. Microsoft says the new data collection will help improve advertising performance. The post Microsoft Ads to launch UET Insights dashboard with new traffic data appeared first on Search Engine Land.


72: Sound null safety dans Dart: une nouvelle façon d'écrire du code plus fiable

https://natdiv9.hashnode.dev/sound-null-safety-dans-dart-une-nouvelle-facon-decrire-du-code-plus-fiable

Hashnode - Flutter (Flutter)

Google a récemment publié la troisième version du langage Dart lors de sa conférence annuelle, la Google I/O. Il s'agit de la plus grande version de Dart à ce jour, et elle apporte trois changements majeurs parmi lesquels le 100 % sound null safety q...


73: Dark Mode Websites: Advantages of Dark Theme

https://www.awwwards.com/dark-mode.html

awwwards (Internet)

Explore the benefits of Dark Mode in website and app design in this curated selection of Dark Mode websites that exemplify stunning visual aesthetics and...


74: How to use PDB in Django

https://neocodez.hashnode.dev/how-to-use-pdb-in-django

Hashnode - python (python)

Today, I would like to introduce you to the pdb (Python Debugger) module. Working with complex projects in Django can be a bit stressful when you have to ensure that you don't overlook any errors. The pdb module can help you debug errors and inspect ...


75: Python Programming: Positive, Negative or Zero

https://thecodingcoder.hashnode.dev/python-programming-positive-negative-or-zero

Hashnode - python (python)

Example Input enter the number 5 Output The number is positive 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 of Data types....


76: Understanding React Concurrency

https://kumarankit.hashnode.dev/understanding-react-concurrency

Hashnode - javascript (Javascript)

React v18.0 has broken ground by introducing a long-awaited feature: Concurrency! Concurrency refers to having more than one task in progress at once, and concurrent tasks can overlap depending on which is more urgent. What is concurrency' It is a w...


77: Python Coding: Exploring Python Dictionary

https://rhoitjadhav.hashnode.dev/python-coding-exploring-python-dictionary

Hashnode - python (python)

Harnessing the Power of Key-Value Pairs Python dictionaries are a powerful tool for efficient data organization using key-value pairs. In this blog post, we'll delve into key sections of dictionary operations, providing code examples along the way. S...


78: Python Programming : Divisible by 3 and 5

https://thecodingcoder.hashnode.dev/python-programming-divisible-by-3-and-5

Hashnode - python (python)

Example Input enter the number 15 Output Divisible by 3 and 5 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 of Data types. ...


79: Python Programming :Odd or Even

https://thecodingcoder.hashnode.dev/python-programming-odd-or-even

Hashnode - python (python)

Example Input enter the number 5 Output The number is odd 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 of Data types. Step...


80 / 131

80: HPE cède sa participation dans H3C pour 3,5 Md$

https://www.lemondeinformatique.fr/actualites/lire-hpe-cede-sa-participation-dans-h3c-pour-3-5-md%24-90549.html

Le monde informatique (Internet / Informatique)

En fin de semaine dernière, HPE a mis à jour le document 8-K déposé en début d'année auprès (...)


81: Des changements attendus dans Dart 3 et Flutter 3.10 de Google

https://www.lemondeinformatique.fr/actualites/lire-des-changements-attendus-dans-dart-3-et-flutter-310-de-google-90538.html

Le monde informatique (Internet / Informatique)

Google a lancé Dart 3, une mise à jour majeure de son langage de programmation, en même temps que la boîte à outils Flutter (...)


82: Contrats IT : vous avez dit « agile » '

https://www.lemondeinformatique.fr/actualites/lire-contrats-it-vous-avez-dit--agile-90541.html

Le monde informatique (Internet / Informatique)

Depuis sa création dans les années 2000, la méthode agile a pris d'assaut l'industrie des technologies de l'information et a changé (...)


83: Python Programming: Greater of three numbers

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

Hashnode - python (python)

Example Input enter the first number 3 enter the second number 5 enter the third number 4 Output 5 is the largest number. Required to Know Use of Variables, Use of different operators like assignment or arithmetic operators, Use of functions like p...


84: Unlocking Essentials in JavaScript for Becoming a Better Programmer

https://indrajeetcodes.hashnode.dev/unlocking-essentials-in-javascript-for-becoming-a-better-programmer

Hashnode - javascript (Javascript)

JavaScript is a versatile and widely-used programming language that plays a crucial role in web development. Whether you're a beginner or an experienced programmer, there are certain key concepts and practices that you must be well-versed in to write...


85: Quelles sont les évolutions de carrière dans l'UX Design '

https://www.usabilis.com/evolutions-carriere-ux-design/

Usabilis (ux)

Les équipes d'UX design s'étoffent et se spécialisent. Les domaines qui recherchent des UX designers vont de l'e-commerce à l'application métier industrielle, en passant par les applications mobiles et les sites vitrines. C'est dire si les opportunités et les champs d'applications sont nombreux et vastes. Cet article Quelles sont les évolutions de carrière dans l'UX Design ' est apparu en [...]


86: Writing your first ChatGPT API using Nodejs (Typescript)

https://tobiojuolape.hashnode.dev/writing-your-first-chatgpt-api-using-nodejs-typescript

Hashnode - javascript (Javascript)

Introduction AI is here to stay, and as software engineers seeking to build revolutionary products and services, it is important to know how to harness the power of AI to provide more value to users. In this article, I will be providing a simple guid...


87: Beem lève 20 millions d'euros pour ses solutions solaires "plug and play"

https://www.usine-digitale.fr/article/beem-leve-20-millions-d-euros-pour-ses-solutions-solaires-plug-and-play.N2136822

L'usine-digitale (Informatique)

Ce spécialiste des kits photovoltaïques pour l'autoconsommation signe une levée de fonds de 20 millions d'euros associant ses actionnaires historiques et Cathay Capital. Objectifs : quintupler sa clientèle d'ici 2030, muscler sa R&D, et prendre une dimension européenne.


88: Les négociations pour le rachat de New Relic échouent

https://www.lemondeinformatique.fr/actualites/lire-les-negociations-pour-le-rachat-de-new-relic-echouent-90548.html

Le monde informatique (Internet / Informatique)

Les temps sont durs pour les acquisitions d'entreprises. Dernier exemple en date, New Relic qui selon Reuters a arrêté les discussions (...)


89: Day -10 Determining Days in a Month and Handling Leap Years with Python

https://mjaved.hashnode.dev/day-10-determining-days-in-a-month-and-handling-leap-years-with-python

Hashnode - python (python)

In this blog post, we will explore a Python code snippet that calculates the number of days in a given month and handles leap years. The code utilizes two functions, is_leap() and days_in_month(), to provide the desired output. Let's dive into the co...


90 / 131

90: Trillion de dollars : pourquoi Nvidia va devenir un GAFAM grâce à l'IA '

https://www.lebigdata.fr/nvidia-gafam-grace-ia

Le Big Data (dataviz)

L’incroyable potentiel de l’IA propulse Nvidia vers des sommets, lui offrant une voie directe pour rejoindre l’élite des GAFAM. En … Cet article Trillion de dollars : pourquoi Nvidia va devenir un GAFAM grâce à l’IA ' a été publié sur LEBIGDATA.FR.


91: Transforming Web Media: Embrace the Magic of <audio> and <video> Tags

https://ankita11.hashnode.dev/transforming-web-media-embrace-the-magic-of-audio-and-video-tags

Hashnode - javascript (Javascript)

Audio Tag: The tag is specifically used for embedding and playing audio files on a web page. It is suitable for including music, podcasts, sound effects, or any other audio content. The tag provides controls such as play, pause, volum...


92: Nvidia trébuche au T1 2024, malgré un record sur les datacenters

https://www.lemondeinformatique.fr/actualites/lire-nvidia-trebuche-au-t1-2024-malgre-un-record-sur-les-datacenters-90545.html

Le monde informatique (Internet / Informatique)

Dans un contexte de pertes économiques massives et de suppressions d'emplois chez divers géants de la technologie, Jen-Hsun Huang, CEO (...)


93: IA et puce AMD Ryzen 7 7840U dans le Swift Edge 16 d'Acer

https://www.lemondeinformatique.fr/actualites/lire-ia-et-puce-amd-ryzen-7-7840u-dans-le-swift-edge-16-d-acer-90546.html

Le monde informatique (Internet / Informatique)

En janvier dernier, Acer dévoilait son Swift Edge 16, l'original. Ce mois-ci le constructeur taiwanais a présenté une actualisation (...)


94: Xavier Albouy nommé directeur du numérique du ministère de la Justice

https://www.lemondeinformatique.fr/actualites/lire-xavier-albouy-nomme-directeur-du-numerique-du-ministere-de-la-justice-90539.html

Le monde informatique (Internet / Informatique)

L'ex-directeur de la Dinum par intérim, Xavier Albouy, prend la tête du numérique au ministère de la Justice. Nommé à (...)


95: Les comptes oubliés posent de sérieux risques de sécurité

https://www.lemondeinformatique.fr/actualites/lire-les-comptes-oublies-posent-de-serieux-risques-de-securite-90533.html

Le monde informatique (Internet / Informatique)

Le silence est d'or, mais pas pour les comptes dormants. En effet, ils posent des risques de sécurité importants pour les utilisateurs et (...)


96: Test Onyx Boox Tab Ultra : la tablette E-Ink ultime, tout simplement !

https://www.tablette-tactile.net/liseuse/test-2/test-onyx-boox-tab-ultra-1113408/

Tablette-tactile.net (Mobiles / Tablettes)

À mi-chemin entre liseuse électronique et tablette tactile, l'Onyx Boox Tab Ultra est une machine unique au monde. Nous l'avons testée, voici notre avis complet !


97: Pernod Ricard met les données au service de son efficacité marketing

https://www.lemondeinformatique.fr/actualites/lire-pernod-ricard-met-les-donnees-au-service-de-son-efficacite-marketing-90540.html

Le monde informatique (Internet / Informatique)

Les données tiennent depuis longtemps une place centrale dans la stratégie du groupe Pernod Ricard. Pour le producteur de vins et spiritueux, (...)


98: Le numérique fait-il baisser le niveau des élèves '

https://macternelle.fr/2023/05/29/le-numerique-fait-il-baisser-le-niveau-des-eleves/

Macternelle (enfant / Formation)

Corentin Gonthier, Professeur des universités en psychologie du développement à l'université de Nantes, et membre de l'Institut Universitaire de France se penche sur l’idée reçue « le numérique fait baisser le niveau des élèves ».  Voici les idées clés que je retiens : Les enfants et les jeunes sont des « natives numériques » et sont naturellement à l’aise … [...]


99: JavaScript ''''2

https://denny1011133.dev/javascript-2

Hashnode - javascript (Javascript)

Primitive wrapper let myName = 'Denny'; let nameLength = myName.length; console.log(nameLength); // 5 '''''''''''''''''''''''' method ' property' '''JS ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' '''''''''''' let my...


100 / 131

100: 20 Frameworks to Improve Your Web Development

https://blog.learnhub.africa//20-frameworks-to-improve-your-web-development

Hashnode - javascript (Javascript)

In the continually evolving world of web development, frameworks play an important role in automating the entire creation process, boosting productivity, and improving the general efficiency of online applications. Because there are a lot of choices,...


101: MKH à Strasbourg ' Rencontre au Tour de France des Agences SEO

https://www.abondance.com/20230529-53523-mkh-black-and-white-seo.html

Abondance (Référencement)

Abondance soutient le Tour de France des agences SEO organisé par Khosi ! 10 agences SEO, 10 villes, 10 jours : c'est le défi que Laura, Victor, Maxime et Virginie se sont lancé.  Leur objectif ' Mettre en avant la qualité des agences SEO en France tout en faisant découvrir le métier de consultant SEO […] L'article "MKH à Strasbourg – Rencontre au Tour de France des Agences [...]


102: Web Development Courses in NZ

https://skyhitechacademy.hashnode.dev/web-development-courses-in-nz

Hashnode - javascript (Javascript)

SkyHiTech Academy offers web development courses in NZ that cover a range of topics, including HTML, CSS, JavaScript, and more. These courses are designed to teach students the basics of web development and help them develop the skills needed to crea...


103: Exploring Server-Side JavaScript: JavaScript Engines Beyond Web Browsers

https://ianbravyn.hashnode.dev/exploring-server-side-javascript-javascript-engines-beyond-web-browsers

Hashnode - javascript (Javascript)

Introduction Welcome, adventurous readers, to the next instalment of our series! In our previous articles, we unravelled the synergistic relationship between JavaScript engines and modern web development frameworks. Today, we embark on a new expediti...


104: JavaScript ''''1

https://denny1011133.dev/javascript-1

Hashnode - javascript (Javascript)

Type Coercion ' JavaScript '' operator ''''''''''''''''''''''' -, * , / , % ''' operand ''' number 25 * false; // 0 5 - '1'; //4 + '''' operand ''' string''''' number 5 + "1" // "51" ' if statement '' condition '''''''''' true/false const i = 1...


105: Mastering the Art of Python-MongoDB Integration

https://sahilrajput.hashnode.dev/mastering-the-art-of-python-mongodb-integration

Hashnode - python (python)

Hello World! In this blog post, we'll explore how to connect Python with MongoDB, a popular NoSQL database. Python provides several libraries to work with MongoDB. One of the most commonly used ones is PyMongo. Things we are going to use Python PyC...


106: Discover React.js Advanced Techniques: Components and State Handling

https://zordcoder.live/discover-reactjs-advanced-techniques-components-and-state-handling

Hashnode - javascript (Javascript)

Introduction Welcome back to our four-part series on React.js! In Part 1 ' , we discussed why React.js is a powerful framework for building dynamic web applications. Now, in Part 2, we will delve deeper into the core concepts of React.js, including ...


107: Single File Web Components...probably

https://jordanbrennan.hashnode.dev/single-file-web-componentsprobably

Hashnode - vuejs (Javascript)

If you use Vue's Single File Components and Web Components, then chances are you have wished Web Components could be packaged like those sweet sweet .vue files: The web platform doesn't ...


108: Single File Web Components...maybe

https://jordanbrennan.hashnode.dev/single-file-web-componentsmaybe

Hashnode - vuejs (Javascript)

If you use Vue's Single File Components and Web Components, then chances are you have wished Web Components could be packaged like those sweet sweet .vue files: The web platform doesn't ...


109: ChatGPT a 6 mois et domine le monde : comment l'IA a évolué si rapidement '

https://www.lebigdata.fr/chatgpt-ia

Le Big Data (dataviz)

  Comment cette prouesse incroyable de ChatGPT, l’IA révolutionnaire, a-t-elle permis de conquérir le monde en seulement 6 mois '  … Cet article ChatGPT a 6 mois et domine le monde : comment l'IA a évolué si rapidement ' a été publié sur LEBIGDATA.FR.


110 / 131

110: Most used list manipulation method in python

https://thatisabhi.hashnode.dev/most-used-list-manipulation-method-in-python

Hashnode - python (python)

In Python, lists are a versatile and commonly used data structure. They are ordered, mutable, and can contain elements of different types. Python provides several built-in methods to manipulate and perform operations on lists. Here's an explanation o...


111: "Getting Started with NPM: A Beginner's Guide to Package Management"

https://prakashraj.hashnode.dev/getting-started-with-npm-a-beginners-guide-to-package-management

Hashnode - javascript (Javascript)

Introduction As a developer, you've probably come across NPM, the Node Package Manager. While it's a well-known tool in the development world, you may still be unsure of its purpose and how it's used. In this blog post, I'll provide a comprehensive o...


112: Is Data Structures And Algorithms Important For Full Stack Developer'

https://yourquorum1.hashnode.dev/is-data-structures-and-algorithms-important-for-full-stack-developer

Hashnode - javascript (Javascript)

As a computer programmer, you might have heard an adequate number of times from your teachers how significant Information Construction and Calculations are. Furthermore, odds are you skimmed through those classes to push ahead to the seriously intere...


113: ' Building the biggest list of useful open-source libraries '''

https://nevo.hashnode.dev/building-the-biggest-list-of-useful-open-source-libraries

Hashnode - javascript (Javascript)

TL;DR Every day we see "awesome" GitHub lists. They are great.The main problem is that it sometimes needs to be updated.Maintainers need more time, or they leave the company.It also needs to reflect usefulness. I have decided to build a list that wil...


114: <head> vs <body> for JavaScript

https://blogs.prahladinala.in/head-vs-body-for-javascript

Hashnode - javascript (Javascript)

When it comes to writing JavaScript code in an HTML document, the placement of the code can have an impact on how it is executed and interacts with the rest of the page. The two common locations for placing JavaScript code within an HTML document are...


115: Day 3 - Conditional Statements, Logical Operators, Code Blocks, and Scope

https://petex47.hashnode.dev/day-3-conditional-statements-logical-operators-code-blocks-and-scope

Hashnode - python (python)

Starting off day 3 with Control Flow with if / else and Conditional Operators. Here's the first set of code blocks I worked on. Learning how to use if / else. print("Welcome to the rollercoaster!") height = int(input("What is your height in cm' ")) ...


116: Introduction to Programming Languages: A comparison of popular programming languages like Python, JavaScript, and Java

https://hopyrane.hashnode.dev/introduction-to-programming-languages-a-comparison-of-popular-programming-languages-like-python-javascript-and-java

Hashnode - javascript (Javascript)

So, you've decided to embark on the journey of programming' You've probably encountered some bumps along the way and realized there's a vast world waiting to be explored. Questions like: Where do I start' Where do I go from here' As much as these que...


117: Introduction to Programming Languages: A comparison of popular programming languages like Python, JavaScript, and Java

https://oduyemi.hashnode.dev/introduction-to-programming-languages-a-comparison-of-popular-programming-languages-like-python-javascript-and-java

Hashnode - javascript (Javascript)

So, you've decided to embark on the journey of programming' You've probably encountered some bumps along the way and realized there's a vast world waiting to be explored. Questions like: Where do I start' Where do I go from here' As much as these que...


118: Terraform with AWS

https://mrdevops.hashnode.dev/terraform-with-aws

Hashnode - javascript (Javascript)

The official Terraform Getting Started documentation does a good job of introducing the individual elements of Terraform (i.e. resources, input variables, output variables, etc), so in this guide, we're going to focus on how to put those elements tog...


119: Dockerize a login-page!

https://gauri1504.hashnode.dev/dockerize-a-login-page

Hashnode - javascript (Javascript)

Steps included: 1 Make a folder 2 Clone the repo 3 Make dockerfile 4 Build the image 5 Run 6 Test the project Step-1 In this step, we will first make a separate folder/directory COPY mkdir project03 cd project03 Step-2 In this step, we will clo...


120 / 131

120: Step into the Future of Data Analysis with React Native ECharts 1.1

https://chenzhiqing.hashnode.dev/step-into-the-future-of-data-analysis-with-react-native-echarts-11

Hashnode - javascript (Javascript)

We are excited to release a stable version of React Native ECharts 1.1. In the new version, we have added support for the react-native-gesture-handler gesture solution, among other enhancements. Read on to learn more! @wuba/react-native-echarts, An a...


121: Freebet 10 Z' za instalacj' nowej programów FUKSIARZa

https://catswhocode.com/freebet-10-zl-za-instalacje-nowej-programow-fuksiarza/

Cats who code (wordpress / PHP / Javascript)

W Fuksiarz aplikacja nie istnieje wygórowanych potrzeb systemowych. To zbiór pakietów, który absorbuje kilkadziesi't MB na karcie pami'ci. W zak'adach Fuksiarz iPhone wci'' posiada nieco pod spodem górk', bowiem firma poni'sza dalej tworzy specjaln' kandydatur' na iOS. Tego trudno'ci nie ma wraz z Androidem, poniewa' aplikacja 'wietnie odrabia na wszystkich telefonach spo'ród tym uk'adem. Ko [...]


122: Harnessing the Power: JavaScript Engines and Modern Web Development Frameworks

https://ianbravyn.hashnode.dev/harnessing-the-power-javascript-engines-and-modern-web-development-frameworks

Hashnode - javascript (Javascript)

Introduction Welcome back, curious readers! In our previous adventures, we uncovered the mysteries of JavaScript engines and unveiled their performance secrets. Today, we embark on a new journey, exploring the dynamic synergy between JavaScript engin...


123: Javascript Jumpstart - Types & Variables

https://dev.ojhaintech.com/javascript-jumpstart-types-variables

Hashnode - javascript (Javascript)

What we'll cover Understanding variable types and their declaration Exploring dynamic typing in JavaScript Types & Variables Almost everything in JavaScript is an Object. The object is a collection of key:value pair(s). { key: value, ...


124: Javascript Jumpstart - Overview

https://dev.ojhaintech.com/javascript-jumpstart-overview

Hashnode - javascript (Javascript)

Calling all JavaScript enthusiasts! Ready to level up' Join us in this ultimate JavaScript guide where we'll cover essential topics like types, variables, objects, functions, operators, expressions, statements, scopes, arrays, loops, and conditionals...


125: Safari allows to configure password autofilling (tilPost)

https://www.stefanjudis.com/today-i-learned/safari-allows-to-configure-password-autofilling/

Stefan Judis (Développement)

Suppose you're using a password manager (if you don't, go and install one now ' the internet is a scary place, and breaches happen all the time); you might have run into situations when your password manager comes up with a nicely cryptic and unique password that'll be rejected by a website because it's too long, uses not allowed characters or other nonsense. If that happens, you should evaluate [...]


126: Web Weekly 102 (blogPost)

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

Stefan Judis (Développement)

Guten Tag! 'Do you want to know why the new .zip domains are a security thread' Or what the passwordrules HTML attribute is about' Or want to see some stunning view transition examples' All the answers and much more are included in this week's Web Weekly. ' Let's kick things off with some web platform updates! Firefox 113 was released this month, and with it, two major web features went into cross [...]




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