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

« Janvier 2024 »

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


Webriche: les veilleurs ne dorment jamais...

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

La veille     Haut de page     Lendemain


Vendredi 19 Janvier 2024 (139)

1: JS -- LocaleCompare

https://amazing4.com/js-localecompare

Hashnode - javascript (Javascript)

localecompare is a method in javaScript, used for string comparison, returning a result based on their lexicographical order (order of characters based on unicode values). As a function, it takes in three parameters namely: String --- The string you...


2: Day 10 of LeetCode

https://evelynsjourney.hashnode.dev/day-10-of-leetcode

Hashnode - python (python)

Documenting LeetCode solving. Celebrate 10 days completed ' Q1 74. Search a 2D Matrix Medium. Binary search class Solution: def searchMatrix(self, matrix: List[List[int]], target: int) -> bool: ROWS, COLS = len(matrix), len(matrix[0]) ...


3: React Native UI Libraries

https://abdulmunim.hashnode.dev/react-native-ui-libraries

Hashnode - javascript (Javascript)

Developing cross-platform mobile applications using React Native is efficient, yet creating visually appealing and user-friendly interfaces can be time-intensive. This is where UI libraries come to the rescue, providing pre-built, customizable compon...


4: Object Literals

https://akashthoriya.hashnode.dev/object-literals

Hashnode - javascript (Javascript)

Step I: Expert Answer Object literals in JavaScript are a way to create objects. They are collections of key-value pairs, where keys are strings (or symbols) and values can be any data type. Object literals are defined using curly braces{}. Step II: ...


5: Données collectées en mode Incognito : Google crache enfin le morceau

https://www.lebigdata.fr/google-incognito

Le Big Data (dataviz)

En utilisant Chrome en mode incognito (navigation privée), les activités des utilisateurs ne sont enregistrées ni sur leur navigateur ni … Cet article Données collectées en mode Incognito : Google crache enfin le morceau a été publié sur LEBIGDATA.FR.


6: Closures

https://akashthoriya.hashnode.dev/closures

Hashnode - javascript (Javascript)

Step I: Expert Answer A closure in JavaScript is a function that remembers its outer variables and can access them. In JavaScript, every time a function is created, a closure is created along with it. This allows the function to access variables from...


7: Scope (Global, Local, Block)

https://akashthoriya.hashnode.dev/scope-in-javascript

Hashnode - javascript (Javascript)

Step I: Perfect Answer Scope in JavaScript refers to the visibility of variables. Global Scope: Variables declared globally (outside of any function or block). These are accessible from anywhere in the code. Local (function) scope: variables declar...


8: Functions (Function Declaration, Function Expression, Arrow Functions)

https://akashthoriya.hashnode.dev/functions-in-javascript

Hashnode - javascript (Javascript)

