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 13 Mai 2023 (68)

1: Mastering Memory: The Art of Memory Management and Garbage Collection in Go

https://dozie.hashnode.dev/mastering-memory-the-art-of-memory-management-and-garbage-collection-in-go

Hashnode - javascript (Javascript)

Memory management in the hectic world of programming frequently resembles managing a busy, always-open restaurant. The constant demand for effective service and the requirement for optimal performance are echoed by each diner or variable needing thei...


2: Simplifying Form Handling in Vue Applications with Form JS - Inspired by Inertia JS

https://blog.jobins.jp/simplifying-form-handling-in-vue-applications-with-formjs

Hashnode - vuejs (Javascript)

Recently I have been working on FormJs, which is a form helper and wrapper around Axios, inspired by inertiaJs. The purpose behind writing this new library was to streamline the process of how we handle the form on the front-end side. Validating form...


3: Encrypt Local Storage in the Browser

https://code-craft.hashnode.dev/encrypt-local-storage-in-the-browser

Hashnode - javascript (Javascript)

Before going further I would suggest you first check out my article on the prototypes. Yes, we will be using the prototype concept to add our custom encryption functions to the local storage API. Let's see how we can achieve this. The localStorage fu...


4: How to easily get Stop Words for your Language Learning Model

https://datasciencedude.com/how-to-easily-get-stop-words-for-your-language-learning-model

Hashnode - python (python)

It is almost impossible to read the news without ChatGPT or similar LLMs being mentioned at least a couple of times. LLM stands for large language model or language learning model and is a group of AI models that work gigantic datasets made up of tex...


5: Understanding JavaScript's Runtime!

https://blogs.saratangajala.com/understanding-javascripts-runtime

Hashnode - javascript (Javascript)

