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

« Mars 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 8 Mars 2024 (604)

1: Decoding JavaScript: How JavaScript Really Works'

https://shivangyadav.hashnode.dev/decoding-javascript-how-javascript-really-works

Hashnode - javascript (Javascript)

JavaScript is the requirement of modern web development. It adds interactivity and dynamism to those static HTML pages. But have you wondered how it actually works' What happens when you write a line of JavaScript code and it makes something happen o...


2: Python: How to use the "pytest" Module

https://andrewdass.hashnode.dev/python-how-to-use-the-pytest-module

Hashnode - python (python)

Overview This article will explain how to use the "pytest" module in the Python programming language. "pytest" is used to detect whether statements are True or False by using the assert command (1). Materials Python 3.6+ or PyPy3 (1) Python modules...


3: Connecting Node.js with MongoDB using Mongoose

https://mywebdevelopmentjouney.hashnode.dev/connecting-nodejs-with-mongodb-using-mongoose

Hashnode - javascript (Javascript)

Just Explored Connecting Node.js with MongoDB using Mongoose! Today, I embarked on an exciting journey into the realm of full-stack development by delving into the seamless integration of Node.js with MongoDB using Mongoose. It was a profound experie...


4: ' Weekly Magic AI: 1-Bit-LLMs | Google Search Update | Claude 3

https://magicai.tinztwins.de/weekly-magic-ai-1-bit-llms-google-search-update-claude-3

Hashnode - python (python)

Hi AI Enthusiast, Welcome to our weekly Magic AI, where we bring you the latest updates on Artificial Intelligence (AI) in an accessible way. This week's Magic AI tool is perfect for all productivity junkies! Be curious! ' In today's Magic AI: Mic...


5: Lessons from open-source: Use Symbol in Javascript to avoid name collisions

https://ramunarasinga.hashnode.dev/lessons-from-open-source-use-symbol-in-javascript-to-avoid-name-collisions

Hashnode - javascript (Javascript)

This lesson is picked from next.js/packages/next. In this article, you will learn what a Symbol is, how Next.js uses Symbol, some other repositories that use Symbol in the Github wilderness and further reading references What is a Symbol in Javascrip...


6: Time Shifting in Pandas using the time series data from Tesla stock

https://hub.tinztwins.de/time-shifting-in-pandas-using-the-time-series-data-from-tesla-stock

Hashnode - python (python)

Generated with Microsoft Copilot In the fast-paced world of stock trading, analyzing time series data is crucial for making informed decisions. With the help of advanced tools like Pandas, analyzing time series data has become more straightforward. I...


7: Day 61: Exploring Terraform's Command Arsenal

https://davender.hashnode.dev/day-61-exploring-terraforms-command-arsenal

Hashnode - python (python)

Welcome back, fellow adventurers, to another exciting day in our Terraform journey! Today, we're diving deeper into the realm of Terraform commands, equipping ourselves with the tools needed to sculpt our infrastructure with precision and finesse. Ta...


8: Day 40 of LeetCode

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

Hashnode - python (python)

Documenting LeetCode solving. Q112 695. Max Area of Island Medium. Graph class Solution: def maxAreaOfIsland(self, grid: List[List[int]]) -> int: ROWS, COLS = len(grid), len(grid[0]) visit = set() # return the area ...


9: AWS S3 Operations with Python

https://shubhammukherji.hashnode.dev/aws-s3-operations-with-python

Hashnode - python (python)

In today's cloud-centric world, AWS S3 (Simple Storage Service) stands out as a cornerstone for storing and retrieving data efficiently. While the AWS Management Console offers a user-friendly interface for managing S3 resources, there are times when...


10 / 604

10: Getting Started with Flutter: Building Cross-Platform Mobile Apps

https://nitinsahu.hashnode.dev/getting-started-with-flutter-building-cross-platform-mobile-apps

Hashnode - Flutter (Flutter)

Flutter has rapidly gained popularity among developers for its ability to create beautiful and highly-performant cross-platform mobile applications. In this guide, we'll explore the fundamentals of Flutter and how to get started with building your fi...


11: Python: The Ultimate Language for Data Science and Machine Learning

https://realbibek.hashnode.dev/python-the-ultimate-language-for-data-science-and-machine-learning

Hashnode - python (python)

In the rapidly evolving landscape of data science and machine learning, choosing the right programming language is crucial. While there are several contenders in the field, one language stands out above the rest: Python. With its simplicity, versatil...


12: Exploring JSX: The Gateway to React's Powerful UI Construction

https://kalugab.hashnode.dev/exploring-jsx-the-gateway-to-reacts-powerful-ui-construction

Hashnode - javascript (Javascript)

JSX, or JavaScript XML, is a syntax extension for JavaScript that is commonly used with React to describe the UI structure of an application. It allows developers to write HTML-like code in their JavaScript files, which is then transformed into React...


13: Day 19 : Working with CSV and JSON files in Python

https://poojadanu.hashnode.dev/day-19-working-with-csv-and-json-files-in-python

Hashnode - python (python)

Welcome to Day 19 of our Python journey! Today, we're exploring the world of data manipulation as we explore the complexities of working with JSON and CSV files in Python. In the realm of data processing, these two file formats play pivotal roles, se...


14: Day 6 - Union Types and Union Guards

https://osafalisayed.com/day-6-union-types-and-union-guards

Hashnode - javascript (Javascript)

Sometimes we want to allow more than one type in a variable, This can be easily done using Union Types. We simply add "|" symbol between the types that we define and viola! var x: number | string; x = 2; x = "1"; // both types are valid now because o...


15: Simulating a Car Driving Across London in 20 Lines of Python

https://harrymunro.hashnode.dev/simulating-a-car-driving-across-london-in-20-lines-of-python

Hashnode - python (python)

Ever thought you could mimic a car's jaunt across London without leaving your desk or touching a steering wheel' With the magic of Python and a few clever libraries, we're about to embark on a virtual tour through the Holborn's winding streets, all f...


16: TikTok warns 'predetermined' vote on U.S. ban will 'damage millions of businesses'

https://searchengineland.com/tiktok-predetermined-us-ban-damage-businesses-438274

Search engine land (Référencement)

TikTok could lose its 150 million-strong U.S. user base if new legislation receives Senate approval next week.


17: Shift from MERN to LAMP Stack

https://thirublog.dev/shift-from-mern-to-lamp-stack

Hashnode - javascript (Javascript)

MERN STACK It's a combination of four technologies used for building web applications: MongoDB, Express.js, React.js, and Node.js. Each component plays a specific role in the development process. MongoDB: A type of database that stores data in a fo...


18: Type Safety in TypeScript - Unknown vs Any

https://blog.sachinchaurasiya.dev/type-safety-in-typescript-unknown-vs-any

Hashnode - javascript (Javascript)

TypeScript is very popular because it adds static typing to JavaScript. This makes the code safer and better quality, which JavaScript developers like. In TypeScript, two types that are often used are unknown and any. They might look the same at firs...


19: React fiber got easy !

