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

« Mars 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 13 Mars 2023 (150)

1: Raspberry Pi como runner do GitHub Action

https://santospedroh.hashnode.dev/raspberry-pi-como-runner-do-github-action

Hashnode - python (python)

Raspberry Pi '' + GitHubActions ' Estamos em 2023, o carnaval já passou e agora estou retomando meus estudos e laboratórios. Há alguns eu tive a ideia de utilizar o meu "Home Server" (foto abaixo) que no caso é um Raspberry Pi 4 como um Runner para...


2: How to build React applications faster with Bun

https://openreplay.hashnode.dev/how-to-build-react-applications-faster-with-bun

Hashnode - javascript (Javascript)

Is your npm package install slower' Or do you want to try out a new runtime environment' Bun is the new Javascript runtime that claims to be better than Node.js. This article will test this out and see how we can improve our React applications with t...


3: Handle your calendar in React with Calendly

https://openreplay.hashnode.dev/handle-your-calendar-in-react-with-calendly

Hashnode - javascript (Javascript)

As someone who regularly has meetings upon meetings or as a developer who is stuck with multiple conference meetings with product managers and marketers, you discover that most of the time, one gets stuck with what time a meeting is; how do I not for...


4: Dealing with Dates and Times: Alternatives to Moment.js

https://openreplay.hashnode.dev/dealing-with-dates-and-times-alternatives-to-momentjs

Hashnode - javascript (Javascript)

One of the most crucial elements when setting up an application to be utilized in various languages is date formatting. Nobody wants to work with the Date object and end up breaking them; instead, they search for ready-made libraries that allow easy ...


5: Google Brings a Slew of Features to Its Pixel Phones

https://www.webpronews.com/google-brings-a-slew-of-features-to-its-pixel-phones/

WebProNews SEO (Développement)

WebProNews Google Brings a Slew of Features to Its Pixel Phones Google has released the first Feature Drop of 2023, bringing a slew of updates and features to its Pixel line of phones and watches. Google Brings a Slew of Features to Its Pixel Phones Staff


6: Different ways to import in Python

https://zianelijahsmith.hashnode.dev/different-ways-to-import-in-python

Hashnode - python (python)

Importing in Python I was in a Python community on Twitter, and saw someone ask a question. They asked if import math and from math import * were the same. They are not. I decided to write a short post explaining the various ways you can import somet...


7: How Reconciliation Works in Reacts

https://aarya2228.hashnode.dev/how-reconciliation-works-in-reacts

Hashnode - javascript (Javascript)

To understand reconciliation first let's understand DOM So what is DOM' DOM stands for document object model. It acts as an interface to interact with the browser and make changes to the DOM and is the representation of the same HTML document but in ...


8: Episode 23/10: Performance Basics, Angular Misconceptions, Panel on Signals & RxJs

https://ng-news.hashnode.dev/episode-2310-performance-basics-angular-misconceptions-panel-on-signals-rxjs

Hashnode - javascript (Javascript)

Eduard Krivanek gave an overview of all performance-related Angular techniques. Armen Vardanyan wrote about common Angular misconceptions, and we had a panel discussion on how signals might impact RxJs. https://youtu.be/rCP_C2F_RQM Eduard Krivanek:...


9: Angular Change Detection

https://blog.mihaioltean.com/angular-change-detection

Hashnode - javascript (Javascript)

How to explain someone how change detection works in Angular' Components in Angular are structured as a tree. A lot of abstractization on it By default, Angular detects if the reference of something that is bound to HTML changes Every time it changes...


10 / 150

10: the equal problem

https://shashmit.hashnode.dev/the-equal-problem

Hashnode - javascript (Javascript)

In general, we understand what the equal sign represents but in the language of programming, it is understood in different manners. Here, I will talk about two of the language that I'm learning right now. One is the most talked about language on the ...


11: Take your Vue 3 project to the next level

https://abdallahbari.hashnode.dev/take-your-vue-3-project-to-the-next-level

Hashnode - javascript (Javascript)

Welcome back to our Vue.js 3 series! In the previous article, we introduced the top 10 productivity tips for Vue 3. In this follow-up article, we'll dive deeper into some additional tips and best practices for Vue 3 development. As you may know, Vue ...


12: Concurrency using threads in Python.

https://kabakiantony.hashnode.dev/concurrency-using-threads-in-python

Hashnode - python (python)

Introduction Concurrency is about dealing with a lot of things at once. Therefore concurrency in computing is the ability of a computer system to handle or execute multiple tasks simultaneously. In a programming context, it is the ability to write pr...


13: Get Started With React - Beginner's Guide

https://blog.rijusougata13.com/get-started-with-react-beginners-guide

Hashnode - javascript (Javascript)

If you want to start learning React.js but you are a complete beginner, then you came to the right place. Today I will discuss how to get started with react, and the basic things you need to understand. After reading this blog you will have a clear u...


14: T-minus 2 weeks until MarTech: Grab your free pass now to discover cutting-edge solutions and strategies

https://searchengineland.com/the-martech-conference-news-394240

Search engine land (Référencement)

Unlock the entire MarTech experience, online March 28-29, for free. No hidden fees, no travel headaches, no time out of the office. The post T-minus 2 weeks until MarTech: Grab your free pass now to discover cutting-edge solutions and strategies appeared first on Search Engine Land.


15: Using context and custom hooks like a pro

https://wisdom-ose.hashnode.dev/using-context-and-custom-hooks-like-a-pro

Hashnode - javascript (Javascript)

Introduction To follow through with this tutorial I highly recommend you go through my previous post where I discussed the 3 things needed to make a good API call. Today, we are going deeper to talk about how you can get the most from combining conte...


16: Understanding Different Data Types: A Comprehensive Guide

https://blog.sahilchandravanshi.com/javascript-data-types-guide

Hashnode - javascript (Javascript)

Data type refers to the type of data that a JavaScript variable can hold. Assigning values to variables, including numbers, text, and true or false, has been all we've done up to this point. What are all of those things, and what are our various opti...


17: Web-Application Deployment Using Nginx Web Server

https://deepakcloud22.hashnode.dev/web-application-deployment-using-nginx-web-server

Hashnode - python (python)

Overall, this project demonstrated how Nginx Web Server can be used to deploy web applications in a scalable, secure, and reliable manner, and how Docker can be used to package and deploy these applications with ease. The technology stack used in thi...


18: Day 18 - While loops

https://codewithjain.hashnode.dev/day-18-while-loops

Hashnode - python (python)

Introduction Welcome to my 18th blog post. Today I learned about the while loops and using else statements within while loops. As there are no Do while loops in python, I learnt to emulate do-while loops. Let's dive into detail. So let's get started....


19: Get Started with Jupyter Notebook on Linux/PopOS!: A Complete Setup Guide

https://tripur.hashnode.dev/get-started-with-jupyter-notebook-on-linuxpopos-a-complete-setup-guide

Hashnode - python (python)

Are you looking to figure out how to set up a Jupyter notebook on Linux or PopOS' Look nowhere else! We'll go over step-by-step directions for setting up the notebook in this blog article. The prerequisites you require, application setup, logic writi...


20 / 150

20: Encoding

https://statistics.hashnode.dev/encoding

Hashnode - python (python)

What is Encoding' In pandas, "encoding" refers to the process of converting text data from one format to another. This is necessary because different systems may use different character sets or encoding schemes to represent text. For example, a text ...