I was working on a C++ project and had to implement an asynchronous network call, which was not pretty compared to the simple and straightforward syntax used in Javascript. (Would include a snippet, but don't want to give anyone PTSD) I got curious a...


6: A guide to becoming proficient in JavaScript's Timer Function: An in-depth look into setInterval() and clearInterval().

https://adaezendu.dev/a-guide-to-becoming-proficient-in-javascripts-timer-function-an-in-depth-look-into-setinterval-and-clearinterval

Hashnode - javascript (Javascript)

JavaScript is a programming language that is widely used to develop dynamic and interactive web pages. One of the crucial features of JavaScript is the Timer function, which enables developers to execute a block of code at specific time intervals. Th...


7: What are Python Lambdas' How do I use them'

https://devwithdave.hashnode.dev/what-are-python-lambdas-how-do-i-use-them

Hashnode - python (python)

What are lambda functions' A lambda function is a small function that can be defined inline without a formal function definition. This means that it can be created and used immediately without needing to be defined beforehand. Here's a simple example...


8: Day 4 Of 30DaysOfJavaScript

https://shivankkapur.hashnode.dev/day-4-of-30daysofjavascript

Hashnode - javascript (Javascript)

Introduction Hey folks, I hope that you must have read my Day 3 Article on #30DaysOfJs. In case, if you haven't then make sure you give it a read by clicking here. Conditionals Conditional Statements are the type of statements in JavaScript that are ...


9: JS: Built-In Library

https://sagecode.hashnode.dev/js-built-in-library

Hashnode - javascript (Javascript)

In JavaScript, built-in libraries refer to pre-defined sets of functionality that are included in the language itself. These libraries provide developers with a range of tools and functions that can be used to create powerful web applications. Here i...


10 / 68

10: Fix AttributeError: 'NoneType' object has no attribute 'shape'

https://logiclair.hashnode.dev/fix-attributeerror-nonetype-object-has-no-attribute-shape

Hashnode - python (python)

NumPy is a popular tool for computing numbers involving matrices, arrays, and math functions. The shape attribute of a NumPy array returns a tuple showing the dimensions of the array. And when it comes to reshaping and manipulating NumPy arrays, the ...


11: Count Ways To Build Good Strings

https://leeting-lcs.hashnode.dev/count-ways-to-build-good-strings

Hashnode - python (python)

Problem Statement:- Given the integers zero, one, low, and high, we can construct a string by starting with an empty string, and then at each step perform either of the following: Append the character '0' zero times. Append the character '1' one ti...


12: Turning a Website into an API

https://the-coding-lab.com/turning-a-website-into-an-api

Hashnode - python (python)

Heya fellows, The amount of interesting data which can be found on websites is increasing from day to day. These data are scraped by search engines to improve search results, they're collected to create machine learning models or just processed and o...


13: Asynchronous vs. Synchronous Calls in JavaScript: Understanding the Difference

https://yashbrid.me/asynchronous-and-synchronous-calls

Hashnode - javascript (Javascript)

Introduction In JavaScript, asynchronous and synchronous calls refer to different ways of executing code and handling operations. Understanding these concepts is crucial for developing efficient and responsive JavaScript applications. Synchronous Cal...


14: Continuously Deploying to GitLab's NPM Package Registry

https://webbureaucrat.hashnode.dev/continuously-deploying-to-gitlabs-npm-package-registry

Hashnode - javascript (Javascript)

In a previous article, we explored how to continuously deploy to the npmjs.com package registry. This is all well and good, but an advantage of CI/CD is that we can easily deploy wherever we want. This article will explore how to deploy an npm packag...


15: Primitive and Reference Datatypes in Javascript With Examples

https://deepaknayak.hashnode.dev/primitive-and-reference-datatypes-in-javascript-with-examples

Hashnode - javascript (Javascript)

In javascript, the datatypes are divided into two types Primitive Type(Primitive Datatypes) Non-Primitive Type(Reference Type) Primitive Type: when we declare a variable or a function after the declaration, it needs to be stored somewhere but whe...


16: Animating the Web: A Beginner's Guide to Creating Stunning Animations

https://smilegupta.hashnode.dev/animating-the-web-a-beginners-guide-to-creating-stunning-animations

Hashnode - javascript (Javascript)

What are animations' Animations refer to the dynamic and visually appealing movements, transitions, or transformations of elements on a website or web application. Animations are used to enhance user experience, provide visual feedback, guide user at...


17: Automating Repository Monitoring and Notification with Python and Twilio

https://kartikmehta.hashnode.dev/automating-repository-monitoring-and-notification-with-python

Hashnode - python (python)

Introduction In this blog post, we will explore a Python script that automates the monitoring of repository creation on GitHub. The script periodically checks for new repositories, clones them locally, and sends notifications using Twilio. While this...


18: Why You Shouldn't Put JSX in Custom React Hooks

https://devstation.hashnode.dev/why-you-shouldnt-put-jsx-in-custom-react-hooks

Hashnode - javascript (Javascript)

React custom hooks are a great way to reuse logic across multiple components. They allow you to encapsulate complex functionality and provide a simple API for other components to use. However, it's essential to keep in mind that custom hooks should f...


19: First 5 Steps of Object-Oriented Design

https://mdfaisal.hashnode.dev/first-5-steps-of-object-oriented-design

Hashnode - javascript (Javascript)

To read more articles like this, visit my blog. As a software developer, our main day-to-day task is to design solutions for real-life problems and translate them into code. So understanding the correct problem and properly designing is a very import...


20 / 68

20: Array method in JavaScript

https://aditya06.hashnode.dev/array-method-in-javascript

Hashnode - javascript (Javascript)

An array is a data structure that holds a collection of elements of the same type. JavaScript provides several built-in methods that you can use to manipulate arrays. So we use the array method to manipulate the array. let's explore some methods in t...


21: Start of the object oriented thinking and design pattern with javascript

https://mdsabbirrahman.hashnode.dev/start-of-the-object-oriented-thinking-and-design-pattern-with-javascript

Hashnode - javascript (Javascript)

What's in this episode In the first episode of this series, I am going to discuss, why launching this series and the basic concepts of object-oriented thinking. In the next episodes, will try to discuss SOLID principles. After that will try to be fam...


22: 15 Rules For Writing Clean JavaScript

https://mdfaisal.hashnode.dev/15-rules-for-writing-clean-javascript

Hashnode - javascript (Javascript)

To read more articles like this, visit my blog So you are a React developer or Node.js developer. You can write code that works. But can you write code that is visually beautiful and understandable by others' Today we will see some rules to make your...


23: Day 18 Task: Docker Compose

https://goutamdevops.hashnode.dev/day-18-task-docker-compose

Hashnode - python (python)

Docker Compose is used to run multiple containers as a single service. For example, suppose you had an application which required NGNIX and MySQL, you could create one file which would start both the containers as a service without the need to start ...


24: Unsupervised Machine Learning Series:Principal Component Analysis(2nd algorithm)

https://rhythmblogs.hashnode.dev/unsupervised-machine-learning-seriesprincipal-component-analysis2nd-algorithm

Hashnode - python (python)

In the previous blog, we understood about 1st Unsupervised ml algo: Clustering algorithms . In this blog, we will cover our 2nd unsupervised algorithm, Principal Component Analysis (PCA). It is a statistical technique that is widely used in data scie...


25: JavaScript Frameworks: A Comprehensive Guide for Beginners

https://techtruth.dev/javascript-frameworks-a-comprehensive-guide-for-beginners

Hashnode - javascript (Javascript)

JavaScript is one of the most popular programming languages in the world, and it's used to build all kinds of web applications. However, building complex web applications from scratch can be a daunting task, especially for beginners. Fortunately, the...


26: Unreal Engine Gains Native Apple Silicon Support

https://www.webpronews.com/unreal-engine-gains-native-apple-silicon-support/

WebProNews SEO (Développement)

WebProNews Unreal Engine Gains Native Apple Silicon Support Epic Games has released Unreal Engine 5.2, adding support for Apple's M-Series custom silicon. Unreal Engine Gains Native Apple Silicon Support Staff


27: 90daysofdevops Day 17 Task: Docker Project

https://goutamdevops.hashnode.dev/90daysofdevops-day-17-task-docker-project

Hashnode - python (python)

Dockerfile Docker is a tool that makes it easy to run applications in containers. Containers are like small packages that hold everything an application needs to run. To create these containers, developers use something called a Dockerfile. A Dockerf...


28: The Power of Colors

https://pulkitsingh.hashnode.dev/the-power-of-colors

Hashnode - javascript (Javascript)

When it comes to web design, colors are an essential element that can make or break a website's aesthetic appeal. A well-chosen color scheme can enhance the overall user experience and make the website more visually appealing. On the other hand, a po...


29: Integration between Querydsl and Spring Data REST using Kotlin, Gradle and Spring Boot 3

https://aregall.tech/integration-between-querydsl-and-spring-data-rest-using-kotlin-gradle-and-spring-boot-3

Hashnode - Kotlin (Mobiles)

Overview This article will walk through the process of integrating Querydsl with an existing Spring Data REST API using Kotlin and Gradle. The goal is to demonstrate how to implement advanced querying and filtering features on a REST API without the ...


30 / 68

30: Introduction to Object Pooling in three.js

https://kingdavvid.hashnode.dev/introduction-to-object-pooling-in-threejs

Hashnode - javascript (Javascript)

Object pooling is an essential design pattern in software development. It involves reusing objects rather than creating and destroying them frequently. It is a very important concept when building interactive web or when developing games. It helps im...


31: 90daysofdevops Day 16 Task: Docker

https://goutamdevops.hashnode.dev/90daysofdevops-day-16-task-docker

Hashnode - python (python)

Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run including libraries, system tools, code, ...


32: JavaScript tips to backend programmers Part I

https://benayedseeksai.hashnode.dev/javascript-tips-to-backend-programmers-part-i

Hashnode - javascript (Javascript)

Some programmers find it hard to handle objects in javascript. So I made a pseudo-tutorial about tips and tricks for object handling. Object making First, Object making in javascript is easy and simple. Static object making The static object creation...


33: Working with Dates and Times in JavaScript

https://ghloriey.hashnode.dev/working-with-dates-and-times-in-javascript

Hashnode - javascript (Javascript)

Introduction Are you a beginner in JavaScript looking to work with dates and times' Look no further! This article will guide you through creating and manipulating dates using the built-in Date object in JavaScript. Discover how to establish a new dat...


34: The Model-View-Controller Architecture-The Software Architecture

https://iampradip.hashnode.dev/the-model-view-controller-architecture-the-software-architecture

Hashnode - javascript (Javascript)

Before knowing architecture first of all we should know why we do we even need the architecture. well, there are multiple reasons behind it and the first reason for having good architecture is it will give our project the structure in which we can th...


35: Keyboard Shortcuts for Windows Snipping Tool: Improve Your Screenshots and Save Time

https://webinfo.hashnode.dev/keyboard-shortcuts-for-windows-snipping-tool-improve-your-screenshots-and-save-time

Hashnode - javascript (Javascript)

Are you tired of taking screenshots the old-fashioned way, using the Print Screen button and then cropping the image' Then you need to try the Windows Snipping Tool, a built-in utility that allows you to capture all or part of your screen and save it...


36: Build Better Apps, Become a Better Developer

https://akman.hashnode.dev/build-better-apps-become-a-better-developer

Hashnode - javascript (Javascript)

Greetings! I had an eye-opening experience with Twitter's new algorithm, which showed me posts from people I don't follow. It exposed me to different debates about tools, frameworks, and methods, which I've been observing for some time. Everyone seem...


37: 90DaysofDevOps Day 14 Python Data Types and Data Structures for DevOps

https://goutamdevops.hashnode.dev/90daysofdevops-day-14-python-data-types-and-data-structures-for-devops

Hashnode - python (python)

Data Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Everything is an object in Python programming, data types are actually c...


38: Formspree: The Stress-Free Way to Handle Forms on Your Website

https://codexive.hashnode.dev/formspree-the-stress-free-way-to-handle-forms-on-your-website

Hashnode - javascript (Javascript)

Table of Content Introduction. Prerequisites. What is Formspree' Reasons Why You Should Use Formspree. How to Create a Formspree Account. Installing React App and Necessary Dependencies. Building a Contact Form UI. Installing and Setting up F...


39: Lutte contre la désinformation': Tendances et modèles d'aujourd'hui

https://www.meta-media.fr/2023/05/13/lutte-contre-la-desinformation-tendances-et-modeles-daujourdhui.html

Meta Media (Internet)

La définition du terme désinformation, nous n'avons plus besoin de vous la donner bien sûr. Ou bien' malheureusement devrais-je dire. La pratique s'est tellement popularisée avec internet, et les canaux pour communiquer à l'échelle mondiale sont si simples d'utilisation que nous en sommes recouverts. Plus personne ne sait à quel... The post Lutte contre la désinformation': Tendances et mod [...]


40 / 68

40: Visual regression testing with Ladle, so far the best Storybook alternative.

https://stackonfire.com/visual-regression-testing-with-ladle-so-far-the-best-storybook-alternative

Hashnode - javascript (Javascript)

What is Ladle According to the founder, Ladle is a tool for developing and testing your React components in an isolated and faster environment than most real-world applications. It supports Component Story Format ' a concept widely popular thanks to ...


41: Day4 of Mastering JavaScript Fundamentals: The Complete Guide to JavaScript30

https://techsammy.hashnode.dev/day4-of-mastering-javascript-fundamentals-the-complete-guide-to-javascript30

Hashnode - javascript (Javascript)

Array Cardio Day 1 In the first part of his "Array Cardio" tutorial series, Wes Bos covers some useful array methods in JavaScript. He demonstrates how to use these methods by manipulating an array of objects containing information about different pe...


42: My Journey from Frontend to FullStack: What to expect'

https://blog.sagarmoy.work/my-journey-from-frontend-to-fullstack-what-to-expect

Hashnode - javascript (Javascript)

Hey there, coding commanders! Imagine this'''you're not just crafting sleek interfaces anymore, you're orchestrating a symphony of code, both in the front and the back of the house. Sounds thrilling' Welcome to the fascinating world of FullStack Engi...


43: Ultimate Guide to Dependency Injection in Android ' Part 2. Manual DI and Practice

https://devblogs.dashwave.io/ultimate-guide-to-dependency-injection-in-android-part-2-manual-di-and-practice

Hashnode - Kotlin (Mobiles)

In this article, I'm going to reference some points from the first article. Read it first if you want to have the complete picture. In software development, dependency injection is a technique that allows you to decouple components and improve the te...


44: Liens vagabonds : Google retourne dans la course des grands modèles de langage

https://www.meta-media.fr/2023/05/13/liens-vagabonds-google-retourne-dans-la-course-des-grands-modeles-de-langage.html

Meta Media (Internet)

À RETENIR CETTE SEMAINE Google contre-attaque - Mercredi, à l'occasion de la conférence I/O, Google a donné un aperçu de la façon dont son c'ur de métier, la recherche, menacée par l'irruption de nouveaux concurrents comme ChatGPT, va se transformer. Au rayon hardware d'abord, l'entreprise a révélé le lancement de... The post Liens vagabonds : Google retourne dans la course des grands m [...]


45: 90DaysofDevOps 13 Python

https://goutamdevops.hashnode.dev/90daysofdevops-13-python

Hashnode - python (python)

Python is a Open source, general purpose, high level, and object-oriented programming language. It was created by Guido van Rossum Python consists of vast libraries and various frameworks like Django,Tensorflow, Flask, Pandas, Keras etc. Installation...


46: Day 6: Building a URL Shortener with React: A Step-by-Step Guide '

https://vinishbhaskar.hashnode.dev/day6-url-shortener-with-react-21day-frontend

Hashnode - javascript (Javascript)

Welcome to Day 6 of the 21-day front-end development challenge! In this tutorial, we'll walk you through the process of building a URL Shortener application using React. URL shorteners are powerful tools that can convert long and complex URLs into sh...


47: How to use Quest DB for time-series analysis in Java

https://www.sumitbhadola.com/how-to-use-quest-db-for-time-series-analysis-in-java

Hashnode - javascript (Javascript)

QuestDB is a fast and easy way to work with time-series data. It supports various protocols and formats for data ingestion and query, such as InfluxDB Line Protocol, PostgreSQL wire protocol, HTTP REST API, and SQL. QuestDB also provides a web consol...


48: Understanding PWAs ' (Pt. 1)

https://blog.akshayraichur.com/understanding-pwas-pt-1

Hashnode - javascript (Javascript)

PWA stands for Progressive Web Apps. We are currently at the stage where user experience & accessibility are paramount. And PWA is one of the ways which is revolutionizing the way we interact with web applications. Let's understand what a PWA is. A ...


49: JSON Introduction: Learning the Basics of JSON

https://hensco95.hashnode.dev/the-beginners-guide-to-json-understanding-the-most-versatile-data-format-for-web-development

Hashnode - javascript (Javascript)

What is JSON' Javascript Object Notation(JSON) is a lightweight, text-based data interchange format. JSON is used to send data between a client(web browser) and a server over the web. When a client sends data to a server, the data is sent in a JSON f...


50 / 68

50: Map, Zip & Filter | Understanding Python built-in functions.

https://nikhilakki.in/map-zip-filter-understanding-python-built-in-functions

Hashnode - python (python)

In Python, map(), zip(), and filter() are built-in functions that are used to perform different operations on iterables like lists, tuples, and sets. map() function: This function applies a given function to each item of an iterable and returns a ne...


51: CSS Fonts and Icons

https://codemarch.hashnode.dev/css-fonts-and-icons

Hashnode - javascript (Javascript)

CSS Fonts Choosing the right font for your website is important! CSS font-family Property' CSS Web Safe Fonts' However, there are no 100% completely web safe fonts. There is always a chance that a font is not found or is not installed properly. Th...


52: Let's Learn Dash - A Data Visualization Framework based on Python: Part 2

https://srummanf.hashnode.dev/lets-learn-dash-a-data-visualization-framework-based-on-python-part-2

Hashnode - python (python)

In the previous blog, we made a website that showed us the data on avocados and was quite beautiful. In continuation with the previous blog Let's Learn Dash - A Data Visualization Framework based on Python: Part 1, we are going to add styling and use...


53: AutoScaling Ec2 Instances based on CPU usage using Terraform

https://mrdevops.hashnode.dev/autoscaling-ec2-instances-based-on-cpu-usage-using-terraform

Hashnode - javascript (Javascript)

In this Article we will explore How to scale in and scale down EC2 instances based on there CPU utilization using Autoscaling and Loadbalancer The source Code is available in github.com/Jaffarterraform786/cloudwatch you can just insert your access ke...


54: What's the Difference Between Null and Undefined'

https://williamma.hashnode.dev/whats-the-difference-between-null-and-undefined

Hashnode - javascript (Javascript)

If you've been using JavaScript for any length of time, you should have encountered these two primitive values: null and undefined. At first, you might not think much of it. As far as you're concerned, they both represent no value. As developers we u...


55: Sort Colors

https://sandrana.hashnode.dev/sort-colors

Hashnode - javascript (Javascript)

Introduction Given an array with values 0 representing red, 1 representing white, and 2 representing blue.You need to modify the array so that all array contains 0s at the start,1s at mid, and 2s at the end. Note - You cannot use the in-built sorting...


56: Node Test Runner: Assertion Cheat Sheet

https://kristijan-pajtasev.hashnode.dev/node-test-runner-assertion-cheat-sheet

Hashnode - javascript (Javascript)

Node Test Runner got released with Node v20 as a stable feature. This means we can test our NodeJS applications without installing other 3rd party applications. I have already made an intro on this feature you can read in this article. But to do test...


57: What is Nullish Coalescing Operator

https://victoriacheng15.hashnode.dev/what-is-nullish-coalescing-operator

Hashnode - javascript (Javascript)

What is Nullish Coalescing Operator' The Nullish Coalescing Operator ('') is a relatively new addition to JavaScript (ES2020) that provides a concise way to check for null or undefined values. It can be used to provide a default value when a given ex...


58: Enhancing User Experience with Dislike and Undo Features in a Freelancer-Client Matching App

https://arashjangali.com/enhancing-user-experience-with-dislike-and-undo-features-in-a-freelancer-client-matching-app

Hashnode - javascript (Javascript)

Day 102 of #365DaysOfCodeToday's work focused on implementing the dislike functionality and adding an undo button for instances when a user accidentally dislikes a freelancer. This enhancement allows users to reverse their decision and reconsider the...


59: dates in python

https://snowcodes.hashnode.dev/dates-in-python

Hashnode - python (python)

>>>from datetime import date >>>now = date.today() >>>now datetime.date(2003, 12, 2) >>>now.strftime("%m-%d-%y. %d %b %Y is a %A on the %d day of %B.") '12-02-03. 02 Dec 2003 is a Tuesday on the 02 day of December.' Let's break down the format strin...


60 / 68

60: difference in style of import

https://snowcodes.hashnode.dev/difference-in-style-of-import

Hashnode - python (python)

What's the difference between "import os" and "from os import *" and which should I adopt' In Python, both import os and from os import * are used to import the os module, but they have different implications and usage patterns. import os: This state...


61: Coding Challenge 01.

https://adibathemumcoder0308.hashnode.dev/coding-challenge-01

Hashnode - javascript (Javascript)

The challenge I have done today is - Create a Phone Number - (Write a function that accepts an array of 10 integers (between 0 and 9), that returns a string of those numbers in the form of a phone number).createPhoneNumber([1, 2, 3, 4, 5, 6, 7, 8, 9,...


62: JS: Error Handling

https://sagecode.hashnode.dev/js-error-handling

Hashnode - javascript (Javascript)

Error handling is an important concept in JavaScript programming. Errors can occur due to various reasons, including syntax issues, runtime errors, and logical errors. When an error occurs, JavaScript will stop executing the program and display an er...


63: Why Web Development is Dying and Progressive Web Apps are Taking Over

https://blog.abdulrahman.dev/why-web-development-is-dying-and-progressive-web-apps-are-taking-over

Hashnode - javascript (Javascript)

In recent years, there has been a significant shift in the way we approach web development. Traditional web development is slowly dying out, and Progressive Web Apps (PWAs) are taking over. PWAs are web applications that offer a native app-like exper...


64: Why the Node.js Ecosystem is Broken and Needs to be Rebuilt from Scratch

https://blog.abdulrahman.dev/why-the-nodejs-ecosystem-is-broken-and-needs-to-be-rebuilt-from-scratch

Hashnode - javascript (Javascript)

As one of the most popular programming languages, JavaScript has seen a lot of growth and development over the years. Node.js, a runtime environment for JavaScript, was released in 2009, and since then, it has become one of the most widely used techn...




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