https://divyang-chhantbar.hashnode.dev/react-fiber-got-easy

Hashnode - javascript (Javascript)

React have a rendering enviornment such as ReactDOM , lets learn about VirtualDOM, Reconciliation It is an algorithm used in diffing of trees it is what we call a VirtualDOM and tells what parts need to be changed . Diffing of trees is when you cre...


20 / 604

20: Exploring the World of Statistics with Python

https://bses.hashnode.dev/exploring-the-world-of-statistics-with-python

Hashnode - python (python)

Introduction Statistics is a valuable tool that allows us to understand and make sense of the vast amounts of data around us. Recently, I took a course on statistics by Maggie Matsui using Datacamp and Python to explore this field. I'm excited to sha...


21: Day 22: Testing and Test-Driven Development (TDD) in Python

https://himanshuchauhan.hashnode.dev/day-22-testing-and-test-driven-development-tdd-in-python

Hashnode - python (python)

In this blog, we'll delve into Test-Driven Development (TDD), an essential programming approach. We'll explore its significance, particularly in the context of Python. This post marks the twenty-second installment in my Python learning journey series...


22: Tangle Refresher 258 ' CZT María Tovar's inkless tangling technique, our random string, and how to draw Beelight, S-Vine, Sikito, Saatin, Tut

https://feeds.feedblitz.com/~/873319409/0/tanglepatterns~Tangle-Refresher-?-CZT-Mar?a-Tovar?s-inkless-tangling-technique-our-random-string-and-how-to-draw-Beelight-SVine-Sikito-Saatin-Tut.html

TanglePatterns (Zentangle)

Buried Treasure - spotlighting hidden tangle and tutorial gems from the past in the Zentangle® world! And our random string of the week ... Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


24: Prioritizing Your Own Vision

https://huntmanjoe.hashnode.dev/prioritizing-your-own-vision

Hashnode - python (python)

Creativity is a great part of life, it's something that inspires people to create goals and meaning in their lives. Everyone has different levels of creativity, and in some regards it is a highly important skill to possess. I have always felt that I ...


25: Describe the process of adding a worker node to a Docker Swarm.

https://lingarajtechhub.com/describe-the-process-of-adding-a-worker-node-to-a-docker-swarm

Hashnode - javascript (Javascript)

To add a worker node to a Docker Swarm, you need to follow these steps: On the manager node, initialize the Docker Swarm using the docker swarm init command. This command will provide you with a join token. docker swarm init --advertise-addr


26: E-commerce : Puma migre son infrastructure vers Google Cloud

https://www.usine-digitale.fr/article/e-commerce-puma-migre-son-infrastructure-vers-google-cloud.N2209657

L'usine-digitale (Informatique)

L'équipementier de sport Puma transfère plusieurs éléments de son 'écosystème e-commerce', y compris son site web, vers Google Cloud. L'objectif : améliorer l'expérience d'achat en ligne, en tirant profit des solutions d'intelligence artificielle proposées par Google Cloud.


27: Build a HTML5 game like 'Watermelon Game' using Phaser and Box2D powered by Planck.js ' step 6: saving high score and using object pooling

https://www.emanueleferonato.com/2024/03/08/build-a-html5-game-like-watermelon-game-using-phaser-and-box2d-powered-by-planck-js-step-5-saving-high-score-and-using-object-pooling/

Emanuele Feronato (Javascript / .GAME)

Now HTML5 prototype of the Watermelon Game uses object pooling to save resources, and can save the best score with local storage. Enjoy and get the commented source code. Powered by Phaser and Box2D through Planck.js, written in TypeScript.


28: Mastering LeetCode's Height-Balanced Binary Tree: A Comprehensive Guide

https://blog.seancoughlin.me/mastering-leetcodes-height-balanced-binary-tree-a-comprehensive-guide

Hashnode - python (python)

In the realm of software engineering interviews, the ability to tackle algorithm and data structure problems is a cornerstone of success. Today, I delve into the Height-Balanced Binary Tree problem (LeetCode 110 Balanced Binary Tree), a question that...


29: Apple vs. Android Design: How their design philosophies influence the past and present

https://blog.logrocket.com/ux-design/apple-vs-android-design/

Log Rocket blog (Web 2)

From the simplicity of Apple to the open source diversity championed by Android, we unravel the UX philosophies of their design choices. The post Apple vs. Android Design: How their design philosophies influence the past and present appeared first on LogRocket Blog.


30 / 604

30: Le groupe Nobelium a piraté aussi du code source de Microsoft

https://www.lemondeinformatique.fr/actualites/lire-le-groupe-nobelium-a-pirate-aussi-du-code-source-de-microsoft-93184.html

Le monde informatique (Internet / Informatique)

Au début de l'année 2024, Microsoft avait alerté sur une campagne de cyber-espionnage menée par un groupe aux multiples (...)


31: Day - 40 of DevOps

https://gokuldevops.hashnode.dev/day-40-of-devops

Hashnode - python (python)

Encapsulation is a core concept of OOP (Object Oriented Programming) In the realm of object-oriented programming (OOP), encapsulation plays a vital role in creating robust and maintainable code. It allows us to encapsulate data and methods within a c...


32: Mastering CRUD Operations with Python:

https://desiahbarnett.hashnode.dev/mastering-crud-operations-with-python

Hashnode - python (python)

Introduction CRUD (Create, Read, Update, Delete) operations are fundamental in software development, allowing us to manage data effectively. In this beginner-friendly blog post, we are going to dive into the world of CRUD operations using Python, foc...


33: Gaia-X : des projets commencent à éclore

https://www.lemondeinformatique.fr/actualites/lire-gaia-x-des-projets-commencent-a-eclore-93176.html

Le monde informatique (Internet / Informatique)

Lancée il y a bientôt 4 ans (juin 2020), l'initiative Gaia-X visant à fédérer des projets d'échanges standardisés (...)


34: Leader Spotlight: The triad of consumer, business, and tech strategy, with Karthik Viswanathan

https://blog.logrocket.com/product-management/leader-spotlight-karthik-viswanathan/

Log Rocket blog (Web 2)

Karthik Viswanathan discusses the triad of consumer needs, business strategy, and technology and data strategy. The post Leader Spotlight: The triad of consumer, business, and tech strategy, with Karthik Viswanathan appeared first on LogRocket Blog.


35: Success At Scale: Last Chance For Pre-Sale Price

https://smashingmagazine.com/2024/03/success-at-scale-book-pre-release/

Smashing magazine (CSS / Web 2)

Our next book, 'Success at Scale' is finally at the printer, which means we'll be shipping books soon. It's also your last chance to get the book at the presale price. Get your copy and save now!


36: Publicité en ligne : L'IAB peut être responsable conjoint du traitement des préférences des utilisateurs

https://www.usine-digitale.fr/article/publicite-en-ligne-l-iab-peut-etre-responsable-conjoint-du-traitement-des-preferences-des-utilisateurs.N2209629

L'usine-digitale (Informatique)