21: Indexer des documents dans Elasticsearch avec elasticsearch-php

https://www.mon-code.net/article/167/indexer-des-documents-dans-elasticsearch-avec-la-librairie-elasticsearch-php

Humancoders ()

Indexer des documents dans Elasticsearch avec la librairie elasticsearch-php dans le context d'un projet symfony Commentaires L'article Indexer des documents dans Elasticsearch avec elasticsearch-php a été posté dans la catégorie PHP de Human Coders News


22: Sécurité des applications cloud via le réseau avec Cilium & eBPF | Live Meetup avec Raphaël Pinson

https://lydra.fr/securite-des-applications-cloud-via-le-reseau-avec-cilium-ebpf-live-meetup-avec-raphael-pinson

Humancoders ()

Tout ce que tu dois savoir pour protéger tes applications dans le cloud !   ' Si tu as envie de participer aux prochains Lives Meetup en direct inscrit toi aux Compagnons du DevOps : https://www.compagnons-devops.fr As-tu déjà été confronté à des problèmes de sécurité avec tes applications cloud natives ' Commentaires L'article Sécurité des applications cloud via le réseau avec Cili [...]


23: Kick-start your Web Development Journey

https://mohdahsanrazakhan.hashnode.dev/kick-start-your-web-development-journey

Hashnode - javascript (Javascript)

This is a complete list of free resources to kick-start your web development journey. In this blog, you will be going to know how much should I learn from HTML, CSS, and JavaScript. Lot of people who what to make their career in the field of web deve...


24: Chakra UI: The Best Kept Secret in Web Development

https://nitinfab.hashnode.dev/chakra-ui-the-best-kept-secret-in-web-development

Hashnode - javascript (Javascript)

When it comes to building modern, responsive, and user-friendly web applications, choosing the right CSS framework is crucial. Bootstrap, Material-UI, TailwindCSS, and Chakra UI are popular options, but each has unique features and benefits. Chakra U...


25: Know the Maturity Level of your RESTAPI

https://lennyaiko.hashnode.dev/know-the-maturity-level-of-your-restapi

Hashnode - python (python)

Recently, I was working on a FastAPI project; I got the idea from the "Real Python" website. While doing my studies on the project, I came across this model. So I thought I'd take a stab at my brainchild and talk about this. Leonardo Richardson propo...


26: Basics of Python-9

https://priyachakraborty.hashnode.dev/basics-of-python-day-9

Hashnode - python (python)

Day-9 Loops : Loops are the controlled structure in the program. There are 2 types of loops in python programming. For loop While loop FOR LOOP : For loop is used to iterate a sequence of data items. let's solve a problem on for loop : a. Write ...


27: Building an Art Gallery App with Flutter & Riverpod 2.0 (Part I)

https://blog.sabiasoftware.com/building-an-art-gallery-app-with-flutter-riverpod-20-part-i

Hashnode - Flutter (Flutter)

Notes This post is meant for those with an intermediate understanding of the Flutter UI toolkit and state management. For more information on how to get started, refer to the Flutter docs. This will be a brief project overview and will be expanded up...


28: How to Avoid Ransomware Attacks'

https://www.smashingapps.com/how-to-avoid-ransomware-attacks/

Smashing apps (Internet / Design)

Are you worried about ransomware attacks and how they could affect your online security' With […]


29: Catch up on JavaScript 3: Clack, ipx, smtp-tester, and much more

https://marcin-codes.hashnode.dev/catch-up-on-javascript-3-clack-ipx-smtp-tester-and-much-more

Hashnode - javascript (Javascript)

Clack Elegant CLI primitives and ready-to-use CLI components. ipx Ever wanted to create an endpoint for manipulating images' It's easy with the package below. smtp-tester SMTP Tester creates the SMTP server locally you can use to send e-mails durin...


30 / 150

30: Integrating the WhatsApp Business Platform with HubSpot

https://developers.facebook.com/blog/post/2023/03/13/whatsapp-hubspot-integration/

Facebook dev. (PHP)

A guide on connecting WhatsApp Business Platform and Hubspot to automate sending and receiving messages based actions taken by customers.


32: Creating Venn Diagrams with JavaScript and Tolkien

https://anychart.hashnode.dev/creating-venn-diagrams-with-javascript-and-tolkien

Hashnode - javascript (Javascript)

Humans are visual beings, and charts are widely used to boost the UX when it comes to showing a lot of information. Take Venn diagrams, for example, which are great at displaying commonalities and differences between several sets of items. And it's p...


33: JavaScript Prototyping: The Key to Bringing Your Ideas to Life

https://bharatg.io/javascript-prototyping-the-key-to-bringing-your-ideas-to-life

Hashnode - javascript (Javascript)

JavaScript is a powerful programming language that allows developers to create interactive and dynamic websites. One of the most important features of JavaScript is its ability to use prototypes. Prototypes are objects that act as blueprints for othe...


34: How to use Zustand's persist middleware in Next.js

https://blog.abdulsamad.dev/how-to-use-zustands-persist-middleware-in-nextjs

Hashnode - javascript (Javascript)

In this article, we'll discuss the common error that arises when using Zustand's persist middleware with Next.js. You might have received errors like "Text content does not match server-rendered HTML", "Hydration failed because the initial UI does no...


35: We're hiring!

https://blog.datawrapper.de/hiring-support-wordpress-full-stack/

Data Wrapper ()

We're hiring a senior full-stack developer, freelance WordPress developer, and customer success specialist.


36: How to draw SEA URCHIN

https://feeds.feedblitz.com/~/730994429/0/tanglepatterns~How-to-draw-SEA-URCHIN.html

TanglePatterns (Zentangle)

Online instructions for drawing Loretta Botticini's Zentangle® pattern: Sea Urchin. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


37: Creating CSS masonry-style layouts

https://blog.logrocket.com/creating-css-masonry-style-layouts/

Log Rocket blog (Web 2)

Let's explore the experimental CSS grid masonry layout and how to replicate this layout while browser support remains limited. The post Creating CSS masonry-style layouts appeared first on LogRocket Blog.


38: Les start-up crypto en voie de débancarisation avec la fermeture de Signature Bank

https://www.usine-digitale.fr/article/les-start-up-crypto-en-voie-de-debancarisation-avec-la-fermeture-de-signature-bank.N2110501

L'usine-digitale (Informatique)

Les régulateurs américains ont fermé Signature Bank, dont une partie significative des clients font partie du secteur de la crypto, en raison des risques de contagion à la suite des faillites de SVB et Silvergate. Contagion qui montre que malgré tout, ces acteurs sont très dépendants des transactions en dollars.


39: Kotlin is `fun` - Function types, lambdas, and higher-order functions

https://blog.derlin.ch/kotlin-is-fun-function-types-lambdas-and-higher-order-functions

Hashnode - Kotlin (Mobiles)

Kotlin treats functions as first-class citizens. First-class means functions can be stored in variables and data structures and can be passed as arguments to and returned from other functions (higher-order functions). This is one of the idioms of fun...


40 / 150

40: DuckDuckGo : le Google confidentiel adopte ChatGPT, tout savoir sur DuckAssist

https://www.lebigdata.fr/duckassist-duckduckgo

Le Big Data (dataviz)

DuckDuckGo, le moteur de recherche axé sur la confidentialité, annonce une première incursion dans l'IA avec le lancement de DuckAssist. … Cet article DuckDuckGo : le Google confidentiel adopte ChatGPT, tout savoir sur DuckAssist a été publié sur LeBigData.fr.