Step I: Expert Answer Functions in JavaScript are blocks of code designed to perform a particular task. Function Declaration: Defines a named function. Syntax: function name(parameters) { //code }. A function declaration is hoisted, allowing it to b...


9: Data Types (String, Number, Boolean, null, undefined, Symbol, BigInt)

https://akashthoriya.hashnode.dev/datatypes-in-javascript

Hashnode - javascript (Javascript)

Step I: Expert Answer JavaScript provides several data types to hold different kinds of values. Here are the main types: String: represents textual data, e.g.,"Hello, World!". Number: represents numerical values, e.g., 42 or 3.14. Boolean: represe...


10 / 139

10: Variables (var, let, const)

https://akashthoriya.hashnode.dev/variables-in-javascript

Hashnode - javascript (Javascript)

Step I: Expert Answer In JavaScript, variables are containers for storing data values. There are three ways to declare a variable: using var, let, or const. varis the oldest keyword. It has function scope when declared within a function and global s...


11: Notre cerveau est-il une IA ' 3 points communs fascinants et surprenants

https://www.lebigdata.fr/cerveau-ia-points-communs

Le Big Data (dataviz)

Et si notre cerveau n'était en fait qu'une intelligence artificielle créée à l'aide d'une technologie qui nous dépasse encore ' … Cet article Notre cerveau est-il une IA ' 3 points communs fascinants et surprenants a été publié sur LEBIGDATA.FR.


12: La carte de presse, révélateur de l'ubérisation du journalisme

https://www.meta-media.fr/2024/01/19/la-carte-de-presse-revelateur-de-luberisation-du-journalisme.html

Meta Media (Internet)

Le journaliste est en perpétuelle lutte contre son environnement. Il se bat pour décrocher un contrat correct, des rémunérations décentes, une direction bienveillante, des missions significatives, l'attention du public' et la carte de presse. 50% des lauréats du prix Albert-Londres ne détiennent pas ce précieux sésame, délivré par la Commission... The post La carte de presse, révélate [...]


13: Benjamin Toff : « L'intolérance à l'information devient problématique lorsque les individus estiment qu'ils doivent l'ignorer complètement »

https://www.meta-media.fr/2024/01/19/benjamin-toff-lintolerance-a-linformation-devient-problematique-lorsque-les-individus-estiment-quils-doivent-lignorer-completement.html

Meta Media (Internet)

« De plus en plus de personnes ressentent une fatigue face à l'actualité et s'en détournent, ne serait-ce qu'occasionnellement. C'est aussi notre cas, alors même que nous étudions l'actualité pour gagner notre vie » expliquent les chercheurs en communication politique et en journalisme, Benjamin Toff, Ruth Palmer, and Rasmus Kleis Nielsen... The post Benjamin Toff : « L'intolérance à l [...]


14: Playing with official Phaser Parcel template, using it to build a Perfect Square! prototype

https://www.emanueleferonato.com/2024/01/19/playing-with-official-phaser-parcel-template-using-it-to-build-a-perfect-square-prototype/

Emanuele Feronato (Javascript / .GAME)

Here is the official Phaser Parcel template used to build one of my latest HTML5 game prototypes, Perfect Square! Look how I turned a template into a complete HTML5 game. Source code available to download.


15: Meta veut créer la première IA consciente et Open Source : un grave danger '

https://www.lebigdata.fr/meta-agi-open-source

Le Big Data (dataviz)

Le CEO de Meta, Mark Zuckerberg, vient de révéler son projet : créer la première intelligence artificielle, supérieure à l'intelligence … Cet article Meta veut créer la première IA consciente et Open Source : un grave danger ' a été publié sur LEBIGDATA.FR.


16: Memoization - Advanced Javascript Concept

https://10xdev.codeparrot.ai/memoization-advanced-javascript-concept

Hashnode - javascript (Javascript)

Memoization is a powerful optimization technique in programming, particularly useful in JavaScript and React applications. It involves caching the results of function calls to avoid redundant processing. It also is one of the most asked questions in ...


17: Design patterns in React: Compound Components

https://opyjo2.hashnode.dev/design-patterns-in-react-compound-components

Hashnode - javascript (Javascript)

The Compound Components pattern in React is a technique used to build more flexible and expressive component APIs, especially when dealing with complex components. This pattern involves creating a set of components that work together as a unit while ...


18: The Art and Science of Frontend Development: Crafting Digital Experiences

https://syedurwah.hashnode.dev/the-art-and-science-of-frontend-development-crafting-digital-experiences

Hashnode - javascript (Javascript)

Introduction Frontend development stands at the forefront of the digital landscape, shaping the visual and interactive elements that users engage with on websites and applications. As the bridge between design and functionality, frontend developers p...


19: Day 19: Building Bricks and Conquering Castles - Full Stack & Cybersecurity Adventures

https://beaprofessor.com/day-19-building-bricks-and-conquering-castles-full-stack-cybersecurity-adventures

Hashnode - javascript (Javascript)

Hey everyone, welcome back to the trenches of my Full Stack Development and Cybersecurity journey! Day 19 has wrapped up, and the learning curve is definitely feeling steeper today, but that just means I'm scaling new heights, right' Full Stack Fr...


20 / 139

20: How to draw BELLA

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

TanglePatterns (Zentangle)

Online instructions for drawing CZT® Carmen Muñiz Real's Zentangle® pattern: Bella. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


21: Galaxy S24 IA : comment Samsung et Google Cloud ont uni leurs forces

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

Le Big Data (dataviz)

Samsung s’associe à Google Cloud pour intégrer Gemini Pro et Imagen 2 à la série Galaxy S24, améliorant ainsi les … Cet article Galaxy S24 IA : comment Samsung et Google Cloud ont uni leurs forces a été publié sur LEBIGDATA.FR.


22: LinkedIn launches sponsored articles

https://searchengineland.com/linkedin-launches-sponsored-articles-436705

Search engine land (Référencement)

LinkedIn users can read sponsored posts without leaving the platform, potentially leading to increased engagement.


24: What are getters and setters in Flutter'

https://manishcodes.hashnode.dev/what-are-getters-and-setters-in-flutter

Hashnode - Flutter (Flutter)

Getters are accessors i.e. they are used to access a value and setters are mutators i.e. they are used to set a value. The getter is the method that reads the value of the field while the setter is the method that updates the value of the field. Gett...


25: Creating context menus for your app

https://blog.logrocket.com/ux-design/creating-context-menus/

Log Rocket blog (Web 2)

Discover the purpose of a context menu, the elements that comprise it, and some best practices for creating one. The post Creating context menus for your app appeared first on LogRocket Blog.


26: Exploring Amazon S3 Operations with Python Boto3 SDK

https://blog.saadkhan.co.in/exploring-amazon-s3-operations-with-python-boto3-sdk

Hashnode - python (python)

Amazon Simple Storage Service (S3) is a powerful and scalable object storage service offered by Amazon Web Services (AWS). It allows developers to store and retrieve any amount of data at any time. To interact with S3 programmatically, AWS provides t...


27: Compassionate Coding: Emotional Intelligence for Engineers

https://hashnode.codingcat.dev/podcast-4-2-compassionate-coding

Hashnode - javascript (Javascript)

Original: https://codingcat.dev/podcast/4-2-compassionate-coding https://spotifyanchor-web.app.link/e/tOJrQZ2itGb https://youtu.be/GZ0xgZEvlt8 Introduction In the ever-evolving landscape of programming and software development, one website stands out...


28: Cybermatinée Sécurité à Nantes le 8 février

https://www.lemondeinformatique.fr/actualites/lire-cybermatinee-securite-a-nantes-le-8-fevrier-92731.html

Le monde informatique (Internet / Informatique)

La rédaction du Monde Informatique sera heureuse de vous retrouver à Nantes pour son cycle de conférences Cybermatinée Sécurité. (...)


29: Google rolls out new Performance Max guide and updates several others

https://searchengineland.com/google-new-performance-max-guide-update-436703

Search engine land (Référencement)

Google has made significant updates to its PMax documentation to help advertisers create better campaigns


30 / 139

30: France Biotech lance une task force dédiée à l'usage des données de santé

https://www.usine-digitale.fr/article/france-biotech-lance-une-task-force-dediee-a-l-usage-de-la-donnee-de-sante.N2206782

L'usine-digitale (Informatique)

Un groupe de start-up, membres de l'association professionnelle France Biotech, a constitué une task force dédiée à l'usage de la donnée de santé. Leur objectif est de comprendre les besoins des industriels et d'en faire une cartographie. Il espère ainsi mieux adresser les besoins du marché français qui est estimé à 7,3 milliards d'euros par an.


31: Is it worth learning Flutter in 2024'

https://davidserrano.io/is-it-worth-learning-flutter-in-2024

Hashnode - Flutter (Flutter)

Flutter, the great cross-platform framework that allows you to create applications for mobile, web, and desktop with a single codebase. However, despite all the benefits it conveys, is it a good decision to invest time and energy in learning this tec...


32: L'IA mixe Harry Potter et la Petite Maison dans la Prairie : c'est' spécial

https://www.lebigdata.fr/ia-mixe-harry-potter-la-petite-maison-dans-la-prairie

Le Big Data (dataviz)

Il est temps de se plonger dans une atmosphère champêtre et innocente grâce à l’intelligence artificielle de Midjourney ! Serieously … Cet article L’IA mixe Harry Potter et la Petite Maison dans la Prairie : c’est… spécial a été publié sur LEBIGDATA.FR.


33: Google News face au défi du contenu IA

https://www.abondance.com/20240119-353414-google-news-contenu-ia.html

Abondance (Référencement)

Google News a récemment été critiqué pour promouvoir du contenu généré par IA, au détriment du journalisme traditionnel. Danny Sullivan de Google répond à ces allégations, soulignant les défis et les politiques de Google en matière de filtrage de contenu. Ce qu'il faut retenir : Google News et la controverse du contenu IA Jason Koebler […] L'article "Google News face au défi du [...]


34: L'université d'État de l'Arizona va déployer ChatGPT Enterprise pour soutenir l'enseignement

https://www.usine-digitale.fr/article/l-universite-de-l-arizona-va-deployer-chatgpt-enterprise-pour-soutenir-l-enseignement-et-la-recherche.N2206809

L'usine-digitale (Informatique)

ChatGPT fait une percée dans le monde de l'enseignement supérieur. L'université d'État de l'Arizona vient d'annoncer l'intégration de l'outil dans ses programmes éducatifs. Pour le CIO de l'établissement, un tel outil apportera plusieurs avantages aux étudiants, notamment pour les aider à apprendre des matières telles que les sciences, la technologie, l'ingénierie ou encore les mathéma [...]


35: Android Gets X Audio and Video Calls

https://www.webpronews.com/android-gets-x-audio-and-video-calls/

WebProNews SEO (Développement)

WebProNews Android Gets X Audio and Video Calls X is expanding its support for audio and video calling, rolling the feature out to Android devices. Android Gets X Audio and Video Calls Staff


36: Atuin: Magical Shell History

https://mathdatasimplified.com/atuin-magical-shell-history/

Math Data Simplified (data)

Atuin streamlines command retrieval by storing your shell history in an SQLite database, enabling fast searches and execution of previous commands. Link to Atuin.…


37: Day 5 of 100days of code

https://kaylah.hashnode.dev/day-5-of-100days-of-code

Hashnode - javascript (Javascript)

Recap : Yesterday, I created a Steps component that triggers an alert for 'previous' when the previous is clicked and 'next' when the next is clicked. Now, let's advance the Steps component to be interactive and update steps as we c...


38: The decision-making process: A step-by-step guide

https://blog.logrocket.com/product-management/decision-making-process-guide/

Log Rocket blog (Web 2)

A decision-making process is a methodology used for making decisions efficiently. It's especially useful when you don't know where to start. The post The decision-making process: A step-by-step guide appeared first on LogRocket Blog.


39: 404 pages: Best practices and examples from 50+ brands

https://searchengineland.com/404-pages-best-practices-examples-436618

Search engine land (Référencement)

Check out real-world examples and FAQs to help you create useful 404 pages that align with UX best practices.


40 / 139

40: Alerte aux toxicbots : quand l'IA tourne au vinaigre

https://www.lebigdata.fr/alerte-aux-toxicbots

Le Big Data (dataviz)

La montée en puissance des chatbots a révélé un phénomène inquiétant : l’apparition des toxicbots. Ces IA, conçues pour simuler … Cet article Alerte aux toxicbots : quand l’IA tourne au vinaigre a été publié sur LEBIGDATA.FR.


41: IBM muscle watsonx Code Assistant for Z avec un bout d'Advanced

https://www.lemondeinformatique.fr/actualites/lire-ibm-muscle-watsonx-code-assistant-for-z-avec-un-bout-d-advanced-92728.html

Le monde informatique (Internet / Informatique)

IBM a annoncé ce jeudi l'acquisition d'actifs appartenant à Advanced. Son objectif ' Améliorer les services de modernisation (...)


42: La sportech Kinvent lève 16 millions d'euros pour partir à l'assaut du marché américain

https://www.usine-digitale.fr/article/la-sportech-kinvent-leve-16-millions-d-euros-pour-partir-a-l-assaut-du-marche-americain.N2206808

L'usine-digitale (Informatique)

La start-up développe un outil connecté de suivi et d'accompagnement auprès des kinésithérapeutes, afin de les aider à établir des programmes de rééducation pour leurs patients. Elle souhaite désormais accélérer son implantation aux États-Unis, pays qui représente déjà 8% de son activité.


43: Pour se conformer au DMA, Google modifie certains services

https://www.lemondeinformatique.fr/actualites/lire-pour-se-conformer-au-dma-google-modifie-certains-services-92730.html

Le monde informatique (Internet / Informatique)

En mars prochain, l'Union européenne va réguler un peu plus les grands acteurs de l'IT, dont Google. Ce dernier vient d'annoncer (...)


44: Dans le viseur de Bruxelles, Apple propose d'ouvrir l'accès à sa puce NFC aux banques

https://www.usine-digitale.fr/article/dans-le-viseur-de-bruxelles-apple-propose-d-ouvrir-l-acces-a-la-puce-nfc-aux-banques.N2206810

L'usine-digitale (Informatique)

Le groupe à la pomme dispose d'un monopole sur les paiements mobiles depuis les iPhone. Il s'engage à y renoncer pour éviter une condamnation dans le cadre d'une procédure antitrust ouverte par Bruxelles en 2022.


45: La base de données serverless de Pinecone ne convainc pas les analystes

https://www.lemondeinformatique.fr/actualites/lire-la-base-de-donnees-serverless-de-pinecone-ne-convainc-pas-les-analystes-92729.html

Le monde informatique (Internet / Informatique)

 espère que sa base de données vectorielle serverless répondra à la demande autour de l'IA générative tout (...)


46: La stratégie du gouvernement britannique face à l'IA pornographique

https://www.realite-virtuelle.com/gouvernement-britannique-ia-pornographique/

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

Le gouvernement britannique lance une revue de la pornographie. L'objectif ' Examiner l’impact de l’intelligence artificielle […] Cet article La stratégie du gouvernement britannique face à l’IA pornographique a été publié sur REALITE-VIRTUELLE.COM.


47: D3.js adoption guide: Overview, examples, and alternatives

https://blog.logrocket.com/d3-js-adoption-guide/

Log Rocket blog (Web 2)

D3.js is a powerful JavaScript library for creating tailored data visualizations. Let's see why you should use D3.js in your next project. The post D3.js adoption guide: Overview, examples, and alternatives appeared first on LogRocket Blog.


48: PPC outlook: How advertisers can stay ahead in 2024

https://searchengineland.com/ppc-outlook-advertisers-2024-436677

Search engine land (Référencement)

Here are key changes to measurement, bidding, creative and more that PPC advertisers must make in 2024 to stay ahead of disruptions.


49: Yup Validator, nodeJS, and Javascript Library

https://iamthecode.hashnode.dev/yup-validator-nodejs-and-javascript-library

Hashnode - javascript (Javascript)

Here's an explanation of Yup Validator for Node.js, with 10 code examples Yup: A Powerful Validation Library Yup is a popular Node.js library that makes data validation both straightforward and flexible. It offers a fluent API for defining validation...


50 / 139

50: L'emploi des seniors fait toujours défaut dans l'IT

https://www.lemondeinformatique.fr/actualites/lire-l-emploi-des-seniors-fait-toujours-defaut-dans-l-it-92723.html

Le monde informatique (Internet / Informatique)

Dans le secteur IT, l'emploi de collaborateurs plus âgés pourrait être un moyen de faire face à la pénurie de compétences. (...)


51: JavaScript trim() method

https://xdcoder.hashnode.dev/javascript-trim-method

Hashnode - javascript (Javascript)

In JavaScript, the trim() method is a built-in method for strings that removes whitespace from both ends of a string. Whitespace includes spaces, tabs, and newlines. The trim() method does not alter the original string; instead, it returns a new stri...


52: Making CSS View Transitions Easy with Velvette

https://tympanus.net/codrops/2024/01/19/making-css-view-transitions-easy-with-velvette/

Codrops (Internet / Design)

Learn how to effortlessly implement smooth CSS view-transitions with Velvette, a useful library designed to tackle common challenges and enhance user experiences in web applications.


53: Meeting agenda template and guide

https://blog.logrocket.com/product-management/meeting-agenda-templates/

Log Rocket blog (Web 2)

There's a good chance that you spend more than twenty hours a week on meetings. There's also a high chance that you dislike attending them. The post Meeting agenda template and guide appeared first on LogRocket Blog.


54: Unveiling the Singleton Design Pattern: A Blueprint for Efficient Object Creation

https://tejasshaha.hashnode.dev/unveiling-the-singleton-design-pattern-a-blueprint-for-efficient-object-creation

Hashnode - python (python)

Introduction: In the vast realm of software development, designing applications that are not only functional but also efficient is paramount. One design pattern that plays a crucial role in achieving this balance is the Singleton Design Pattern. In t...


55: Comment Apple a architecturé iCloud '

https://read.engineerscodex.com/p/how-apple-built-icloud-to-store-billions

Humancoders ()

Super article qui explique comment Apple utilise une architecture multi-tenant pour stocker des milliards de DB : 300k instances de Cassandra pour iCloud, FoundationDB et recordLayer pour CloudKit, etc. Commentaires L'article Comment Apple a architecturé iCloud ' a été posté dans la catégorie DevOps de Human Coders News


56: 15 SEO localization dos and don'ts: Navigating cultural sensitivity

https://searchengineland.com/seo-localization-dos-donts-cultural-sensitivity-436683

Search engine land (Référencement)

Avoid critical missteps and connect better with global audiences through culturally intelligent SEO localization.


57: À quel âge les enfants peuvent-ils jouer à la réalité virtuelle (VR) '

https://www.realite-virtuelle.com/age-recommande-enfant-jouer-vr/

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

La réalité virtuelle (VR) comporte-t-elle des dangers pour les enfants ' Quel est l’âge recommandé […] Cet article À quel âge les enfants peuvent-ils jouer à la réalité virtuelle (VR) ' a été publié sur REALITE-VIRTUELLE.COM.


58: Zuckerberg pète les plombs à un mariage à cause de moqueries sur le métavers

https://www.lebigdata.fr/zuckerberg-mariage-moqueries-metavers

Le Big Data (dataviz)

Lors d’un mariage, Mark Zuckerberg a explosé de colère suite à des railleries sur son métavers. Cela a provoqué un … Cet article Zuckerberg pète les plombs à un mariage à cause de moqueries sur le métavers a été publié sur LEBIGDATA.FR.


59: How to add Passkey Login to Next.js using NextAuth and Hanko

https://ashutoshbhadauriya.com/how-to-add-passkey-login-to-nextjs-using-nextauth-and-hanko

Hashnode - javascript (Javascript)

When logging in to Apple Store or GitHub, you must have seen a new 'Sign in with Passkey' button. Passkey login is a cool new way to sign in without needing any passwords. It uses Touch ID or Face ID on your device to authenticate, which makes it way...


60 / 139

60: What the heck is Lazy Loading'

https://yashnirmal.hashnode.dev/what-the-heck-is-lazy-loading

Hashnode - javascript (Javascript)

You might have come across the term "lazy loading" and wondered, "What the heck is lazy loading'". Fear not, for I am here to break it down in the simplest way possible. Lazy loading is a technique that optimizes web page performance by loading only ...


61: Des articles plagiés à l'aide d'outils d'IA générative commencent à apparaître sur Google News

https://www.usine-digitale.fr/article/des-articles-plagies-a-l-aide-d-outils-d-ia-generative-commencent-a-apparaitre-sur-google-news.N2206786

L'usine-digitale (Informatique)

Pour générer du trafic, des fermes de contenus publient des dizaines d'articles par jour, en utilisant l'intelligence artificielle. Ces articles apparaissent quand même sur Google News.


62: Perplexity AI pousse son service de recherche dans les boîtiers Rabbit R1

https://www.usine-digitale.fr/article/perplexity-ai-pousse-son-service-de-recherche-dans-les-boitiers-rabbit-r1.N2206800

L'usine-digitale (Informatique)

Les boîtiers R1 dévoilés par la start-up Rabbit à l'occasion du CES profitent désormais du service de recherche de Perplexity AI. Dans le cadre du partenariat entre les entreprises, les 100 000 premiers acheteurs bénéficieront de l'abonnement Pro de Perplexity AI.


63: Voici comment l'humanité réagirait à un astéroïde, selon une simulation

https://www.lebigdata.fr/simulation-reaction-asteroide

Le Big Data (dataviz)

Afin d'anticiper la réaction de l'humanité face à un astéroïde menaçant la Terre, une équipe de scientifiques du Lawrence Livermore … Cet article Voici comment l’humanité réagirait à un astéroïde, selon une simulation a été publié sur LEBIGDATA.FR.


64: Python Project: Leap Year Calculator

https://laughingatmycode.hashnode.dev/python-project-leap-year-calculator

Hashnode - python (python)

Here is a beginner Python program, a leap year calculator, that helps determine whether a given year is a leap year or not. Since this is a beginner project, the program is focused on conditional statements: if, elif and else. The rules for determin...


65: Flutter and Dart: Unleash the Picasso within you with CustomPainter

https://lyabs.hashnode.dev/flutter-and-dart-unleash-the-picasso-within-you-with-custompainter

Hashnode - Flutter (Flutter)

In this tutorial, we'll see how you can use your creativity by drawing the components you want with the Flutter Custom Painter. At the end of this article, we're going to use the Custom Painter to create an animated world clock from scratch. Flutter...


66: La réalité virtuelle perd l'une de ses étoiles

https://www.realite-virtuelle.com/fin-commercialisation-varjo-aero/

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

C'est la fin pour Varjo Aero. Ce premier et unique casque grand public du spécialiste […] Cet article La réalité virtuelle perd l’une de ses étoiles a été publié sur REALITE-VIRTUELLE.COM.


67: Collective 805

https://tympanus.net/codrops/collective/collective-805/

Codrops (Internet / Design)

Pikimov * The Two Reacts * PocketBase * Tokenami


68: Ce lauréat de littérature japonais utilise ChatGPT, et n'a aucune honte

https://www.lebigdata.fr/laureat-litterature-japonais-utilise-chatgpt

Le Big Data (dataviz)

De nos jours, l’intelligence artificielle s’infiltre progressivement dans tous les aspects de notre existence, allant de la sphère personnelle au … Cet article Ce lauréat de littérature japonais utilise ChatGPT, et n’a aucune honte a été publié sur LEBIGDATA.FR.


69: My Java Learning Journey

https://emmanuelelendu.hashnode.dev/my-java-learning-journey

Hashnode - javascript (Javascript)

Hello! ' I'm Emmanuel Elendu, Node.js developer delving into the world of Java. I'm excited embarking on a journey. As a JavaScript programmer, transitioning from a dynamically typed language to a statically typed language like Java is a significant...


70 / 139

70: Variables and Data Types

https://techbyabeginner.hashnode.dev/variables-and-data-types

Hashnode - python (python)

Remember you solved for 'x' back in school days' They were called variables. Well, variables in programming are somewhat similar too. Variables are a storage location that also has a name associated with it. Names that are cute and sweet. Now these n...


71: Netflix snobe le casque Vision Pro d'Apple !

https://www.realite-virtuelle.com/netflix-snobe-le-casque-vision-pro-dapple/

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

Netflix n'a pas développé une application compatible avec Apple Vision Pro. Et la plateforme a […] Cet article Netflix snobe le casque Vision Pro d’Apple ! a été publié sur REALITE-VIRTUELLE.COM.


72: When to use redux and recoil'

https://lingarajtechhub.com/when-to-use-redux-and-recoil

Hashnode - javascript (Javascript)

Redux and Recoil are state management tools for React, but they have different ideas and uses. The choice between Redux and Recoil depends on your app's needs and how complex it is. Here are some thoughts on when to use each: Use Redux when: Predict...


73: Les développeurs portent un regard méfiant sur l'IA

https://www.lemondeinformatique.fr/actualites/lire-les-developpeurs-portent-un-regard-mefiant-sur-l-ia-92712.html

Le monde informatique (Internet / Informatique)

La plupart des développeurs sont optimistes quant à la capacité de l'IA de réduire leur charge de travail et sont impatients (...)


74: Des hôtes Docker infectés pour du cryptominage

https://www.lemondeinformatique.fr/actualites/lire-des-hotes-docker-infectes-pour-du-cryptominage-92721.html

Le monde informatique (Internet / Informatique)

Les attaques cyber visant les conteneurs et services Docker ne se limitent pas à des fins d'intrusion dans le SI et de vol de données. (...)


75: Time Series Aggregation in Pandas

https://kapilg.hashnode.dev/time-series-aggregation-in-pandas

Hashnode - python (python)

If you are working with time series data, you may need to group the records by various frequencies and perform some kind of aggregation / computation. These frequencies may range from month, week to minutes. Pandas provides more than one way to group...


76: Votre cerveau a beau être superficiel, il rivalise avec l'IA selon cette étude

https://www.lebigdata.fr/deep-learning-ia

Le Big Data (dataviz)

Le bras de fer entre l'IA et l'intelligence humaine aura bientôt un gagnant. Récemment, une étude a montré que le … Cet article Votre cerveau a beau être superficiel, il rivalise avec l'IA selon cette étude a été publié sur LEBIGDATA.FR.


77: Collection of NBA basketball data sources and apps

https://flowingdata.com/2024/01/19/collection-of-nba-basketball-data-sources-and-apps/

Flowing data (dataviz)

If you’re into basketball data, Sravan Pannala is keeping a running list of…Tags: basketball, Sravan Pannala


78: Effortlessly Generate Structured Information with Ollama, Zod, and ModelFusion

https://p42.hashnode.dev/effortlessly-generate-structured-information-with-ollama-zod-and-modelfusion

Hashnode - javascript (Javascript)

In this blog post, we'll create a JavaScript function that does just that. Our function will take a country as input and output a curated list of cities perfect for a weekend getaway in that country. For this task, we'll use several tools: Ollama is...


79: Python's One-to-Many Relationships: A Beginner's Guide

https://myschool.hashnode.dev/pythons-one-to-many-relationships-a-beginners-guide

Hashnode - python (python)

Intro to One-to-Many As you journey to master Python, a coding language with boundless possibilities, you might encounter the puzzling term 'one-to-many relationships.' In this guide tailored for beginners, we'll explain this concept using straightfo...


80 / 139

80: Pour l'IA, Meta va acquérir 350 000 accélérateurs Nvidia H100

https://www.lemondeinformatique.fr/actualites/lire-pour-l-ia-meta-va-acquerir-350-000-accelerateurs-nvidia-h100-92722.html

Le monde informatique (Internet / Informatique)

Après l'échec du métavers, Mark Zuckerberg, CEO de Meta entend bien ne pas louper le coche de l'intelligence artificielle (...)


81: Box Model in CSS

https://bharat2044.hashnode.dev/box-model-in-css

Hashnode - javascript (Javascript)

The CSS (Cascading Style Sheets) box model is a fundamental concept that describes the layout of elements on a web page. It defines how the content, padding, border, and margin of an element are represented, and it helps in understanding how these pr...


82: Heex Technologies lève 6 millions d'euros pour sa technologie de smart data

https://www.usine-digitale.fr/article/smart-data-heex-technologies-leve-6-millions-d-euros-et-s-ouvre-a-de-nouvelles-industries.N2206792

L'usine-digitale (Informatique)

La start-up, qui a accueilli ses premiers investisseurs en 2021, aide ses clients à récupérer de la donnée pertinente et directement exploitable. Après avoir fait ses premiers pas dans le domaine des voitures autonomes, elle souhaite s'étendre à d'autres industries, telles que les infrastructures de villes, et renforcer sa présence à l'international.


83: Non, le Bitcoin n'est pas anonyme : cette jeune étudiante de 27 ans le prouve pour de bon

https://www.lebigdata.fr/bitcoin-pas-anonyme

Le Big Data (dataviz)

Bitcoin est présenté par ses adeptes comme une monnaie numérique anonyme et sécurisée. Toutefois, les recherches d'une jeune étudiante de … Cet article Non, le Bitcoin n’est pas anonyme : cette jeune étudiante de 27 ans le prouve pour de bon a été publié sur LEBIGDATA.FR.


84: GPT-5 : ce que l'on sait du futur modèle d'IA de ChatGPT

https://www.blogdumoderateur.com/gpt-5-futur-modele-ia-chatgpt/

Blog du Moderateur ()

Alors que de nombreuses rumeurs circulent sur les capacités de GPT-5, Sam Altman a présenté certaines priorités dans un podcast avec Bill Gates.


85: Meta regroupe ses divisions de recherche en IA et se vante d'avoir l'équivalent de 600 000 Nvidia H100

https://www.usine-digitale.fr/article/meta-regroupe-ses-divisions-de-recherche-en-ia-et-se-vante-d-avoir-l-equivalent-de-600-000-nvidia-h100.N2206788

L'usine-digitale (Informatique)

Mark Zuckerberg ne rigole plus. Il entend faire de Meta le leader incontesté de l'IA générative, tout en continuant à publier ses modèles en open source. Pour dépasser OpenAI et les autres, il constitue une infrastructure comptant l'équivalent de 600 000 cartes Nvidia H100, des GPU optimisés pour l'entraînement de modèles d'IA. Il regroupe par ailleurs sa division de recherche fondamenta [...]


86: What is React Recoil'

https://lingarajtechhub.com/what-is-react-recoil

Hashnode - javascript (Javascript)

Recoil is a state management library for managing global states in React applications. It was developed by Facebook and is designed to be flexible and scalable for managing complex state logic in React applications. Recoil provides a set of hooks and...


87: Sécurité sur Brave : adieu au mode strict ! 

https://www.abondance.com/20240119-353007-brave-mode-strict.html

Abondance (Référencement)

Le navigateur Brave annonce un changement dans sa politique de protection de la vie privée, avec la suppression du mode strict contre le fingerprinting (empreinte digitale). Cette décision vise à optimiser l'expérience utilisateur tout en renforçant la protection standard de Brave contre le tracking. Ce qu'il faut retenir : Suppression du mode strict Le mode […] L'article "Sécurité su [...]


88: Unleashing the Power of HTML with htmx: A Beginner's Guide

https://techsphere.hashnode.dev/unleashing-the-power-of-html-with-htmx-a-beginners-guide

Hashnode - javascript (Javascript)

In the ever-evolving landscape of web development, htmx emerges as a game-changer, offering a refreshing approach to harnessing the potential of modern browsers directly through HTML, sans the intricate complexities of JavaScript. Let's embark on a j...


89: Les chiffres hors norme de la cybersécurité de JPMorgan Chase

https://www.lemondeinformatique.fr/actualites/lire-les-chiffres-hors-norme-de-la-cybersecurite-de-jpmorgan-chase-92716.html

Le monde informatique (Internet / Informatique)

« Les fraudeurs deviennent plus intelligents, rusés, rapides, sournois et malveillants », indique Mary Callahan Erdoes, CEO (...)


90 / 139

90: Learning animal languages with AI

https://flowingdata.com/2024/01/19/learning-animal-languages-with-ai/

Flowing data (dataviz)

Financial Times highlights how researchers are using AI to try to learn what…Tags: AI, animals, Financial Times, sound


91: FAQ : comment connecter son casque a steamVR '

https://www.realite-virtuelle.com/faq-comment-connecter-son-casque-a-steam-vr/

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

Steam VR est devenu une référence incontournable dans le monde des jeux vidéo en réalité […] Cet article FAQ : comment connecter son casque a steamVR ' a été publié sur REALITE-VIRTUELLE.COM.


92: Les salaires du digital en 2024 : marketing, tech, design'

https://www.blogdumoderateur.com/salaires-digital-2024-marketing-tech-design/

Blog du Moderateur ()

L'année 2024 devrait marquer un ralentissement global de l'augmentation des salaires dans le digital, selon le cabinet Seyos.


93: Apple a détrôné Samsung sur le marché mondial des smartphones en 2023

https://www.lemondeinformatique.fr/actualites/lire-apple-a-detrone-samsung-sur-le-marche-mondial-des-smartphones-en-2023-92713.html

Le monde informatique (Internet / Informatique)

Selon la dernière étude de Canalys sur le marché des smartphones, les ventes ont augmenté de 8 % dans le monde au (...)


94: Snapchat : comment supprimer une conversation

https://www.blogdumoderateur.com/snapchat-comment-supprimer-conversation/

Blog du Moderateur ()

Vous souhaitez vous débarrasser d'une conversation sur Snapchat ' Voici comment faire.


95: ''' Daily Code 43 | FizzBuzz Exercise in ' Python and ' JavaScript (round 2!)

https://gregorschafroth.hashnode.dev/daily-code-43-fizzbuzz-exercise-in-python-and-javascript-round-2

Hashnode - javascript (Javascript)

Alright as promised, today I'll try to do the FizzBuzz exercise again. I'll try to make the solution elegant without looking at yesterdays solution. My Code ' Python: for number in range(1, 101): result = "" if number % 3 == 0: resul...


96: Cohesity nomme Olivier Savornin directeur des ventes EMEA

https://www.lemondeinformatique.fr/actualites/lire-cohesity-nomme-olivier-savornin-directeur-des-ventes-emea-92718.html

Le monde informatique (Internet / Informatique)

L'Américain Cohesity accueille dans ses rangs Olivier Savornin au poste de vice-président des ventes pour l'Europe, le (...)


97: Dossier : 2024, l'année de Windows 11

https://www.lemondeinformatique.fr/actualites/lire-dossier-2024-l-annee-de-windows-11-92717.html

Le monde informatique (Internet / Informatique)

Sommaire 1 - Windows 11, une migration qui va vraiment démarrer en 2024 « Windows 11 a été boudé par les entreprises, (...)


99: Understanding Request Waterfalls: Impact on Web Performance

https://freemancodz.hashnode.dev/understanding-request-waterfalls-impact-on-web-performance

Hashnode - javascript (Javascript)

A big issue that often slows down apps is when requests wait in line, with each one starting only after the last one finishes. Check out the code below for an example: async function fetchTodo1() { await fetch('https://jsonplaceholder.typicode.com/...


100 / 139

100: Les rouages du Campus du numérique public passés au crible

https://www.lemondeinformatique.fr/actualites/lire-les-rouages-du-campus-du-numerique-public-passes-au-crible-92711.html

Le monde informatique (Internet / Informatique)

Le 9 janvier dernier, la Dinum a officiellement lancé son Campus du numérique public. Cornelia Findeisen, cheffe du département (...)


101: L'IA de DeepMind rivalise avec les meilleurs élèves du monde en géométrie

https://www.lebigdata.fr/alphageometry-ia-deepmind

Le Big Data (dataviz)

AlphaGeometry est cette IA aussi bonne en géométrie que les meilleurs élèves du monde. DeepMind réalise avec ce modèle une … Cet article L’IA de DeepMind rivalise avec les meilleurs élèves du monde en géométrie a été publié sur LEBIGDATA.FR.


102: How i downloaded brochure from an website without giving login info

https://nebimori.hashnode.dev/how-i-downloaded-brochure-from-an-website-without-giving-login-info

Hashnode - javascript (Javascript)

lets say i was browsing xyz site and they had en contact info requirement for me to be able to download brochure (email , phone etc) . i dont wanna get spam from them simply i inspect elemented the download button and started debugger after scrolling...


103: Project Architecture in Node.js

https://amodmathapati.hashnode.dev/project-architecture-in-nodejs

Hashnode - javascript (Javascript)

When building a Node.js project, it's crucial to structure your application in a way that enhances readability, and maintainability. One such structure is the Model-View-Controller (MVC) architecture. Let's break down what each part of this architect...


104: Quelles sont les prédictions des SEO pour 2024 '

https://www.abondance.com/20240119-352238-quelles-sont-les-predictions-des-seo-pour-2024.html

Abondance (Référencement)

En début d'année, Search Engine Journal a publié son State of SEO 2024, rapport annuel sur la profession. Profils de professionnels, budget, craintes et changements majeurs attendus dans l'industrie' On vous présente les principaux points à retenir de cette étude réalisée à partir des données collectées auprès de 3 890 professionnels, experts et débutant, dont […] L'article "Que [...]


105: Ils laissent des avis négatifs, eBay leur envoie une tête de porc par la poste

https://www.lebigdata.fr/harcelement-en-ligne-ebay

Le Big Data (dataviz)

Le géant du commerce en ligne, eBay, vient de surprendre le monde d'internet. L'entreprise a voulu se venger après une … Cet article Ils laissent des avis négatifs, eBay leur envoie une tête de porc par la poste a été publié sur LEBIGDATA.FR.


106: The JavaScript Journey: From 10 Days to Web Dominance

https://akashshukla.hashnode.dev/the-javascript-journey-from-10-days-to-web-dominance

Hashnode - javascript (Javascript)

In this article, you will read about the history of JavaScript. Once upon a time in the early days of the internet, websites were like static paintings, beautiful but lacking the spark of interaction. Then, in 1995, along came JavaScript, a language ...


107: Sky Engine AI lève 7 millions de dollars pour sa solution cloud de génération de données synthétiques

https://www.usine-digitale.fr/article/sky-engine-ai-leve-7-millions-de-dollars-pour-sa-solution-cloud-de-generation-de-donnees-synthetiques.N2206767

L'usine-digitale (Informatique)

Ciblant les secteurs de l'automobile, la robotique ou la santé, Sky Engine AI vient de lever 7 millions de dollars. La start-up londonienne développe une solution de génération de données synthétiques multimodales dans le cloud pour l'entraînement de modèles de vision par ordinateur dans des environnements simulés.


108: Sauvée par des vers marins : cette découverte pourrait révolutionner la guérison

https://www.lebigdata.fr/sauvee-par-des-vers-marins-revolutionner-guerison

Le Big Data (dataviz)

Des blessures graves et les brûlures qui guérissent à une vitesse surprenante, grâce au sang de vers marins ' C’est … Cet article Sauvée par des vers marins : cette découverte pourrait révolutionner la guérison a été publié sur LEBIGDATA.FR.


109: Making a Movie Recommendation App with Python and Beautiful Soup

https://ashfin.hashnode.dev/making-a-movie-recommendation-app-with-python-and-beautiful-soup

Hashnode - python (python)

What is Web Scraping' Let's say you want a list of 100 top-rated doctors in your area. You can just search online and write them down 1 by 1. Even if you find a website containing all 100 of them in one place. They might have extra unnecessary info t...


110 / 139

110: Await. And then' 4/4: we still need thenables

https://bite-sized.hashnode.dev/await-and-then-44-we-still-need-thenables

Hashnode - javascript (Javascript)

In previous bites, we saw in detail the two approaches to Javascript asynchronous programming: thenables and async/await. While the latter is designed to solve the issues .then has, they are not covering all the cases that thenables used to. In my ex...


111: Online Retail Exploratory Data Analysis with Python

https://blog.dtucker.xyz/online-retail-exploratory-data-analysis-with-python

Hashnode - python (python)

Gaining some practice performing exploratory data analysis, since this is often one of the first steps in preparing data for machine learning. Links: Jupyter notebook Tableau dashboard visualization Here are some major steps Load the dataset Perf...


112: Mais pourquoi Google Search est devenu nul'' Une étude révèle un problème

https://www.lebigdata.fr/etude-sur-google-search

Le Big Data (dataviz)

Récemment, des spécialistes ont analysé la pertinence et la qualité des résultats de Google Search. Et leurs conclusions sont inquiétantes. … Cet article Mais pourquoi Google Search est devenu nul'' Une étude révèle un problème a été publié sur LEBIGDATA.FR.


113: Electra, Flowdesk, Factoria' Les levées de fonds de la French Tech cette semaine

https://www.usine-digitale.fr/article/electra-flowdesk-factoria-les-levees-de-fonds-de-la-french-tech-cette-semaine.N2206778

L'usine-digitale (Informatique)

Les start-up de la French Tech ont levé plus de 450 millions d'euros cette semaine, d'après le décompte hebdomadaire d'eCap Partner pour L'Usine Digitale.


114: Python's Skills To Impact Web Development's Future

https://devstreeau.hashnode.dev/pythons-skills-to-impact-web-developments-future

Hashnode - javascript (Javascript)

Embarking on the dynamic journey of web development, Python stands out as a prominent player, shaping the futuristic technological landscape. In this digital exploration, Python's versatile capabilities and extensive contributions propel it to the fo...


115: CommonJS vs. ES Modules: A Comprehensive Guide for JavaScript Developers

https://hashnext.hashnode.dev/commonjs-vs-es-modules-a-comprehensive-guide-for-javascript-developers

Hashnode - javascript (Javascript)

Common JS (Microsoft)ES Module (Google) FunctionalityWorks with the Node Js platformWorks with the web browser environment CompilationCompiled into AMD modulesDoes not require a modules loader like AMD DependenciesAll dependencies are listed...


116: The Programming Language known as JavaScript

https://msakunnawrites.hashnode.dev/the-programming-language-known-as-javascript

Hashnode - javascript (Javascript)

If you are new to programming, one programming language that you will definitely be introduced to is JavaScript. Due to its features such as ease of use, interactive features and speed in runtime, JavaScript is the most popular programming language t...


117: Introduction to Basic JavaScript Concepts for Creative Coding

https://hoangloi.hashnode.dev/introduction-to-basic-javascript-concepts-for-creative-coding

Hashnode - javascript (Javascript)

JavaScript has become an essential tool for implementing creativity within digital projects. As an ever-evolving language, it offers a wide array of functionalities that enable artists and developers to create visually stunning and interactive experi...


118: Object Oriented Express API

https://pankajgupta.hashnode.dev/object-oriented-express-api

Hashnode - javascript (Javascript)

I've been toying around with the idea of having a scalable express api service, which will handle some of the basic crud operations for a model without writing the actual code for the controller. I've three years of experience and I was not sure if y...


119: Frontend Development Tutorials

https://ukana.hashnode.dev/frontend-development-tutorials

Hashnode - javascript (Javascript)

Hello there! ' Exciting news! I'm kicking off a series of daily tutorials on frontend development! '' Follow along to dive into the world of creating stunning user interfaces and stay updated with fresh content every day. Let's embark on this codin...


120 / 139

120: Tantivy

https://github.com/quickwit-oss/tantivy

pointer.io (Développement)

Full-text search engine library.


121: Unit Of Work

https://boz.com/articles/unit-of-work

pointer.io (Développement)

The environment you are working in has a rate of change (entropy) e.g. competitors, regulators, consumer behavior. The relationship between this rate and the unit of work you undertaking is critical to understand: (1) If the unit of work is bigger than the rate of change, then you will fall behind. (2) If your unit of work is smaller than the rate of change you are likely driving change for others [...]


122: Let's Talk About Joins

https://cghlewis.com/blog/joins/

pointer.io (Développement)

'In general, there are two ways to link our data, horizontally or vertically. When linking or joining data horizontally we are matching rows by one or more variables (i.e., keys), making a wider dataset. When joining vertically, column names are matched and datasets are stacked on top of each other, making a longer dataset. Joins can be done in many different programs (e.g., SQL, R, Stata, SAS). M [...]


123: Learning From A Strategy Project

https://www.annashipman.co.uk/jfdi/learnings-from-strategy-project.html

pointer.io (Développement)

'I was leading one of a number of engineering groups within a larger organization; each group had its own priorities, but most of them required delivery through my team; and we had our own priorities. So we ended up slowing each other down.' Anna looked to her managers to solve this before deciding to create the strategy herself. Here's are some of the things she learned: (1) Even if you think you [...]


124: Turing Completeness

https://www.osohq.com/post/is-polar-turing-complete-and-why-i-hope-not?utm_campaign=pointer2024&utm_medium=newsletter&utm_source=pointer

pointer.io (Développement)

Polar, a language designed for permissions, is not Turing complete. That's a good thing because you need your permissions queries to be low latency and not run forever. Read our proof on why Polar isn't Turing complete and why that's a good thing.


125: Demystifying Project Estimation

https://hybridhacker.email/p/demystifying-project-estimation

pointer.io (Développement)

'Estimating a project or the latest feature you aim to deliver holds incredible value, not only for the business your team serves but also for you and your team. In fact, estimations bring clarity and alignment, which are crucial for delivering quickly and with minimal stress.' The article covers the purposes and challenges of estimation, and gives practical examples and tips. 


126: CrewAI

https://github.com/joaomdmoura/crewAI

pointer.io (Développement)

Orchestrating role-playing, autonomous AI agents.


127: Pointer Sponsor

https://clerk.com/

pointer.io (Développement)

This issue's sponsor is Clerk


128: Measuring Developer Productivity: Real-World Examples

https://newsletter.pragmaticengineer.com/p/measuring-developer-productivity-bae

pointer.io (Développement)

In this issue, Abi outlines the developer productivity metrics used at 17 tech companies, such as Amplitude, Etsy, DoorDash. He then dives deep into several companoes of varying size, notably Google & LinkedIn, Peloton, scaleups and smaller companies. Abi's advice on how to choose your metrics: start with the problem you want to solve. Is it shipping frictionless, retaining developers by keeping t [...]


129: Why Lowercase Letters Save Data

https://endtimes.dev/why-lowercase-letters-save-data/

pointer.io (Développement)

'I took the front page of Hacker News and rewrote the title of each article in sentence case instead of title case. Each html file had the exact same number of characters ' but when compressed into zip files the title case file was 5,992 bytes and the sentence case file was 5,961 bytes. Saving 31 bytes!' For each site visit to Hacker News would save 0.00001059642g of carbon if written in sentence [...]


130 / 139

130: QAnything

https://github.com/netease-youdao/QAnything

pointer.io (Développement)

Local knowledge base question-answering system.


131: Slashing Data Transfer Costs In AWS By 99%

https://www.bitsand.cloud/posts/slashing-data-transfer-costs/

pointer.io (Développement)

'AWS replicates S3 data between availability zones for you - whatever this might cost AWS is hidden away in the storage costs you pay for your data. So at its most fundamental level, this method is unlocking free cross-AZ costs - because you've effectively already paid for the cross-AZ cost when you uploaded your data to S3! Indeed, if you were to leave your data stored in S3, you'd end up paying [...]


132: Tinybench

https://github.com/tinylibs/tinybench

pointer.io (Développement)

Lightweight benchmarking library. 


133: L'ordinateur biologique, nouvelle frontière de l'informatique...

https://www.rtflash.fr/l-ordinateur-biologique-nouvelle-frontiere-l-informatique/article

Tregouet.org ()

On le sait, l'électronique n'en finit pas de plonger vers l'infiniment petit et TSMC, devenu leader mondial des semi-conducteurs, vient d'annoncer qu'il comptait atteindre une finesse de gravure d'un nanomètre pour ses transistors en 2030, ce qui lui permettra d'intégrer 200 milliards de transistors sur une seule puce. L'IMEC (Institut Microélectronique des composants), table pour sa part sur [...]


134: 12 Modern CSS One-Line Upgrades

https://moderncss.dev/12-modern-css-one-line-upgrades/

Modern CSS (CSS)

Sometimes, improving your application CSS just takes a one-line upgrade or enhancement! Learn about 12 properties to start incorporating into your projects, and enjoy reducing technical debt, removing JavaScript, and scoring easy wins for user experience. Properties are explored for the following categories: Stable Upgrades: fix a hack or issue by replacing older techniques Stable Enhancements: p [...]


135: TypeScript is freaking hard!

https://hashnode.codingcat.dev/podcast-4-1-typescript-is-freaking-hard-1

Hashnode - javascript (Javascript)

Original: https://codingcat.dev/podcast/4-1-typescript-is-freaking-hard https://youtu.be/ouHZioTXYyM Navigating the Complexities of TypeScript: A Comprehensive Beginner's Guide In the realm of programming languages, TypeScript stands out as a powerfu...


136: Variables in Javascript: A Comprehensive Guide to Var, Let, and Const

https://appsmith.hashnode.dev/variables-in-javascript-a-comprehensive-guide-to-var-let-and-const

Hashnode - javascript (Javascript)

In software, a variable is a symbolic name that represents a value or a reference to a value. It's a way to store information that can be reused and manipulated throughout your program. You can think of a variable like a label or even a sign pointer ...


137: Accessible notifications (note)

https://www.stefanjudis.com/notes/accessible-notifications/

Stefan Judis (Développement)

Sara Soueidan just published a free chapter of her Practical Accessibility course; with no surprise, it's high quality. The chapter is split into two blog posts: Accessible notifications with ARIA Live Regions (Part 1) Accessible notifications with ARIA Live Regions (Part 2) I strongly suggest you read these, but disclaimer: you'll need a while to make yourself through them. For my archive, here [...]




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