C'était une décision particulièrement attendue et qui pourrait provoquer certains bouleversements dans le monde la publicité en ligne. La Cour de justice de l'Union européenne a jugé que la TC String, norme développée par l'IAB Europe, était une donnée personnelle et qu'à ce titre, l'association pouvait être qualifiée de responsable conjoint du traitement des préférences des utilisa [...]


37: Reddit pilots new tools to help brands boost engagement

https://searchengineland.com/reddit-pro-suite-tools-engagement-438258

Search engine land (Référencement)

Businesses that sign up for the Reddit Pro trial will have access to AI-powered insights, enhanced performance analytics, and more.


38: Uniplot: Terminal-Based Plotting for Enhanced Data Science Pipelines

https://mathdatasimplified.com/uniplot-terminal-based-plotting-for-enhanced-data-science-pipelines/

Math Data Simplified (data)

Uniplot, a lightweight library, generates plots directly in the terminal. Its independence from the Jupyter Notebook allows for versatile use, such as seamlessly integrating plotting capabilities into your data science CI/CD pipeline. As a result, when a problem occurs, you …


39: March Javascript Sketches

https://gajardomunoz.hashnode.dev/march-javascript-sketches

Hashnode - javascript (Javascript)

Hey! It's back-to-class time, and after a long vacation, we return with a lot of ideas and energy! This time, I want to share with you two mini-projects that indulge my math-artistic side. I have to be honest; these ideas come from Instagram reels, a...


40 / 604

40: Comment la VR peut vous économiser une fortune en sexothérapie '

https://www.realite-virtuelle.com/vr-sexotherapie/

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

En France, les tarifs d'une sexothérapie peuvent varier de 50 à 150 euros par séance. […] Cet article Comment la VR peut vous économiser une fortune en sexothérapie ' a été publié sur REALITE-VIRTUELLE.COM.


41: Python Revision Project - 1

https://bidhan-bajracharya.hashnode.dev/python-revision-project-1

Hashnode - python (python)

Project Description This is a simple project where users can view, create, search, update and delete contacts through the CLI. The contact detail contains name, number and email, and the data is stored in a .txt file. The entire code of the project ...


42: visionOS 1.1 est disponible ' Découvrez les améliorations apportées

https://www.realite-virtuelle.com/visionos-1-1-disponible-voici-les-ameliorations/

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

VisionOS, le système d'exploitation de l'Apple Vision Pro, voit arriver sa première mise à jour […] Cet article visionOS 1.1 est disponible ' Découvrez les améliorations apportées a été publié sur REALITE-VIRTUELLE.COM.


43: Dell Technologies France va supprimer 323 postes

https://www.lemondeinformatique.fr/actualites/lire-dell-technologies-france-va-supprimer-323-postes-93177.html

Le monde informatique (Internet / Informatique)

En début d'année, Anwar Dahab, directeur général de Dell Technologies France évoquait une année 2023 difficile (...)


44: Tout ce qu'il faut savoir sur la méthodologie DevOps

https://www.lebigdata.fr/tout-sur-methodologie-devops

Le Big Data (dataviz)

Au fil des années, l'industrie du développement informatique a connu de nombreuses innovations. Cela passe tout autant par l'apparition de … Cet article Tout ce qu'il faut savoir sur la méthodologie DevOps a été publié sur LEBIGDATA.FR.


45: Google en croisade contre le contenu médiocre : qu'est-ce que ça change pour vos recherches''

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

Le Big Data (dataviz)

Oui, les résultats de recherche sur Google se dégradent depuis quelques années. Mais ne vous inquiétez pas, car le géant … Cet article Google en croisade contre le contenu médiocre : qu'est-ce que ça change pour vos recherches'' a été publié sur LEBIGDATA.FR.


46: Exploring useSyncExternalStore, a lesser-known React Hook

https://blog.logrocket.com/exploring-usesyncexternalstore-react-hook/

Log Rocket blog (Web 2)

Understanding how to use lesser-known React Hooks like useSyncExternalStore can help you elevate your React projects. The post Exploring useSyncExternalStore, a lesser-known React Hook appeared first on LogRocket Blog.


47: 5 biggest challenges for PPC marketers in 2024

https://searchengineland.com/ppc-marketers-biggest-challenges-438234

Search engine land (Référencement)

Get insights into the major hurdles PPC marketers will confront this year, from evolving audience targeting to changing tracking requirements.


48: Google issues search ranking penalties through manual actions

https://searchengineland.com/google-issues-search-ranking-penalties-through-manual-actions-438253

Search engine land (Référencement)

Check your properties within Google Search Console for manual actions to see if your were impacted.


49: Les nouveautés explosives de Monster Hunter Now ' Saision 1

https://www.realite-virtuelle.com/monster-hunter-now-diable-vernal-nouveautes/

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

Niantic annonce le début de la première saison de Monster Hunter Now, nommée « Le Diable […] Cet article Les nouveautés explosives de Monster Hunter Now – Saision 1 a été publié sur REALITE-VIRTUELLE.COM.


50 / 604

50: Decoding JavaScript Mysteries: Unraveling the Memes Behind '11'+1 and '11'-1"

https://siddik.hashnode.dev/decoding-javascript-mysteries-unraveling-the-memes-behind-111-and-11-1

Hashnode - javascript (Javascript)

We've all come across numerous memes highlighting the eccentricities of JavaScript. Many fellow bootcamp attendees I've met are firmly convinced that JavaScript possesses a mind of its own, seemingly determined to avoid throwing any errors. Join me a...


51: Navigating Your Travels: A Guide to Using Python's sorted() Function

https://keyathecoder.hashnode.dev/navigating-your-travels-a-guide-to-using-pythons-sorted-function

Hashnode - python (python)

Hey, fellow coding enthusiasts! Today, I'm excited to delve into the intricacies of Python and share some insights on how to effectively use the sorted() function. In this blog post, we'll explore a practical example ' sorting travel data using the s...


52: An overview of product themes

https://blog.logrocket.com/product-management/themes-definition/

Log Rocket blog (Web 2)

A product theme is a high level determinator of the activities you're planning to achieve that connects all the tasks of a product. The post An overview of product themes appeared first on LogRocket Blog.


53: Meta Quest Link rayonne avec une nouvelle splendeur !

https://www.realite-virtuelle.com/meta-quest-link-mise-a-jo/

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

En effet, Meta Quest Link vient d'obtenir une mise à jour particulièrement intéressante. Et avec […] Cet article Meta Quest Link rayonne avec une nouvelle splendeur ! a été publié sur REALITE-VIRTUELLE.COM.


54: Comment utiliser un LLM open source '

https://blog.octo.com/comment-utiliser-un-llm-open-source-1

Octo (Internet)

Vous trouvez l'intelligence artificielle générative révolutionnaire mais votre organisation refuse d'utiliser des APIs propriétaires ' Bonne nouvelle, dans cet article nous voyons comme libérer le potentiel de cette technologie avec des modèles open source !


55: Introduction to 100 Days of Code: What It Is and Why It Matters.

https://blog.dotarjun.com/introduction-to-100-days-of-code-what-it-is-and-why-it-matters