41: Longest Consecutive Sequence - LeetCode Problem

https://blog.eyucoder.com/longest-consecutive-sequence-leetcode-problem

Hashnode - python (python)

Problem Description In "Longest Consecutive Sequence" we are given an unsorted array of integers, to find the length of the longest consecutive elements sequence. For example, given [100, 4, 200, 1, 3, 2], the longest consecutive elements sequence is...


42: Map: Oil and Gas Spills in the U.S. Since 2010

https://www.visualcapitalist.com/cp/map-oil-and-gas-spills-in-the-u-s-since-2010/

Visual Capitalist (dataviz)

Oil and gas spills can be messy, but where are they most likely to occur' This graphic looks at oil and gas spills in the U.S. since 2010. The post Map: Oil and Gas Spills in the U.S. Since 2010 appeared first on Visual Capitalist.


43: Product of Array Except Self - LeetCode Problem

https://blog.eyucoder.com/product-of-array-except-self-leetcode-problem

Hashnode - python (python)

Problem Description The "Product of Array Except Self" problem statement is as follows: Given an array of integers, return an array where each element is the product of all the elements in the original array except for the one at its index. Solution ...


44: Top K Frequent Elements - LeetCode Problem

https://blog.eyucoder.com/top-k-frequent-elements-leetcode-problem

Hashnode - python (python)

Problem Description In the "Top K Frequent Elements - LeetCode Problem" question, we are given an array of integers and an integer k. Our task is to find the k most frequent elements in the array. If there are multiple elements with the same frequenc...


45: La faillite de la Silicon Valley Bank ébranle l'écosystème des start-ups

https://www.lemondeinformatique.fr/actualites/lire-la-faillite-de-la-silicon-valley-bank-ebranle-l-ecosysteme-des-start-ups-89811.html

Le monde informatique (Internet / Informatique)

Après le séisme, les marchés s'inquiètent d'éventuelles répliques ou d'une contagion. L'origine du drame a pour (...)


46: Two Sum - LeetCode Problem

https://blog.eyucoder.com/two-sum-leetcode-problem

Hashnode - python (python)

Problem Description A classic LeetCode question called "Two Sum". The problem is simple: given an array of integers and a target integer, return the indices of two numbers in the array that add up to the target. Sounds easy, right' Let's dive in! Sol...


47: WebScrapping using BeautifulSoup

https://vicmode.hashnode.dev/webscrapping-using-beautifulsoup

Hashnode - python (python)

Web scraping is the process of extracting data from websites, which can be a very useful technique for obtaining large amounts of data quickly and efficiently. In this blog, we will explore how to write a web scraper in Python using the requests and ...


48: WebScrapping using BeautifulSoup library, then storing the data in MongoDB

https://vicmode.hashnode.dev/webscrapping-using-beautifulsoup-library-then-storing-the-data-in-mongodb

Hashnode - python (python)

Web scraping is the process of extracting data from websites, which can be a very useful technique for obtaining large amounts of data quickly and efficiently. In this blog, we will explore how to write a web scraper in Python using the requests and ...


49: Cybermatinée Sécurité Lille 2023 : témoignages de Jules, Sergic et l'ESGI Lille

https://www.lemondeinformatique.fr/actualites/lire-cybermatinee-securite-lille-2023-temoignages-de-jules-sergic-et-l-esgi-lille-89812.html

Le monde informatique (Internet / Informatique)

Pour la 6e année consécutive, la rédaction du Monde Informatique est très heureuse de vous retrouver en région à (...)


50 / 150

50: General Motors planche sur un assistant vocal dopé à ChatGPT

https://www.usine-digitale.fr/article/general-motors-planche-sur-un-assistant-vocal-dope-a-chatgpt.N2110486

L'usine-digitale (Informatique)

General Motors travaille à l'amélioration de l'assistant vocal de ses véhicules grâce à l'intégration des modèles d'OpenAI. Un partenariat construit sur la base de ses accords existants avec Microsoft.


51: map() and set() in JavaScript

https://veersen2001.hashnode.dev/map-and-set-in-javascript

Hashnode - javascript (Javascript)

In JavaScript, map() and set() are two commonly used functions that are used to perform operations on collections of data. While they have some similarities, they have different use cases and functionality. In this article, we will explore the differ...


52: Day 64.

https://mycodediary.hashnode.dev/day-64

Hashnode - javascript (Javascript)

Q. I don't get why the lesson tells me to make a function that loops through the array. What I mean is, shouldn't it be functionality that adds one book at a time' There shouldn't be a button that loops through the array and display all the book name...


53: Exportation de puces vers la Chine : les États-Unis renforcent les sanctions, l'Europe réfléchit

https://www.usine-digitale.fr/article/chine.N2110466

L'usine-digitale (Informatique)

Washington va augmenter le nombre de machines de production ne pouvant pas être exportées vers la Chine. L'Europe, elle, cherche une position commune.


54: Set up a Turborepo Monorepo with Vite, Typescript, Tailwind, Express, and React/Vue

https://blog.abrocadabro.com/set-up-a-turborepo-monorepo-with-vite-typescript-tailwind-express-and-react-vue

Hashnode - vuejs (Javascript)

Set up a Turoborepo monorepo for an Express back end and a React or Vue front end using TailwindCSS. Both backend and frontend are set up with Vite and Typescript. If you'd like to skip the instructions and just download the code, you can find it her...


55: Agile transformation: Roadmap, challenges, and frameworks

https://blog.logrocket.com/product-management/agile-transformation-roadmap-challenges-frameworks/

Log Rocket blog (Web 2)

For organizations that weren't 'born agile,' undergoing an agile transformation is no longer optional but critical to remain in the game. The post Agile transformation: Roadmap, challenges, and frameworks appeared first on LogRocket Blog.


56: How to design and conduct a UX survey

https://blog.logrocket.com/ux-design/design-conduct-ux-survey/

Log Rocket blog (Web 2)

Learn how to design a UX survey and some tools you can use in the UX survey process to improve your survey skills. The post How to design and conduct a UX survey appeared first on LogRocket Blog.


57: Microsoft may replace Bing Search answers with Bing Chat responses

https://searchengineland.com/microsoft-may-replace-bing-search-answers-with-bing-chat-responses-394212

Search engine land (Référencement)

Plus, Bing Chat has passed 100 million daily active users. The post Microsoft may replace Bing Search answers with Bing Chat responses appeared first on Search Engine Land.


58: Ils font la CyberSécurité | Guillaume CELOSIA (SQUAD)

https://www.lebigdata.fr/ils-font-la-cybersecurite-guillaume-celosia-squad

Le Big Data (dataviz)