Hashnode - javascript (Javascript)

Hey there! So, you've heard about the 100 Days of Code challenge, right' If not, here's the TLDR. ' Code for 1 hour a day for 100 days Sounds intense, but it's actually a super cool way to get better at coding, whether you're just starting out or...


56: Climate change SEO survey: Making the web more sustainable

https://searchengineland.com/climate-change-seo-survey-making-web-more-sustainable-438209

Search engine land (Référencement)

Uncover the link between SEO and environmental sustainability and how SEOs can aid in shaping a greener digital landscape.


57: Innovations virtuelles : comment Unreal VR redéfinit les frontières du possible

https://www.realite-virtuelle.com/unreal-vr-etudes-de-cas/

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

Chaque jour, les technologies de réalité virtuelle (VR), de réalité augmentée (AR) et de réalité […] Cet article Innovations virtuelles : comment Unreal VR redéfinit les frontières du possible a été publié sur REALITE-VIRTUELLE.COM.


58: Text to audio : comment l'IA vocalise vos textes

https://www.lebigdata.fr/outil-ia-text-to-audio

Le Big Data (dataviz)

Une véritable technologie innovante, la fonctionnalité text to audio est un atout pour certains professionnels. Elle permet de lire à … Cet article Text to audio : comment l’IA vocalise vos textes a été publié sur LEBIGDATA.FR.


59: Nvidia va créer des robots pour le monde réel et virtuel : découvrez GEAR

https://www.lebigdata.fr/nvidia-gear

Le Big Data (dataviz)

Nvidia vient de créer un nouveau groupe de recherche appelé GEAR. Son objectif est de développer des robots alimentés par … Cet article Nvidia va créer des robots pour le monde réel et virtuel : découvrez GEAR a été publié sur LEBIGDATA.FR.


60 / 604

60: Tout savoir sur Git, un outil incontournable pour les développeurs

https://www.lebigdata.fr/tout-savoir-sur-git

Le Big Data (dataviz)

Le développement logiciel est un univers complexe et en constante évolution. De nombreux programmeurs doivent travailler de concert pour mener … Cet article Tout savoir sur Git, un outil incontournable pour les développeurs a été publié sur LEBIGDATA.FR.


61: Avec Ingénieuses, la Fipa s'engage à féminiser les métiers techniques

https://www.lemondeinformatique.fr/actualites/lire-avec-ingenieuses-la-fipa-s-engage-a-feminiser-les-metiers-techniques-93175.html

Le monde informatique (Internet / Informatique)

Les chiffres sont catégoriques : les jeunes filles sont trop peu nombreuses à s'orienter vers des études scientifiques et techniques (...)


62: Victòria Oliveres, elDiario.es, will speak about how her team is using Datawrapper

https://blog.datawrapper.de/eldiarioes-victoria-oliveres/

Data Wrapper ()

We’re excited to announce that Victòria Oliveres, data journalist at the Spanish online newssite elDiario.es,...


63: Votre IP est-elle en danger sur WhatsApp ' Stoppez la fuite maintenant !

https://www.lebigdata.fr/votre-ip-est-elle-en-danger-sur-whatsapp-stoppez-la-fuite-maintenant

Le Big Data (dataviz)

Avec l'avènement des appels audio et vidéo sur X (anciennement Twitter) et la popularité croissante de WhatsApp, communiquer n'a jamais … Cet article Votre IP est-elle en danger sur WhatsApp ' Stoppez la fuite maintenant ! a été publié sur LEBIGDATA.FR.


64: Google lance un concours à 5 millions de dollars pour trouver des cas d'usage aux ordinateurs quantiques

https://www.usine-digitale.fr/article/google-lance-un-concours-a-5-millions-de-dollars-pour-trouver-des-cas-d-usage-aux-ordinateurs-quantiques.N2209636

L'usine-digitale (Informatique)

Le concours international, intitulé 'Xprize Quantum Applications', s'étale sur trois ans. Il vise à concevoir des algorithmes d'informatique quantique pouvant être appliqués pour 'résoudre des défis du monde réel'. Vingt équipes seront sur la ligne de départ.


65: Modern CSS Tooltips And Speech Bubbles (Part 2)

https://smashingmagazine.com/2024/03/modern-css-tooltips-speech-bubbles-part2/

Smashing magazine (CSS / Web 2)

In Part 1 of this series, Temani Afif explored different CSS techniques to create tooltip shapes. The main challenge was to rely on a single element and create optimized code that could easily be controlled using CSS variables to update the size, shape, and position of the tail. In this second part, you are going explore more shapes.


66: Collective 819

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

Codrops (Design / Internet)

Home Screen Advantage * AI and Design Systems * CSS Foundations: What is IACVT'


67: Practice question For Functional programming in JS LEVEL `1`

https://rahul319.hashnode.dev/practice-question-for-functional-programming-in-js-level-1

Hashnode - javascript (Javascript)

Problems using map(), filter() and reduce(). Q1. Write an ES6 function that takes an array of numbers and returns an array with each number incremented by 3 using the map method. // Your ES6 function here const incrementNumbers = (numbers) => { ret...


68: Interview Questions related to reduce() in js.

https://rahul319.hashnode.dev/interview-questions-related-to-reduce-in-js

Hashnode - javascript (Javascript)

What is the purpose of the reduce() function in JavaScript' The reduce() function is used to reduce an array to a single value. It applies a function against an accumulator and each element in the array (from left to right) to reduce it to a single ...


69: Object Oriented Programming comparison: Java vs C++ vs Python

https://voidp.hashnode.dev/oop-comparison

Hashnode - python (python)

Are you a programmer looking to level up your OOP skills or just starting your object-oriented journey' This blog series is your one-stop shop for comparing and contrasting the powerhouses of OOP: Java, C++, and Python! While all three languages embr...


70 / 604

70: NodeJS Architecture Explained

https://jayrajblog.hashnode.dev/nodejs-architecture-explained

Hashnode - javascript (Javascript)

Now that we have so many programming languages, it is hard to choose which one is good for us(keeping in mind the outcome that we expect). In this series of blog, I'll cover few programming languages and their architecture, so that you know what the ...


71: ExpansionPanel Widget and Attributes

https://vinitmepani.hashnode.dev/expansionpanel-widget-and-attributes

Hashnode - Flutter (Flutter)

Dynamically managing content visibility is a common requirement in many Flutter applications. The ExpansionPanel widget provides an elegant solution by allowing users to expand or collapse sections of content. In this blog post, we'll explore the Exp...


72: Getting started with PWAs

https://10xdev.codeparrot.ai/getting-started-with-pwas

Hashnode - javascript (Javascript)

A progressive web app (PWA) is an app that's built using web platform technologies, but that provides a user experience like that of a platform-specific app. Some popular PWAs are Starbucks, BMW. Try installing them by opening Browser Menu > Save and...


73: Scrollable Widget and Attributes

https://vinitmepani.hashnode.dev/scrollable-widget-and-attributes

Hashnode - Flutter (Flutter)

Scrollable content is a fundamental aspect of many Flutter applications. Flutter provides the Scrollbar widget to enhance the user experience by adding a scrollbar to scrollable widgets. In this blog post, we'll explore the Scrollbar widget, its key ...


74: Mode Turbo activé : la nouvelle Midjourney V6 va changer votre vision !

https://www.lebigdata.fr/mode-turbo-midjourney-v6

Le Big Data (dataviz)

Quelle surprise ! Midjourney, précurseur des générateurs d'art AI largement intégrés dans différents secteurs, dévoile enfin le modèle v6 ultra-performant. … Cet article Mode Turbo activé : la nouvelle Midjourney V6 va changer votre vision ! a été publié sur LEBIGDATA.FR.


75: Retour sur le SEO by Night 2024

https://www.abondance.com/20240308-426181-retour-seo-by-night.html

Abondance (Référencement)

L'article "Retour sur le SEO by Night 2024" a été publié sur le site Abondance.


76: The Path to Java Proficiency: A Step-by-Step Guide

https://roselie222.hashnode.dev/the-path-to-java-proficiency-a-step-by-step-guide

Hashnode - javascript (Javascript)

Establishing the path to becoming proficient in Java requires a deliberate approach that includes practice, practice, and ongoing improvement. Enrolling in a Java Course in Chennai significantly enhances one's ability to leverage Java's capabilities ...


77: Intelligence artificielle : un ingénieur a volé des secrets industriels de Google pour les revendre en Chine

https://www.usine-digitale.fr/article/intelligence-artificielle-un-ingenieur-de-google-a-vole-des-secrets-industriels-pour-les-revendre-en-chine.N2209627

L'usine-digitale (Informatique)

Un ingénieur ayant travaillé pour Google aux États-Unis a été arrêté et inculpé par un grand jury fédéral américain pour 'tentative de vol industriel'. Il aurait volé au géant du web plus de 500 fichiers confidentiels, qui concerneraient ses puces spécialisées TPU et ses datacenters utilisés pour le traitement de l'IA. Le ressortissant chinois risque jusqu'à dix ans de prison et 2 [...]


78: Le SaaS, une poche de dépenses à optimiser pour la DSI

https://www.lemondeinformatique.fr/actualites/lire-le-saas-une-poche-de-depenses-a-optimiser-pour-la-dsi-93165.html

Le monde informatique (Internet / Informatique)

Malgré l'attention que les entreprises portent à leurs dépenses sur les différentes formes de cloud, elles continuent à (...)


79: Des préjugés sexistes omniprésents dans l'IA générative selon l'Unesco

https://www.lemondeinformatique.fr/actualites/lire-des-prejuges-sexistes-omnipresents-dans-l-ia-generative-selon-l-unesco-93174.html

Le monde informatique (Internet / Informatique)

Les préjugés sexistes existent dans les sociétés humaines et ils se retrouvent dans le monde de l'IA. C'est un des enseignements (...)


80 / 604

80: Les femmes et les métiers du numérique : où en sommes-nous en 2024 '

https://www.blogdumoderateur.com/femmes-et-metiers-du-numerique-2024/

Blog du Moderateur ()

Les femmes sont encore sous-représentées dans les métiers du numérique. Quels sont les enjeux de la féminisation dans ce secteur ' Quelles actions peuvent être mises en place ' Réponses avec Social Builder !


81: Mapping the crops with the most potential in a changing climate

https://flowingdata.com/2024/03/08/mapping-the-crops-with-the-most-potential-in-a-changing-climate/

Flowing data (dataviz)

The climate is changing, which means some crops will fair better or worse…Tags: agriculture, climate, food, Stamen


82: Fatigue du changement : stratégies inspirées de la diététique pour des changements soutenables et impactants

https://blog.octo.com/fatigue-du-changement--strategies-inspirees-de-la-dietetique-pour-des-changements-soutenables-et-impactants

Octo (Internet)

Découvrez comment la fatigue du changement peut compromettre la réussite de vos transformations. Explorons ensemble les parallèles surprenants avec la fatigue du régime et, apprenez à surmonter ces obstacles pour des changements plus soutenables et impactants.


83: Fatigue du changement : stratégies inspirées de la diététique pour des changements soutenables et impactants

https://blog.octo.com/fatigue-du-changement--strategies-inspirees-de-la-dietetique-pour-des-changements-soutenables-et-impactants-1

Octo (Internet)

Découvrez comment la fatigue du changement peut compromettre la réussite de vos transformations. Explorons ensemble les parallèles surprenants avec la fatigue du régime et, apprenez à surmonter ces obstacles pour des changements plus soutenables et impactants.


84: Nouvelles propriétés dans la Search Console : Google exige plus de détails sur vos recettes

https://www.abondance.com/20240308-429727-nouvelles-proprietes-dans-la-search-console-google-exige-plus-de-details-sur-vos-recettes.html

Abondance (Référencement)

Google a ajouté deux propriétés dans le rapport sur les résultats enrichis des recettes dans Google Search Console : recipeInstructions et recipeIngredient. La documentation a également été modifiée. Ce qu'il faut retenir : Google a intégré 2 nouvelles propriétés : recipeInstructions et recipeIngredient dans le rapport sur les résultats enrichis des recettes sur la Search […] L' [...]


85: Demystifying Python: A Peek into How Your Code Comes to Life

https://ash1ni.hashnode.dev/demystifying-python-a-peek-into-how-your-code-comes-to-life

Hashnode - python (python)

Welcome to the backstage tour of Python! Ever wondered what happens behind the scenes when you run your Python code' Let's take a journey through the inner workings of this beloved language, breaking down complex concepts into bite-sized pieces. Inst...


86: Building LLM Applications in LangChain using pgvecto.rs

https://blog.pgvecto.rs/building-llm-applications-in-langchain-using-pgvectors

Hashnode - python (python)