Dans le cadre de notre dossier 'Ils font la cybersécurité', Guillaume CELOSIA (consultant en cybersécurité industrielle pour le compte de … Cet article Ils font la CyberSécurité | Guillaume CELOSIA (SQUAD) a été publié sur LeBigData.fr.


59: Microsoft Doctor and Clinic ads are now in open beta

https://searchengineland.com/microsoft-doctor-and-clinic-ads-are-now-in-open-beta-394211

Search engine land (Référencement)

Interested advertisers or healthcare professionals can join the open beta by contacting their Microsoft rep. The post Microsoft Doctor and Clinic ads are now in open beta appeared first on Search Engine Land.


60 / 150

60: Simplify Python Logging with Loguru

https://mathdatasimplified.com/2023/03/13/simplify-python-logging-with-loguru/

Math Data Simplified (data)

Are you struggling with the complexity of configuring a logger object before logging in Python' With Loguru, you can skip this step and use the logger object directly with pre-built color and format settings. Loguru also offers other features such as descriptive exceptions, lazy evaluation, asynchronous logging, and more. Link to loguru. My previous tips ... Read more The post Simplify Python Logg [...]


61: Cancer du poumon : l'intelligence artificielle capable de prédire le cancer 6 ans à l'avance

https://www.rtflash.fr/cancer-poumon-l-intelligence-artificielle-capable-predire-cancer-6-ans-l-avance/article

Tregouet.org ()

Le combat contre le cancer du poumon s'annonce assurément technologique. Connu comme l'un des plus meurtriers, ce cancer est très difficile à détecter de manière précoce avant l'apparition des symptômes. En février 2022, La Haute autorité de la santé (HAS) avait recommandé la mise en place d'une expérimentation à petite échelle du dépistage du cancer du poumon chez les fumeurs. [...]


62: La communication ultrarapide grâce aux métadispositifs électroniques

https://www.rtflash.fr/communication-ultrarapide-grace-metadispositifs-electroniques/article

Tregouet.org ()

Jusqu'à aujourd'hui, la capacité de fabriquer des dispositifs électroniques plus rapides s'est résumée à un principe simple : réduire la taille des transistors et des autres composants. Mais cette approche atteint ses limites car les avantages de la miniaturisation sont contrebalancés par des inconvénients comme la résistance et la diminution de la puissance de sortie. [...]


63: Inverser la perte auditive grâce à la génétique

https://www.rtflash.fr/inverser-perte-auditive-grace-genetique/article

Tregouet.org ()

Les cellules ciliées cochléaires, des cellules primaires qui sont nécessaires à nos oreilles pour détecter les ondes sonores et les transmettre au système nerveux central, ne peuvent pas se régénérer quand elles sont endommagées ou perdues. C'est souvent la réduction de leur nombre, de façon progressive au cours du temps, qui provoque la perte auditive. Les personnes exposées régulià [...]


64: Une molécule pour rendre la vue après une lésion du nerf optique

https://www.rtflash.fr/molecule-pour-rendre-vue-apres-lesion-nerf-optique/article

Tregouet.org ()

Une lésion du nerf optique peut concerner le système nerveux central. Dans ce cas, avec les lésions traumatiques du cerveau et celles de la moelle épinière, elles font partie de la principale cause d'invalidité et la deuxième cause de décès dans le monde. Les patients atteints doivent alors vivre avec des pertes des fonctions sensorielles, motrices et visuelles. Les scientifiques auraient [...]


65: Next.js 13: The Ultimate Guide to the Latest and Greatest Features of the React Framework

https://nesatnayem.hashnode.dev/nextjs-13-the-ultimate-guide-to-the-latest-and-greatest-features-of-the-react-framework

Hashnode - javascript (Javascript)

Have you ever wondered how to build fast, scalable, and user-friendly web applications with React' If so, you might have heard of Next.js, a popular framework that provides many features and benefits for React developers. But did you know that Next.j...


66: Une nouvelle technique de modification du bois le rend plus solide et lui permet d'absorber du CO2

https://www.rtflash.fr/nouvelle-technique-modification-bois-rend-plus-solide-et-lui-permet-d-absorber-co2/article

Tregouet.org ()

Le dioxyde de carbone fait partie des facteurs fondamentaux à l'origine du changement climatique. Limiter les émissions de gaz carbonique est donc un moyen pour lutter contre ce fléau qui touche actuellement notre planète. Des scientifiques du Rice University au Texas ont inventé une méthode qui pourrait aider à réduire le CO2 dans l'atmosphère en le capturant dans les matà [...]


67: Le plasma froid, une méthode prometteuse pour convertir de CO2 en méthane

https://www.rtflash.fr/plasma-froid-methode-prometteuse-pour-convertir-co2-en-methane/article

Tregouet.org ()

Encore une application pour le plasma froid ! Ce quatrième état de la matière au côté des états gazeux, solide et liquide, s'obtient en soumettant un gaz à un champ électrique formant ainsi une sorte de 'soupe' capable de produire de l'énergie. Il en existe de nombreux types dont certains très chauds composent les c'urs des étoiles. Le plasma en soi n'est pas capable de produire de [...]


68: How to successfully scale your content marketing and grow traffic

https://searchengineland.com/scale-content-marketing-grow-traffic-394186

Search engine land (Référencement)

Scaling content marketing involves having the right strategy, team and workflows in place. Here's a three-step guide on how to do just that. The post How to successfully scale your content marketing and grow traffic appeared first on Search Engine Land.


69: Ce jeu d'aventure cyberpunk en Open World débarque sur le PSVR 2 cette année

https://www.realite-virtuelle.com/low-fi-aventure-cyberpunk-open-world-psvr-2/

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

IRIS VR, le studio indépendant connu pour l’aventure cyberpunk Technolust (2016), vient de faire une […] Cet article Ce jeu d’aventure cyberpunk en Open World débarque sur le PSVR 2 cette année a été publié sur Réalité-Virtuelle.com.


70 / 150

70: Mapped: Legal Sports Betting Totals by State

https://www.visualcapitalist.com/legal-sports-betting-totals-by-state/

Visual Capitalist (dataviz)

In 2022, legal sports betting in the U.S. totaled over $93 billion. Which states saw the most and least wagers' (Sponsored post) The post Mapped: Legal Sports Betting Totals by State appeared first on Visual Capitalist.


71: Why we should not use 'var' keyword in JavaScript

https://sagarcoding.hashnode.dev/why-we-should-not-use-var-keyword-in-javascript

Hashnode - javascript (Javascript)

Hello reader, I hope you are doing fine. So before we jump into the "why we should not use the 'var' keyword in JavaScript", Let's recall what is a scope in JavaScript. What is Scope' When we are talking about scope, we are talking in the context of ...


72: Developing a Django Web API using Django REST framework: from model creation to testing

https://vmartynov.hashnode.dev/developing-a-django-web-api-using-django-rest-framework-from-model-creation-to-testing

Hashnode - python (python)

Django REST framework (DRF) is a powerful and flexible tool for creating Web APIs based on Django. It provides convenient tools for creating RESTful APIs, supports authentication, authorization, serialization, validation, and other features. In this ...


73: Making Calendars With Accessibility and Internationalization in Mind

https://css-tricks.com/making-calendars-with-accessibility-and-internationalization-in-mind/

css-tricks (CSS)

Doing a quick search here on CSS-Tricks shows just how many different ways there are to approach calendars. Some show how CSS Grid can create the layout efficiently. Some attempt to bring actual data into the mix. Some … Making Calendars With Accessibility and Internationalization in Mind originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsle [...]


74: Le ransomware IceFire mute pour cibler les environnements Linux

https://www.lemondeinformatique.fr/actualites/lire-le-ransomware-icefire-mute-pour-cibler-les-environnements-linux-89810.html

Le monde informatique (Internet / Informatique)

La division de recherche SentinelLabs de l'éditeur Sentinel One a identifié une version Linux du ransomware IceFire, Celui-ci exploite (...)


75: Kubernetes Important Interview Questions: What You Need to Know

https://devopsknowledge.hashnode.dev/kubernetes-important-interview-questions-what-you-need-to-know

Hashnode - javascript (Javascript)

Introduction: Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications. It was initially developed by Google and is now maintained by the Cloud Native Computing...


76: Top 30 Javascript |Basic questions | For Interview

https://shiv.reality/top-30-javascript-basic-questions-for-interview

Hashnode - javascript (Javascript)

What is JavaScript' JavaScript is a high-level programming language used for creating dynamic and interactive web pages. What is the difference between JavaScript and Java' JavaScript and Java are completely different languages. Java is an object-...


77: 10 productivity tips to be a more efficient product manager

https://blog.logrocket.com/product-management/10-productivity-tips-to-be-a-more-efficient-product-manager/

Log Rocket blog (Web 2)

Optimizing one's personal productivity is essential to strive as a product manager. Every one percent improvement counts tremendously. The post 10 productivity tips to be a more efficient product manager appeared first on LogRocket Blog.


78: Mastering Android App Performance: Analyzing Bottlenecks with Perfetto '

https://blog.shreyaspatil.dev/mastering-android-app-performance-analyzing-bottlenecks-with-perfetto

Hashnode - Kotlin (Mobiles)

Hello Android-ers ', after developing an application, we are mostly invested in improving the performance of the application and finding out the issues in the existing application that might be causing performance issues in the application. But find...


79: The best Node.js web scrapers for your use case

https://blog.logrocket.com/best-node-js-web-scrapers-use-case/

Log Rocket blog (Web 2)

In this article, you'll learn about some of the best Node.js web scraping libraries and techniques for using them. The post The best Node.js web scrapers for your use case appeared first on LogRocket Blog.


80 / 150

80: An SEO guide to understanding E-E-A-T

https://searchengineland.com/google-e-e-a-t-guide-seo-394191

Search engine land (Référencement)

Dig deeper into E-E-A-T ' specifically what it means, why it matters to SEO, and tips to use it to your advantage. The post An SEO guide to understanding E-E-A-T appeared first on Search Engine Land.


81: Isekai : tout savoir sur ce type populaire de manga japonais

https://www.realite-virtuelle.com/isekai-tout-savoir/

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

Certains ignorent ce que représente réellement le mot Isekai, même s’ils savent qu'il signifie « autre […] Cet article Isekai : tout savoir sur ce type populaire de manga japonais a été publié sur Réalité-Virtuelle.com.


82: Top 10 des applications les plus téléchargées sur mobile

https://www.lebigdata.fr/top-applications-mobile

Le Big Data (dataviz)

Ce classement des top applications mobile est basé sur les téléchargements de l’App Store d’Apple et de Google Play. Découvrez … Cet article Top 10 des applications les plus téléchargées sur mobile a été publié sur LeBigData.fr.


83: DevOps: The Missing Piece Of The SaaS Development Puzzle

https://www.noupe.com/business-online/devops-the-missing-piece-of-the-saas-development-puzzle.html

Noupe (conception)

In order to build great SaaS products, development teams need to work efficiently and with minimal delays. In today's development environment, a lot of complexity is involved like scope creep and miscommunications on requirements. DevOps is an efficient set of software development and deployment processes that facilitate communication and collaboration between software developers and IT..& [...]


84: Optimizing JavaScript Performance and Reducing Load Times: Techniques and Best Practices

https://blog.lorandtech.com/optimizing-javascript-performance-and-reducing-load-times-techniques-and-best-practices

Hashnode - javascript (Javascript)

Optimizing JavaScript performance and reducing load times is an important aspects of web development. Here are some techniques that can help improve the performance and load times of your JavaScript applications: Minify and uglify your code: Minific...


85: SXSW 2023 : Amy Webb prévoit la grande "IASMOSE"

https://www.meta-media.fr/2023/03/13/sxsw-2023-amy-webb-prevoit-la-grande-iasmose.html

Meta Media (Internet)

Les métavers et autres Web3 décentralisés ne sont finalement que des badineries (ou des supports) qui cachent l'"éléphant dans la pièce" revenu sur le devant de la scène cette année : l'Intelligence Artificielle. Quand, en 2017, Amy Webb ne parlait que de la menace de la distribution de contenu par... The post SXSW 2023 : Amy Webb prévoit la grande "IASMOSE" first appeared on Meta-media | [...]


86: Voici un nouveau jeu VR fascinant qui se joue avec vos pieds

https://www.realite-virtuelle.com/nouveau-jeu-vr-dance-dash/

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

Vous avez apprécié les séries de jeux vidéo Dance Dance Revolution ' Similaire à celui-ci, le […] Cet article Voici un nouveau jeu VR fascinant qui se joue avec vos pieds a été publié sur Réalité-Virtuelle.com.


87: Comcyber ouvre un concours de hack pour des lycéens d'Ile-de-France

https://www.lemondeinformatique.fr/actualites/lire-comcyber-ouvre-un-concours-de-hack-pour-des-lyceens-d-ile-de-france-89809.html

Le monde informatique (Internet / Informatique)

Dans l'IT, les initiatives se succèdent afin d'orienter les jeunes générations vers des carrières en tension. Dernière (...)


88: Basic Information in HTML for beginners ( web development ). What is HTML'

https://robinsingh987.hashnode.dev/basic-information-in-html-for-beginners-web-development-what-is-html

Hashnode - javascript (Javascript)

HTML ( Hypertext Markup Language) is a language used to create structured content on the web. HTML is the standard language that is used for creating webpages and web applications. Every time you access a website, a server sends an HTML file to your ...


89: Mastering JavaScript Arrays: Your Essential Guide to map(), filter(), reduce(), and More!

https://aaqibjavaid.hashnode.dev/mastering-javascript-arrays-your-essential-guide-to-map-filter-reduce-and-more

Hashnode - javascript (Javascript)

Introduction JavaScript arrays are a powerful tool for storing and manipulating data. They allow you to group related data together in a single place and perform a wide range of operations on that data. However, working with arrays in JavaScript can ...


90 / 150

90: API ChatGPT : comment l'utiliser pour créer vos propres applis ' Le guide complet

https://www.lebigdata.fr/api-chatgpt-comment-utiliser

Le Big Data (dataviz)

L'API ChatGPT est disponible ! Découvrez comment l'utiliser pour créer votre propre chatbot IA personnalisé basé sur le modèle gpt-3.5-turbo … Cet article API ChatGPT : comment l’utiliser pour créer vos propres applis ' Le guide complet a été publié sur LeBigData.fr.


91: Project: Automating AWS Resource Tracking with Shell Scripting and AWS CLI

https://sumanprasad.hashnode.dev/project-automating-aws-resource-tracking-with-shell-scripting-and-aws-cli

Hashnode - python (python)

' Introduction: In today's rapidly evolving world, organizations are constantly seeking ways to improve their operations and stay ahead of the competition. One of the ways they are doing this is by moving their operations to the cloud and automating...


92: Data Types In JavaScript

https://shivankkapur.hashnode.dev/data-types-in-javascript

Hashnode - javascript (Javascript)

INTRODUCTION There are two types of Data Types available in JavaScript: Primitive Data Type Non-Primitive Data Type PRIMITIVE DATA TYPE Primitive Data Type refers to the Data Type in which data doesn't contain any object or method. For example- N...


93: AT&T alerte sur une violation de données touchant 9 millions de clients

https://www.lemondeinformatique.fr/actualites/lire-atett-alerte-sur-une-violation-de-donnees-touchant-9-millions-de-clients-89806.html

Le monde informatique (Internet / Informatique)

AT&T a informé ses clients d'une violation de données dans le système d'un fournisseur qui a permis aux pirates d'accéder (...)


94: Learn Linux TV Releases Ubuntu Flatpak Remix Distro

https://www.webpronews.com/learn-linux-tv-releases-ubuntu-flatpak-remix-distro/

WebProNews SEO (Développement)

WebProNews Learn Linux TV Releases Ubuntu Flatpak Remix Distro Jay from the Learn Linux TV YouTube channel has released an Ubuntu-based distro built around Flatpaks. Learn Linux TV Releases Ubuntu Flatpak Remix Distro Matt Milano


95: La BCE va tester la résistance des banques aux cyberattaques

https://www.usine-digitale.fr/article/bce.N2110406

L'usine-digitale (Informatique)

Les 111 établissements bancaires de l'Union européenne seront soumis à des tests de résistance pour déterminer leur capacité à répondre à une attaque informatique.


96: Bing ChatGPT : accès, limites, 5 choses qui ont changé depuis mars

https://www.blogdumoderateur.com/bing-chatgpt-changements-mars-2023/

Blog du Moderateur ()

Microsoft continue de travailler sur son nouveau Bing à la ChatGPT. Voici les derniers changements !


97: Wish condamné à 3 millions d'euros d'amende pour fausses promotions

https://www.usine-digitale.fr/article/wish-condamne-a-3-millions-d-euros-d-amende-pour-fausses-promotions.N2110391

L'usine-digitale (Informatique)

Nouveau coup dur pour Wish. Après son déréférencement en France, confirmé il y a quelques mois, l'entreprise américaine de e-commerce a été condamnée à une amende de trois millions d'euros par le tribunal correctionnel de Paris pour avoir pratiqué de faux rabais.


98: SAP revend ses parts dans Qualtrics pour 7,7 milliards de dollars

https://www.usine-digitale.fr/article/sap-revend-ses-parts-dans-qualtrics-pour-7-7-milliards-de-dollars.N2110376

L'usine-digitale (Informatique)

Le géant allemand du logiciel se sépare de sa filiale cotée Qualtrics, spécialisée dans la gestion de l'expérience client, dans le cadre de sa restructuration. La transaction, réalisée auprès de deux fonds d'investissement, valorise l'entreprise 12,5 milliards de dollars.


99: Faillite de la Silicon Valley Bank : quels risques pour le secteur de la tech '

https://www.blogdumoderateur.com/faillite-silicon-valley-bank/

Blog du Moderateur ()

La banque a fait les frais de retraits d'argent massifs de ses clients.


100 / 150

100: L'IA générative intègre les priorités technologiques des DSI

https://www.lemondeinformatique.fr/actualites/lire-l-ia-generative-integre-les-priorites-technologiques-des-dsi-89805.html

Le monde informatique (Internet / Informatique)

Emmenée par ChatGPT, la vague de l'IA générative s'est déjà invitée parmi les priorités des DSI, malgré (...)


101: L'open source ne se résume pas aux coûts

https://www.lemondeinformatique.fr/actualites/lire-l-open-source-ne-se-resume-pas-aux-couts-89803.html

Le monde informatique (Internet / Informatique)

Le coût, mais pas uniquement. La Linux Foundation vient de dévoiler une étude sur la valeur économique de l'open source. Placée (...)


102: Inspur sous le coup des sanctions américaines

https://www.lemondeinformatique.fr/actualites/lire-inspur-sous-le-coup-des-sanctions-americaines-89807.html

Le monde informatique (Internet / Informatique)

Selon un article de Bloomberg, les États-Unis prennent des mesures pour combler une faille dans les restrictions imposées au fabricant (...)


103: La Poste lorgne sur IN Groupe ( ex Imprimerie nationale)

https://www.lemondeinformatique.fr/actualites/lire-la-poste-lorgne-sur-in-groupe-ex-imprimerie-nationale-89808.html

Le monde informatique (Internet / Informatique)

Les choses bougent dans le domaine de l'identité numérique avec une opération capitalistique en vue pour la Poste. Selon nos (...)


104: Pourquoi ChatGPT constitue un risque pour les entreprises '

https://www.lebigdata.fr/chatgpt-risque-fuite-donnees

Le Big Data (dataviz)

Cyberhaven,  une société de cybersécurité californienne, a récemment publié un rapport sur l'utilisation de ChatGPT par les personnels d'une entreprise. … Cet article Pourquoi ChatGPT constitue un risque pour les entreprises ' a été publié sur LeBigData.fr.


105: 12 Awesome Pre-built Affordable Websites for Small Businesses

https://www.hongkiat.com/blog/prebuilt-affordable-websites-small-businesses/

Hongkiat - Wordpress (wordpress)

It is pretty common for small business owners to be on a tight budget. And while there are some areas of your business where you can cut corners, your website is not one of them. Some people will say you need to spend thousands of dollars on a website if you want it to look… The post 12 Awesome Pre-built Affordable Websites for Small Businesses appeared first on Hongkiat.


106: Le CHU de Reims victime d'une cyberattaque

https://www.usine-digitale.fr/article/le-chu-de-reims-victime-d-une-cyberattaque.N2110326

L'usine-digitale (Informatique)

L'établissement hospitalier fonctionne en "mode dégradé". Il assure cependant n'avoir identifié aucune fuite de données.


107: Le CHU de Brest victime d'une cyberattaque

https://www.usine-digitale.fr/article/le-chu-de-brest-victime-d-une-cyberattaque.N2110326

L'usine-digitale (Informatique)

L'établissement hospitalier fonctionne en "mode dégradé". Il assure cependant n'avoir identifié aucune fuite de données.


108: Protège ton back-office avec un préfixe unique

https://www.rubybiscuit.fr/p/protege-ton-back-office-avec-un-prefixe

Humancoders ()

Si tu utilises Active Admin, Rails Admin, Administrate ou si tout simplement si tu as un back-office sur ton application Rails alors il faut le rendre secret. Parce que, oui, utiliser la route /admin pour ton back-office, c'est presque du même niveau qu'utiliser Commentaires L'article Protège ton back-office avec un préfixe unique a été posté dans la catégorie Ruby de Human Coders News


109: Packager son code python

https://blog-h4c5.vercel.app/docs/python/packaging-python

Humancoders ()

Introduction à pyproject.toml et setuptools pour packager son code python. Commentaires L'article Packager son code python a été posté dans la catégorie Python de Human Coders News


110 / 150

110: Webinar : développer son employabilité en marketing et transformation digitale en régions

https://www.blogdumoderateur.com/webinar-developper-employabilite-marketing-transformation-digitale-regions/

Blog du Moderateur ()

Ne manquez pas le prochain webinar de l'EFAP pour obtenir toutes les clés afin de réussir votre projet professionnel dans les régions de Bordeaux, Lille et Lyon.


111: Introduction to Web Audio API

https://dyte-io.hashnode.dev/introduction-to-web-audio-api

Hashnode - javascript (Javascript)

A critical part of WebRTC is the transmission of audio. Web Audio API is all about processing and synthesizing audio in web applications. It allows developers to create complex audio processing and synthesis using a set of high-level JavaScript objec...


112: Bank Failures in the United States, Since 2001

https://flowingdata.com/2023/03/13/bank-failures-in-the-united-states-since-2001/

Flowing data (dataviz)

These are all the failures since 2001, scaled by amount of assets in 2023 dollars.Tags: banks, FDIC


113: Après la chute de Silicon Valley Bank, la Réserve fédérale vole au secours des start-up américaines

https://www.usine-digitale.fr/article/apres-la-chute-de-silicon-valley-bank-la-reserve-federale-vole-au-secours-des-start-up-americaines.N2110301

L'usine-digitale (Informatique)

Suite à la chute de Silicon Valley Bank, la Réserve fédérale des Etats-Unis va garantir l'ensemble des dépôts des clients de la banque. Un soulagement pour de nombreuses start-up qui auraint pu rapidement se retrouver en difficulté.


114: Let's build a Collapsible Accordion

https://dhawalpandya01.hashnode.dev/lets-build-a-collapsible-accordion

Hashnode - javascript (Javascript)

Let's build a collapsible accordion in ReactJS. Accordions are a great way to display a large amount of content in a limited space. They allow the user to show and hide content by clicking on the header of each section. In this article, we will be cr...


115: Méthode CROC : un plan efficace pour réussir vos appels clients

https://www.blogdumoderateur.com/methode-croc-reussir-appels-clients/

Blog du Moderateur ()

Tout savoir sur la méthode CROC, une technique qui permet d'être plus efficace lors de sessions de prospection téléphonique.


116: TikTok s'engage à stocker les données en Europe : qu'est-ce que ça va changer '

https://www.lebigdata.fr/tiktok-donnees-europe

Le Big Data (dataviz)

TikTok annonce son initiative pour stocker les données des utilisateurs en Europe, afin de renforcer la protection de leurs informations … Cet article <strong>TikTok s'engage à stocker les données en Europe : qu'est-ce que ça va changer '</strong> a été publié sur LeBigData.fr.


117: 10 Super Useful Tweaks for Squarespace Websites

https://www.noupe.com/design/super-useful-tweaks-for-squarespace-websites.html

Noupe (conception)

An eye-catching and beautiful website is more likely to entice web visitors to stick around, find out about your products and services, and, most importantly, encourage them to convert. If you manage a Squarespace site, you might be wondering how you can enhance your images, add vivid fonts, and improve your overall web design to... The post 10 Super Useful Tweaks for Squarespace Websi [...]


118: What is Algorithmic Efficiency': An Introduction to Asymptotic Analysis.

https://tonie.hashnode.dev/what-is-asymptotic-analysis

Hashnode - python (python)

Algorithms are at the heart of computer science and programming. They are a set of instructions that a computer follows to perform a specific task. It's like a recipe that helps you bake a cake or cook a meal, but for computers. Just like there are d...


119: Shutterstock innove au rythme du cloud

https://www.lemondeinformatique.fr/actualites/lire-shutterstock-innove-au-rythme-du-cloud-89804.html

Le monde informatique (Internet / Informatique)

Lorsque vous stockez et diffusez des données à l'échelle de Shutterstock, la flexibilité et l'élasticité du cloud (...)


120 / 150

120: La Hollande restreint les exportations de lithographie vers la Chine

https://www.lemondeinformatique.fr/actualites/lire-la-hollande-restreint-les-exportations-de-lithographie-vers-la-chine-89800.html

Le monde informatique (Internet / Informatique)

Après les Etats-Unis, ce sont désormais les Pays-Bas qui entendent faire barrage à la Chine. Le gouvernement néerlandais devrait (...)


121: La Hollande restreint les exportations des technologies lithographiques vers la Chine

https://www.lemondeinformatique.fr/actualites/lire-la-hollande-restreint-les-exportations-des-technologies-lithographiques-vers-la-chine-89800.html

Le monde informatique (Internet / Informatique)

Après les Etats-Unis, ce sont désormais les Pays-Bas qui entendent faire barrage à la Chine. Le gouvernement néerlandais devrait (...)


122: Comment Juniper veut optimiser les réseaux de campus

https://www.lemondeinformatique.fr/actualites/lire-comment-juniper-veut-optimiser-les-reseaux-de-campus-89799.html

Le monde informatique (Internet / Informatique)

Pour contribuer à la simplification des réseaux de campus, Juniper vient configurer et gérer automatiquement les déploiements (...)


123: ChatGPT, le syndrome de la chaise vide pour l'Europe

https://www.lemondeinformatique.fr/actualites/lire-chatgpt-le-syndrome-de-la-chaise-vide-pour-l-europe-89781.html

Le monde informatique (Internet / Informatique)

En quelques semaines, ChatGPT a saturé l'espace médiatique. Drainé des millions d'utilisateurs (le cap des 100 millions a été (...)


124: Create REST API Using NodeJS and MongoDB

https://nyomansunima.hashnode.dev/create-rest-api-using-nodejs-and-mongodb

Hashnode - javascript (Javascript)

Ok, welcome to this article I just want to share how I make the REST API using NodeJS, MongoDB, and Express. In this article, you will learn how to create a basic CRUD API and then test the API using Hoopscotch.io. This content is just basically the ...


125: 10 Tips to Master HTML CSS and JavaScript in Record Time

https://webdevacademy.in/10-tips-to-master-html-css-and-javascript-in-record-time

Hashnode - javascript (Javascript)

In today's digital age, web development is a critical skill for individuals and businesses alike. Three core technologies make up the foundation of the web: HTML, CSS, and JavaScript. Mastery of these three languages can open up a world of possibilit...


126: Why Should we learn JavaScript

https://antarip.hashnode.dev/why-should-we-learn-javascript

Hashnode - javascript (Javascript)

About JavaScript JavaScript is one of the most popular programming languages in the world. It is a high-level, dynamic, and interpreted language that is primarily used to create interactive and responsive web pages. In recent years, JavaScript has ev...


127: Configurer le contrôle parental sur iOS

https://macternelle.fr/2023/03/13/configurer-le-controle-parental-sur-ios/

Macternelle (Formation / enfant)

Votre enfant est désormais suffisamment âgée pour être en mesure d'utiliser de manière autonome un iPhone ou un iPad. Cependant, cette autonomie ne doit pas se transformer en une totale liberté et il est souhaitable que vous gardiez un 'il sur leurs activités et leur durée d'utilisation quotidienne. Comment dès lors superviser cette utilisation sans … Lire la suite Configurer le con [...]


128: Meta dévoile les ventes de ses casques Quest

https://www.realite-virtuelle.com/ventes-casques-meta-quest/

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

La firme de Mark Zuckerberg Meta vient de donner un aperçu des ventes de ses […] Cet article Meta dévoile les ventes de ses casques Quest a été publié sur Réalité-Virtuelle.com.


129: Pourquoi les vidéos nues d'Emma Watson inondent Facebook et Instagram ' 

https://www.lebigdata.fr/videos-nues-emma-watson

Le Big Data (dataviz)

L’utilisation abusive de l’IA a permis la création de vidéos deepfake montrant Emma Watson dans des situations suggestives. Ces clips … Cet article <strong>Pourquoi les vidéos nues d’Emma Watson inondent Facebook et Instagram ' </strong> a été publié sur LeBigData.fr.


130 / 150

130: Understanding ROS Nodes & Topics

https://roboticsquest.io/understanding-ros-nodes-topics

Hashnode - python (python)

ROS (Robot Operating System) is a widely used open-source robotics middleware. It is a collection of software libraries and tools that help developers build complex robotics applications. ROS uses a distributed architecture, and the two main componen...


131: Le nouveau design des SERP desktop de Google est désormais en place

https://www.abondance.com/20230313-52205-le-nouveau-design-des-serp-desktop-de-google-est-desormais-en-place.html

Abondance (Référencement)

Désormais, les résultats de recherche desktop affichent de nouvelles informations, tout comme sur la version mobile : nom de site, favicon et mention 'sponsorisé'. Les utilisateurs pourront identifier plus facilement les sites web présents dans les SERP. Les 3 points à retenir : Ce qui change Si vous faites des recherches Google depuis votre smartphone, […] L'article "Le nouveau design [...]


132: Google Trends fait peau neuve

https://www.abondance.com/20230313-52170-google-trends-fait-peau-neuve.html

Abondance (Référencement)

Google Trends s'est offert un lifting ce 8 mars ! L'annonce a été faite directement sur le blog de Google. Découvrez dès maintenant à quoi ressemble la plateforme mise à jour, avec quelques nouvelles fonctionnalités : mises à jour toutes les heures, tendances en temps réel et liens directs. Le nouveau Google Trends La nouvelle […] L'article "Google Trends fait peau neuve" a été pu [...]


133: Map(),Reduce(),Filter(), Find() And How They Are Different in Nature

https://debashis99374.hashnode.dev/mapreducefilter-find-and-how-they-are-different-in-nature

Hashnode - javascript (Javascript)

Many people are confused about when to use Map() when to use Filter() and when to use Reduce() and when to use Find(). Don't worry you are not alone. Overview:- Map(), reduce(), filter() and find () all are array methods in JavaScript. Each one will ...


134: JavaScript Callback Functions

https://lukechidubem.hashnode.dev/javascript-callback-functions

Hashnode - javascript (Javascript)

In JavaScript, a callback function is a function that is passed as an argument to another function and is executed inside that function. Callback functions are commonly used in asynchronous programming to handle responses to events, such as user acti...


135: Making my own map, filter, find functions [JavaScript]

https://swapnilbawane.hashnode.dev/making-my-own-map-filter-find-functions-javascript

Hashnode - javascript (Javascript)

Let's get it straight, map, filter and find, saves some time by writing less code and delivering the right output. What we will cover In this article, we will explore how to write a simple version of it ourselves and in the process understand how exa...


136: Understanding map, filter, find functions by making your own [JavaScript]

https://swapnilbawane.hashnode.dev/understanding-map-filter-find-functions-by-making-your-own-javascript

Hashnode - javascript (Javascript)

Let's get it straight, map, filter and find, saves some time by writing less code and delivering the right output. Understanding how it works will be helpful to implement it well. What we will cover In this article, we will explore how to write a sim...


137: React Word Counter - JavaScript Exercise 16

https://rajeshtomjoe.com/react-word-counter-javascript-exercise-16

Hashnode - javascript (Javascript)

Overview In this exercise, you will create a React component that allows the user to input a text and displays the number of words in the text. Instructions Create a new component called WordCounter in a new file. The component should have a textar...


138: Fascinating Flutter

https://rahim.hashnode.dev/fascinating-flutter

Hashnode - Flutter (Flutter)

Flutter is the most popular open-source mobile application development framework which has achieved colossal popularity since its launch in 2017. Developed by Google, Flutter provides numerous features that make it a perfect choice for mobile applica...


139: Axios Interceptors with TypeScript

https://jaello-world.dev/axios-interceptors-with-typescript

Hashnode - javascript (Javascript)

What is Axios Interceptors' I asked ChatGPT what Axios Interceptors are. Axios Interceptors are a powerful feature that allows you to intercept and modify HTTP requests and responses in your application. By using TypeScript to define the types of yo...


140 / 150

140: JavaScript: The Magic Behind the Scenes! Learn How Your Code Comes to Life.

https://arjunrajput.hashnode.dev/javascript-the-magic-behind-the-scenes-learn-how-your-code-comes-to-life

Hashnode - javascript (Javascript)

JavaScript is a unique programming language in that it operates in a single-threaded environment, meaning that only one operation can occur at a time. This is because the JavaScript engine can only process one statement at a time, which limits the am...


141: Symmetric Tree

https://leeting-lcs.hashnode.dev/symmetric-tree

Hashnode - python (python)

Problem Statement:- Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center). Link: https://leetcode.com/problems/symmetric-tree/description/ Problem Explanation with examples:- Example 1 Input: roo...


142: Python Basics

https://devopscsant.hashnode.dev/python-basics

Hashnode - python (python)

Why learn Python' Huge community support. Easy to understand & implement. Library for approx everything. Used for automation & scripting. Python status & console: Create a directory master-class-for-python under which all the python file will ...


143: Flask + Docker + VSCode: How to Simplify Debugging and Improve Your Development Experience

https://chopcoding.com/flask-docker-vscode-how-to-simplify-debugging-and-improve-your-development-experience

Hashnode - python (python)

Introduction Debugging Flask Python applications can be challenging, and things get even more complicated when running Flask inside a Docker container. Fortunately, with the right setup, debugging Flask running inside Docker locally in VSCode can be ...


144: Excellent solution for React Native charting in 2023

https://chenzhiqing.hashnode.dev/excellent-solution-for-react-native-charting-in-2023

Hashnode - javascript (Javascript)

The most used chart library for writing chart-related requirements is echarts. The performance of echarts on the website is quite mature, and the official solution is provided for the applet side, but there is no corresponding support in RN. On the m...


145: ReactJS: 5 useful VS Code Extension for your next React project.

https://codepley.tech/reactjs-5-useful-vs-code-extension-for-your-next-react-project

Hashnode - javascript (Javascript)

Introduction VS Code (Visual Studio Code) is a free and open-source Code editor developed by Microsoft. It is widely used by developers for editing and debugging code across a variety of programming languages. VS Code is an excellent choice for devel...


146: ChatGPT aurait réussi à trouver des bogues dans les bases de données après avoir été entraîné par l'équipe de StarRocks pour effectuer des tests automatisés

https://intelligence-artificielle.developpez.com/actu/342409/ChatGPT-aurait-reussi-a-trouver-des-bogues-dans-les-bases-de-donnees-apres-avoir-ete-entraine-par-l-equipe-de-StarRocks-pour-effectuer-des-tests-automatises/

sgbd (developpez.com) (base de données / Informatique)

ChatGPT aurait réussi à trouver des bogues dans les bases de données après avoir été entraîné par l'équipe de StarRocks pour effectuer des tests automatisésDepuis la sortie de ChatGPT en novembre dernier, les utilisateurs n'ont de cesse d'étendre chaque jour les cas d'utilisation de cet outil d'intelligence artificielle (IA) afin de faciliter et accélérer leurs tâches aussi bien tri [...]


147: Timeline: The Shocking Collapse of Silicon Valley Bank

https://www.visualcapitalist.com/timeline-shocking-collapse-of-silicon-valley-bank/

Visual Capitalist (dataviz)

Silicon Valley Bank was shuttered by regulators becoming the largest bank to fail since the height of the Financial Crisis. What happened' The post Timeline: The Shocking Collapse of Silicon Valley Bank appeared first on Visual Capitalist.


148: Web Weekly 95 (blogPost)

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

Stefan Judis (Développement)

Guten Tag! 'Did you see that View Transitions shipped in Chrome stable' Have you used the relatedTarget JS event property' Or do you know what content: no-close-quote does in CSS' All the answers and much more are included in this week's Web Weekly. ' You might have noticed that hosting providers are keen on supporting (employing) framework maintainers. Netlify sponsors 11ty and Solid development [...]




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