LangChain is a framework for developing applications powered by language models. It enables applications that: Are context-aware: connect a language model to sources of context (prompt instructions, few shot examples, content to ground its response ...


87: Simplifying Data Fetching in React with SWR: A Quick Guide

https://blog.shlomisela.com/simplifying-data-fetching-in-react-with-swr-a-quick-guide

Hashnode - javascript (Javascript)

Modern React applications often require real-time data fetching, caching, and synchronization, which can be challenging. SWR, developed by Vercel, simplifies this process significantly. This article explores how to harness the power of SWR to improve...


88: Mastering React with SOLID Principles: A Practical Guide

https://blog.shlomisela.com/mastering-react-with-solid-principles-a-practical-guide

Hashnode - javascript (Javascript)

React's component-based architecture makes it an excellent framework to apply SOLID principles. These principles enhance scalability, maintainability, and robustness in applications. This article focuses on implementing SOLID principles in React, s...


89: Unlocking Performance with Concurrent Rendering in React 18

https://blog.shlomisela.com/unlocking-performance-with-concurrent-rendering-in-react-18

Hashnode - javascript (Javascript)

React 18 introduces an exciting new feature: Concurrent Rendering. This article takes a deep dive into what Concurrent Rendering is, its benefits, and how it represents a significant shift from the traditional synchronous rendering approach in React....


90 / 604

90: Advanced Hooks in React: Beyond useState and useEffect

https://blog.shlomisela.com/advanced-hooks-in-react-beyond-usestate-and-useeffect

Hashnode - javascript (Javascript)

Exploring advanced React hooks is key for developers looking to create efficient and scalable applications. This article dives into these hooks, offering insights and practical code examples. Introduction React's Hooks API revolutionized functional c...


91: 5 leçons d'une transformation

https://blog.octo.com/5-lecons-d'une-transformation-1

Octo (Internet)

Nous vivons une époque qui nécessite des transformations personnelles, business, méthodologiques, organisationnelles et stratégiques. Certaines ont réussi ce changement profond et beaucoup tâtonnent. Comment s'y prendre pour que ce soit plus fluide et moins douloureux à vivre, telle est la question que je cherche à appréhender.


92: [OCTO] 5 leçons d'une transformation

https://blog.octo.com/octo-5-lecons-d'une-transformation

Octo (Internet)

Nous vivons une époque qui nécessite des transformations personnelles, business, méthodologiques, organisationnelles et stratégiques. Certaines ont réussi ce changement profond et beaucoup tâtonnent. Comment s'y prendre pour que ce soit plus fluide et moins douloureux à vivre, telle est la question que je cherche à appréhender.


93: ' Sortie de GitLab 16.9 | Release Notes

https://lydra.fr/blog/release-notes-gitlab-16-9/

Humancoders ()

' J'analyse les nouveautés de #GitLab 16.9 Tu es prêt à plonger dans les secrets de la dernière version de GitLab 16.9 ' Alors, accroche-toi ! Dans cet article, on va décortiquer ensemble toutes les nouveautés qui rendent GitLab encore plus incontournable pour tes projets. Que tu sois un aficionado du code, un as du DevOps, ou simplement curieux de voir comment GitLab continue de révolutio [...]


94: Comment concevoir des systèmes de données résilients et à grande échelle

https://blog.dataengineer.io/p/how-to-design-resilient-and-large

Humancoders ()

Cet article explique la construction de systèmes de données à grande échelle et résilients. Il explique comment optimiser la latence, l'intégrité des données et sa scalabilité. Il parle également du théorème CAP pour équilibrer disponibilité, cohérence et tolérance aux pannes. Commentaires L'article Comment concevoir des systèmes de données résilients et à grande échelle a é [...]


95: 10 extensions Chrome pour les designers

https://www.blogdumoderateur.com/10-extensions-chrome-designers/

Blog du Moderateur ()

Découvrez notre sélection d'extensions pour le navigateur Chrome, destinées à aider les designers dans leurs tâches quotidiennes.


96: Create a Web UI to use the GenAI streaming API

https://k33g.hashnode.dev/create-a-web-ui-to-use-the-genai-streaming-api

Hashnode - javascript (Javascript)

Today, we won't speak AI; we will develop a SPA (Single Page Application) to use the GenAPI we did in the former post: "GenAI streaming API with LangChainJS, Ollama and Fastify" This is the final result: I want: A TextBox to type the question A "S...


97: La Cour des comptes tacle les SIRH du ministère du Travail

https://www.lemondeinformatique.fr/actualites/lire-la-cour-des-comptes-tacle-les-sirh-du-ministere-du-travail-93164.html

Le monde informatique (Internet / Informatique)

Dans un rapport publié fin février, la Cour des comptes souligne les limites de la gestion des RH au sein du ministère du Travail, (...)


98: Recul de 14 % des revenus d'HPE au 1er trimestre 2024

https://www.lemondeinformatique.fr/actualites/lire-recul-de-14-des-revenus-d-hpe-au-1er-trimestre-2024-93169.html

Le monde informatique (Internet / Informatique)

HPE a clos le 31 janvier le premier trimestre de son exercice 2024 sur un chiffre d'affaires de 6,8 Md$. Cette baisse de 14 % d'une année sur l'autre (...)


99: Leroy Merlin renouvelle sa flotte de 29 000 terminaux mobiles

https://www.lemondeinformatique.fr/actualites/lire-leroy-merlin-renouvelle-sa-flotte-de-29-000-terminaux-mobiles-93166.html

Le monde informatique (Internet / Informatique)

L'enseigne de grande distribution de bricolage, décoration et travaux pour le logement Leroy Merlin a confié le renouvellement de sa flotte (...)


100 / 604

101: Le processus de fabrication des casques VR en usine

https://www.realite-virtuelle.com/comment-faire-un-casque-vr/

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

La réalité virtuelle est aujourd'hui au c'ur de nombreux domaines tels que les jeux vidéo, l'éducation et […] Cet article Le processus de fabrication des casques VR en usine a été publié sur REALITE-VIRTUELLE.COM.


102: Priyanka Sharma (General Manager CNCF) : « En France il y a une communauté open source vibrante »

https://www.lemondeinformatique.fr/actualites/lire-priyanka-sharma-general-manager-cncf--en-france-il-y-a-une-communaute-open-source-vibrante-93009.html

Le monde informatique (Internet / Informatique)

LMI. Quels sont les principaux défis auxquels la CNCF est confrontée, et qu'est-ce qui rend cette fondation open source différente (...)


103: Why Storing JWTs in Local Storage is a Bad Idea

https://harshpathak.hashnode.dev/why-storing-jwts-in-local-storage-is-a-bad-idea

Hashnode - javascript (Javascript)

In the world of web development, security is paramount. As developers, we're tasked with protecting sensitive user data and ensuring that our applications are resilient against various threats. One common security pitfall that many developers encount...


104: The Sabbatical Surge: Extending PTO for Personal Growth and Exploration

https://www.noupe.com/inspiration/the-sabbatical-surge-extending-pto-for-personal-growth-and-exploration.html

Noupe (conception)

Are you feeling burnt out and in need of a break' Imagine this: you’ve been working tirelessly for years, and now you have the opportunity to take a sabbatical. “The Sabbatical Surge: Extending PTO for Personal Growth and Exploration” is your guide to making the most of this time off. In this book, we will... The post The Sabbatical Surge: Extending PTO for Personal G [...]


105: Custom truth testing in requests module

https://warrenmarkham.hashnode.dev/custom-truth-testing-in-requests-module

Hashnode - python (python)

This is a 'Things I Learned' entry. A TIL entry is about the things or ways of thinking that interest me, that I want to strengthen, or that I plan on coming back to. Expect quotes, code snippets, brief comments, little test explorations and such lik...


106: Javascript - Conditionals

https://ahsas.hashnode.dev/javascript-conditionals

Hashnode - javascript (Javascript)

Just like we make countless decisions in our everyday lives, programs also need to make decisions in order to achieve the desired outcomes. But unlike us emotional beings, computer programs make their decisions based on one or more logical rules or c...


107: Les gagnants et les perdants des dernières mises à jour Google

https://www.abondance.com/20240308-428777-les-gagnants-et-les-perdants-des-dernieres-mises-a-jour-google.html

Abondance (Référencement)

Sur Zyppy, le SEO Cyrus Shepard révèle les conclusions qu'il a pu tirer après avoir analysé 50 sites fortement impactés par les dernières mises à jour Google (Core, Spam, Review et HCU). L'objectif : identifier les facteurs associés à des gains ou des pertes significatives de trafic. Ce qu'il faut retenir : L'auteur de l'étude a […] L'article "Les gagnants et les perdants des dern [...]


108: Responsive Design : 5 conseils pour créer un site web adapté aux mobiles

https://www.blogduwebdesign.com/blog/creation-de-site/responsive-design-conseils-creer-site-web-adapte-mobiles.html

blogduwebdesign (Design)

Optimisez votre site web pour les utilisateurs mobiles grâce au Responsive Design. Découvrez les bases de cette approche incontournable et comprenez son importance pour l'optimisation de votre présence en ligne. Avec notre guide exclusif, suivez nos 5 conseils pour offrir une expérience utilisateur impeccable et une navigation fluide sur tous les écrans. Ne [...]


109: What is FlutterLogo and Attributes

https://vinitmepani.hashnode.dev/what-is-flutterlogo-and-attributes

Hashnode - Flutter (Flutter)

In the world of Flutter development, presenting a brand's identity is essential for creating visually cohesive and recognizable applications. The FlutterLogo widget is a built-in tool designed specifically for displaying the official Flutter logo eff...


110 / 604

110: FlutterLogo and Attributes

https://vinitmepani.hashnode.dev/flutterlogo-and-attributes

Hashnode - Flutter (Flutter)

In the world of Flutter development, presenting a brand's identity is essential for creating visually cohesive and recognizable applications. The FlutterLogo widget is a built-in tool designed specifically for displaying the official Flutter logo eff...


111: Database Connectivity in Python: A Comprehensive Guide

https://blog.bytescrum.com/database-connectivity-in-python-a-comprehensive-guide

Hashnode - python (python)

Connecting to Different Databases Python is a versatile programming language known for its simplicity and readability. One of its strengths is its ability to connect to various databases, enabling developers to manage and manipulate data efficiently....


112: How does leveraging Agile methodologies and its tools pave to SEO Excellence'

https://www.noupe.com/business-online/how-does-leveraging-agile-methodologies-and-its-tools-pave-to-seo-excellence.html

Noupe (conception)

The online business world is always competitive and the ways to find success demand you to do everything you can to attract some spotlights.  Why is it so important' You might wonder here. Think about it. The only way for any business or marketer to generate a sustaining profit is for consumers to use the... The post How does leveraging Agile methodologies and its tools pave to SE [...]


113: MouseRegion Widget and Attributes

https://vinitmepani.hashnode.dev/mouseregion-widget-and-attributes

Hashnode - Flutter (Flutter)

User interaction is a crucial aspect of any Flutter application, and it's essential to consider both touch and mouse inputs for a seamless experience across different platforms. The MouseRegion widget in Flutter provides a way to handle mouse-specifi...


114: Color switcher

https://shamad.hashnode.dev/color-switcher

Hashnode - javascript (Javascript)

Here i am going to expain each and everything step by step how made it. So you can follow along if you are beginner and if you want make your first project. HTML code Color scheme switcher


115: React Unveiled 8 - Building common UI components & Integrating with APIs

https://dev-madhav.hashnode.dev/react-unveiled-8-building-common-ui-components-integrating-with-apis

Hashnode - javascript (Javascript)

Introduction React, a powerful JavaScript library for building UI, has revolutionized the way we create modern web applications. While learning the fundamentals is crucial, witnessing how React is applied in real-world cases can significantly enhance...


116: HeroMode widget and Attributes

https://vinitmepani.hashnode.dev/heromode-widget-and-attributes

Hashnode - Flutter (Flutter)

Smooth transitions between screens or widgets play a significant role in enhancing the overall user experience in a Flutter app. The HeroMode widget is a powerful tool that facilitates the creation of visually appealing animations during widget trans...


117: How to build a PDF chatbot with Langchain '' and FAISS

https://kevincoder.co.za/how-to-build-a-pdf-chatbot-with-langchain-and-faiss

Hashnode - python (python)

While ChatGPT and other similar models are great and can give you relatively good information on any topic. A common problem is hallucination and verifying the source of the model's response. To improve the accuracy and limit the scope of these LLMs ...


118: The Magic of Object-Relational Mapping in Python

https://wrightwrites.hashnode.dev/the-magic-of-object-relational-mapping-in-python

Hashnode - python (python)

As I begin to write this article I can't help but feel an overwhelming sense of imposter syndrome. This topic of Object-Relational Mapping or ORM is one I never thought in a couple weeks was something I could reiterate or even explain to the masses. ...


119: RefreshIndicator Widget and Attributes

https://vinitmepani.hashnode.dev/refreshindicator-widget-and-attributes

Hashnode - Flutter (Flutter)

In mobile app development, providing users with a seamless and responsive experience is crucial. One way to enhance user interaction is by incorporating a pull-to-refresh feature, allowing users to update content effortlessly. Flutter's RefreshIndica...


120 / 604

120: Mastering Dart: A Comprehensive Guide on Getters and Setters

https://nibu.hashnode.dev/mastering-dart-a-comprehensive-guide-on-getters-and-setters

Hashnode - Flutter (Flutter)

Introduction Imagine your data as a vault filled with priceless gems (valuable information, obviously). You wouldn't just leave it wide open, would you' Getters and setters are like the vault's security system, granting access only to authorized pers...


121: Elon Musk soutient-il vraiment le profit ' La vérité choquante derrière ses e-mails

https://www.lebigdata.fr/musk-openai-poursuite-judiciaire

Le Big Data (dataviz)

Il y a près d'une semaine, Elon Musk est entré dans une bataille juridique contre OpenAI. Selon lui, l'entreprise derrière … Cet article Elon Musk soutient-il vraiment le profit ' La vérité choquante derrière ses e-mails a été publié sur LEBIGDATA.FR.


122: Toolib veut rendre les Jeux Olympiques plus accessibles aux fans en situation de handicap

https://www.usine-digitale.fr/article/toolib-veut-rendre-les-jeux-olympiques-plus-accessibles-aux-fans-en-situation-de-handicap.N2209606

L'usine-digitale (Informatique)

Alors que les Jeux Olympiques et les Jeux Paralympiques se profilent et avec eux, l'arrivée massive d'un large public, Toolib 'uvre à rendre le pays plus accessible pour les personnes en situation de handicap.


123: Zama, Bene Bono, Elux Group' Les levées de fonds de la French Tech cette semaine

https://www.usine-digitale.fr/article/zama-bene-bono-elux-group-les-levees-de-fonds-de-la-french-tech-cette-semaine.N2209605

L'usine-digitale (Informatique)

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


124: Streamlining Data Pipelines with Apache Airflow and Python

https://pinakdatta.hashnode.dev/streamlining-data-pipelines-with-apache-airflow-and-python

Hashnode - python (python)

Overview: In the era of big data, managing and processing large volumes of data efficiently is a critical challenge for businesses. Data pipelines play a crucial role in this process, allowing organizations to ingest, process, and analyze data from v...


125: Javascript ''' ''' '' ''

https://ted-projects.com/javascript

Hashnode - javascript (Javascript)

1. ''(Callback) '' '': '' '''' ''' '' ''. ''' '' ''' ''' '''', '' '''' ''' ' '' ''' ''' '''''. '': ''' ''' '', '' ''' '' '' '', ''' '''''/'''''' '' '', '' '' ''' ''''. '': ''' '''' '' ''' '''' '''' ''' ''' ' '' ' ' ''''. '' '': function fetchDa...


126: Javascript ''' ''' '' ''

https://ted-projects.com/javascript-asynchronous

Hashnode - javascript (Javascript)

1. ''(Callback) '' '': '' '''' ''' '' ''. ''' '' ''' ''' '''', '' '''' ''' ' '' ''' ''' '''''. '': ''' ''' '', '' ''' '' '' '', ''' '''''/'''''' '' '', '' '' ''' ''''. '': ''' '''' '' ''' '''' '''' ''' ''' ' '' ' ' ''''. '' '': function fetchDa...


127: Niquests

https://github.com/jawah/niquests

pointer.io (Développement)

Simple HTTP library.


128: How Capable Leaders Navigate Uncertainty And Ambiguity

https://cutlefish.substack.com/p/tbm-274-how-capable-leaders-navigate

pointer.io (Développement)

'What do leaders who are skilled at navigating complexity know how to do' What do they do differently' What would you observe if a leader had these skills'' The authors asked these questions, and answered them using general behaviors they've observed first. These include: (1) Accepting they are part of the problem and have contributed to the current situation. (2) Encourage new interaction pattern [...]


129: The Most Important Goal In Designing Software Is Understandability

https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/

pointer.io (Développement)

Nicole advises on how to make our code inherently more understandable: (1) Remember your audience i.e. what will other maintainers be expected to know. (2) Isolate the highest complexity. If something is complicated, pulling it into its own unit, such as a module or function. (3) Read it with fresh eyes a few days later. (4) Integrate any code review comments by updating the code and comments. Nic [...]


130 / 604

130: The Developer's Guide To SSO

https://workos.com/blog/the-developers-guide-to-sso

pointer.io (Développement)

Implementing single sign-on (SSO) is often the first step to selling to enterprises and can function as the difference maker in your company's success. This guide explains what SSO is, why it's critical for enterprises, and best practices for getting it up, running, and integrated with your app. 


131: How I Use Git Worktrees

https://notes.billmill.org/blog/2024/03/How_I_use_git_worktrees.html

pointer.io (Développement)

'My favorite feature of git is one that not enough people know about: worktrees. Worktrees allow you to store branches of your repository in separate directories. This means you can switch branches by changing directory, instead of switching between branches in the same directory with git checkout or git switch. I've never seen anybody describe using worktrees quite the way I do, so I thought I'd [...]


132: An Engineering Leader's Job Search Algorithm

https://docs.google.com/document/d/19fr_36WOzKlq_zyGP2RdxMEsdNQMZdUqn1Vahncr2pY/edit

pointer.io (Développement)

Word document written by Kevin, an Engineering Manager at Meta. 'This outlines the algorithm I've used for my job searches. It's not perfect. There's no one right way to do this, and your mileage will vary. However, I've tried to capture the common elements and rules of thumb I've picked up over the years in the hopes that it will help someone else through what is all too often a very stressful pr [...]


133: Rye

https://github.com/astral-sh/rye

pointer.io (Développement)

Project and package management solution for Python.


134: The 'Missing" Graph Datatype Already Exists. It Was Invented In The '70s

https://tylerhou.com/posts/datalog-go-brrr/

pointer.io (Développement)

A response to the above. Tyler agrees with a lot of Wayne's reasoning but not with his conclusion ' that graphs are inherently too complex to be well-supported by mainstream programming languages. 'Languages could have amazing graph support.' Tyler believes structured programming model of modern programming languages is ill-suited for graph algorithms.


135: Daytona

https://github.com/daytonaio/daytona

pointer.io (Développement)

OS Dev environment manager.


136: Puter

https://github.com/HeyPuter/puter

pointer.io (Développement)

OS desktop environment in the browser.


137: A Technology Leader's Non-Technical Reading List

https://staysaasy.com/leadership/2024/03/04/Leadership-Reading-List.html

pointer.io (Développement)

'I'll share my personal favorite reading materials that have helped me think about leadership, management, people and technology.' There were a few main themes that drove the authors interest notably books that display different examples of management, people working together and those that challenge the author's current world view. 


138: Windows

https://github.com/dockur/windows

pointer.io (Développement)

Windows in a Docker container.


139: Custom Data Models: The Key to Unlocking Powerful Embedded Analytics

https://qrvey.com/blog/custom-data-models/?utm_campaign=Pointer.io%20Newsletter%20Sponsorships&utm_source=pointer&utm_medium=newsletter&utm_term=secondary&utm_content=custom%20data%20models

pointer.io (Développement)

Without custom data models, even the most advanced analytics fail to deliver value, leading to customer churn. If you're a SaaS leader, learn why custom data models are imperative for multi-tenant software platforms and four features of conventional data warehousing that are limiting your growth.


140 / 604

140: The Hunt For The Missing Data Type

https://www.hillelwayne.com/post/graph-types/

pointer.io (Développement)

'I see graphs everywhere and use them to analyze all sorts of systems. At the same time, I dread actually using graphs in my code. There is almost no graph support in any mainstream language. None have it as a built-in type, very few have them in the standard library, and many don't have a robust third-party library in the ecosystem. Most of the time, I have to roll graphs from scratch. There's a [...]


141: Schizophrénie : enfin des avancées contre cette maladie déroutante'

https://www.rtflash.fr/schizophrenie-enfin-avancees-contre-cette-maladie-deroutante/article

Tregouet.org ()

Cette semaine, je vais vous parler d'une maladie qui reste encore largement ignorée du grand public, la schizophrénie. Cette pathologie psychiatrique, que l'on peut également désigner sous l'appellation de «"troubles de l'intégration", est beaucoup moins médiatique que d'autres maladies affectant le comportement, comme l'autisme, les troubles obsessionnels compulsif (TOC) ou encore la dépr [...]


142: Google Business Profiles tools are temporarily unavailable

https://searchengineland.com/google-business-profiles-tools-are-temporarily-unavailable-438244

Search engine land (Référencement)

Verification status, managing appeals and managing reviews currently may not be working.


143: Piping Hot: The Power of Pipe() in Node.js Streams

https://rubenalapont.hashnode.dev/piping-hot-the-power-of-pipe-in-nodejs-streams

Hashnode - javascript (Javascript)

Welcome back to our thrilling series, where today's episode is steamier than a New York City manhole cover in July! We're talking about the pipe() function in Node.js streams, aptly titled "Handling Data: Piping Hot: The Power of Pipe() in Node.js St...




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