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


Lundi 22 Janvier 2024 (126)

1: Building Your First Python Package with PyPI

https://mikeymon.hashnode.dev/building-your-first-python-package-with-pypi

Hashnode - python (python)

One of the best features of Python as a programming language is its large ecosystem of packages and modules that make it incredibly easy to access some really cool functionality. But how does it all work' The Python Package Index (aka PyPI) is the bi...


2: Day 11 of LeetCode

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

Hashnode - python (python)

'' Rainy Documenting LeetCode solving. Q1 33. Search in Rotated Sorted Array Medium. Binary search class Solution: def search(self, nums: List[int], target: int) -> int: l, r = 0, len(nums) - 1 while l


3: Google confirms a search ranking bug where sites disappear from search results over the weekend

https://searchengineland.com/google-confirms-a-search-ranking-bug-where-sites-disappear-from-search-results-over-the-weekend-436768

Search engine land (Référencement)

"We're aware of a very narrow issue that caused temporary fluctuations in search results for a small number of websites. The issue has since been resolved, and the sites should no longer be seeing its effects," a Google spokesperson told Search Engine Land.


4: React onClick event handlers: A complete guide

https://blog.logrocket.com/react-onclick-event-handlers-guide/

Log Rocket blog (Web 2)

Learn the basics of React's onClick event handler, including event listening, onClick buttons, synthetic events, custom events, and more. The post React onClick event handlers: A complete guide appeared first on LogRocket Blog.


5: ''' Daily Code 46 | Random Number 1-100, ' Python and ' JavaScript

https://gregorschafroth.hashnode.dev/daily-code-46-random-number-1-100-python-and-javascript

Hashnode - javascript (Javascript)

Today I had very little time for code, so I wanted to do a very simple exercise: Generate a random number between 1 to 100, and in the case of JS also put that on the website. In both cases I used a bit of ChatGPT to fix this quickly. should do the s...


6: Unraveling the Magic of Python: A Language for Every Developer

https://salisyb.com.ng/unraveling-the-magic-of-python-a-language-for-every-developer

Hashnode - python (python)

Hey fellow developers! '' Let's talk about Python, the programming language that has become synonymous with simplicity, readability, and versatility. Whether you're a seasoned coder or just starting your journey, Python is a language that welcomes a...


7: The future of frontend development

https://codewithshahan.com/the-future-of-frontend-development

Hashnode - javascript (Javascript)

'Introduction: The environment of front-end development is changing dramatically, thanks to technological developments, artificial intelligence (AI), and the growth of no-code/low-code platforms. So let's look at the changing trends and examine the ...


8: Instalando várias versões da linguagem Python no Windows

https://justcode.com.br/instalando-varias-versoes-linguagem-python-microsoft-windows

Hashnode - python (python)

O pyenv-win é uma adaptação do pyenv projetada especificamente para usuários do sistema operacional Microsoft Windows. Essa ferramenta revela-se indispensável ao lidar com diferentes exigências de versões da linguagem de programação Python em um mesm...


9: Introducing the Symphony: The Ballet of JavaScript Code Execution and Call Stack.

https://siddheshshende.com/introducing-the-symphony-the-ballet-of-javascript-code-execution-and-call-stack

Hashnode - javascript (Javascript)

In the big theatre of web development, JavaScript takes centre stage, creating a thrilling ballet of code executions. This blog digs into the delicate ballet of execution contexts and the Call Stack, which acts as a quiet conductor to ensure a faul...


10 / 126

10: My Recursion to DP Odyssey

https://blog.techlearnindia.com/my-recursion-to-dp-odyssey

Hashnode - javascript (Javascript)

Ah, recursion. The elegant, powerful, sometimes mind-bending technique that sends shivers down the spines of many a programmer. It's like watching a movie where the ending loops back to the beginning, only slightly different each time. Cool, right' B...


11: " Two-Tier Flask App Deployment with Docker"

https://jibankumar.hashnode.dev/mastering-two-tier-flask-app-deployment-with-docker-a-step-by-step-guide-for-deployment

Hashnode - python (python)

' Setting Up a Two-Tier Flask App on Docker ' Before we dive into the exciting journey of setting up a two-tier Flask app using Docker, let's make sure you have everything you need. Follow these preliminary steps to ensure a smooth setup: Prerequis...


12: Context API Hacks: Elevate Your React Game Now!

https://senpaicodes.hashnode.dev/context-api-hacks-elevate-your-react-game-now

Hashnode - javascript (Javascript)

Welcome to the heart of React development ' the Context API! If you've ever found yourself passing props through multiple layers of components, you know the struggles of prop drilling. Enter the Context API, your ultimate solution to this common woe....


13: Google tests new Nearby Events and Deals feature in SERPS for local businesses

https://searchengineland.com/google-nearby-events-deals-local-business-436759

Search engine land (Référencement)

The newly introduced search box features four tiles showcasing promotions and events from nearby businesses.


14: AI for Web Devs: Prompt Engineering

https://austingil.hashnode.dev/ai-for-web-devs-prompt-engineering

Hashnode - javascript (Javascript)

Welcome back to this series where we are building web applications that incorporate AI tooling. In the previous post, we covered what AI is, how it works, and some related terminology. Intro & Setup Your First AI Prompt Streaming Responses How Do...


15: Simple Way to Create Your First React App

https://willcoder.hashnode.dev/simple-way-to-create-your-first-react-app

Hashnode - javascript (Javascript)

React is a JavaScript library for building user interfaces. React is used to build single-page applications. To get started we will need to create a new React app or project which is super simple and seamless. A little knowledge of HTML, CSS, and Jav...


16: Using PyTorch DataLoaders with Datasets

https://siddhibajracharya.hashnode.dev/using-pytorch-dataloaders-with-datasets

Hashnode - python (python)

Today, I will demonstrate how we can use the PyTorch's Dataset and DataLoaders class to feed data into PyTorch models. If you are not familiar with Dataset classes, please take a look at my previous article here. I recommend you to go through the art...


17: PS5 : les réglages à changer d'urgence pour protéger votre vie privée

https://www.lebigdata.fr/vie-privee-ps5

Le Big Data (dataviz)

À l'ère du numérique, partez toujours du principe qu'un appareil connecté, même un console de jeu, est susceptible de collecter … Cet article PS5 : les réglages à changer d’urgence pour protéger votre vie privée a été publié sur LEBIGDATA.FR.


18: Keywords, Variables and Best practices

https://navedwrites.hashnode.dev/keywords-variables-and-best-practices

Hashnode - python (python)

What are Keywords' Keywords in programming are reserved words that have special meanings and cannot be used as identifiers (names for variables, functions, etc.) in the source code. Keywords in Python Here are some keywords which are important from D...


19: FusionJS: Bridging Simplicity with Power in the Web3 Era

https://okeymeta.hashnode.dev/fusionjs-bridging-simplicity-with-power-in-the-web3-era

Hashnode - javascript (Javascript)

Introduction: In the ever-evolving landscape of web development, the emergence of new programming languages and frameworks often paves the way for innovative solutions. Today, we introduce FusionJS, a groundbreaking JavaScript framework crafted by th...


20 / 126

20: Custom Chip - Beer CSS Tips 2

https://leonardorafael.hashnode.dev/custom-chip-beer-css-tips-2

Hashnode - javascript (Javascript)

Hello, I want to share a serie of posts containing some tips of Beer CSS. Beer CSS is a new framework around, based on (not restricted to) Material Design 3. Material Design 3 is a design system created by Google. In this post, we will learn about cu...


22: How to draw SEVEN STEPS

https://feeds.feedblitz.com/~/864570692/0/tanglepatterns~How-to-draw-SEVEN-STEPS.html

TanglePatterns (Zentangle)

Online instructions for drawing CZT® Vandana Shenoy's Zentangle® pattern: Seven Steps. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


23: Tips to avoid legacy growth in your large scale web system (for frontend)

https://leonardorafael.hashnode.dev/tips-to-avoid-legacy-growth-in-your-large-scale-web-system-for-frontend

Hashnode - javascript (Javascript)

Hi Devs! I would to share some tips to avoid legacy growth in your large scale web system (for frontend). This is just my personal experience. Don't need to be the truth and all discuss are welcome. By following some tips, you can keep your system al...


24: 10 sites web originaux avec une section hero typographique

https://www.blogduwebdesign.com/blog/webdesign/sites-web-originaux-section-hero-typographique.html

blogduwebdesign (Design)

Prêt à donner à votre site web une allure minimaliste percutante dès le premier regard ' Les sections hero en plein écran et les typographies audacieuses sont les incontournables de 2024, prêtes à révolutionner la créativité de nombreux sites web. Découvrez cette tendance webdesign florissante et démarquez-vous av [...]


25: Framer vs. Figma: When should you be using Framer'

https://blog.logrocket.com/ux-design/framer-vs-figma/

Log Rocket blog (Web 2)

You've likely spent plenty of time in Figma, but Framer has been growing in popularity. Explore how they differ and when to use them. The post Framer vs. Figma: When should you be using Framer' appeared first on LogRocket Blog.


26: Rapid Prototyping and Comparison of Basic Models with Lazy Predict

https://mathdatasimplified.com/rapid-prototyping-and-comparison-of-basic-models-with-lazy-predict/

Math Data Simplified (data)

Lazy Predict enables rapid prototyping and comparison of multiple basic models without extensive manual coding or parameter tuning. This helps data scientists identify promising approaches and iterate on them more quickly. Link to Lazy Predict. Favorite …


27: Le nouvel accord transatlantique pour les données à caractère personnel déjà sous le feu des critiques

https://www.lemondeinformatique.fr/actualites/lire-le-nouvel-accord-transatlantique-pour-les-donnees-a-caractere-personnel-deja-sous-le-feu-des-critiques-92745.html

Le monde informatique (Internet / Informatique)

Le Safe harbor et le Privacy shield ont été invalidés respectivement en 2015 (CJUE, 6 octobre 2015, affaire C-362/14) et (...)


28: Fairly Trained certifie les IA formées en respectant les droits d'auteur

https://www.lemondeinformatique.fr/actualites/lire-fairly-trained-certifie-les-ia-formees-en-respectant-les-droits-d-auteur-92744.html

Le monde informatique (Internet / Informatique)

Alors que les créateurs et les détenteurs de droits d'auteur se disputent avec les entreprises d'IA générative sur l'usage (...)


29: WebDesign Tutorial - Size matters

https://keepcodingblog.hashnode.dev/webdesign-tutorial-size-matters

Hashnode - javascript (Javascript)

This is part nine. You can find the eight part, De-emphasize with no mercy, here Size matters Size matters in the visual hierarchy, but contrary to appearances, bigger does not mean better. We talked about this in the previous lesson. When we exagge...


30 / 126

30: Frites de piscine, planche de surf : les galaxies ancestrales dévoilées par le JWST

https://www.lebigdata.fr/galaxies-ancestrales-devoilees-par-jwst

Le Big Data (dataviz)

Le télescope James-Webb (JWST) révolutionne notre compréhension de l’Univers. Oubliez les formes habituelles des galaxies : voici l’ère des frites … Cet article Frites de piscine, planche de surf : les galaxies ancestrales dévoilées par le JWST a été publié sur LEBIGDATA.FR.


31: Vivez l'excitation de la VR gratuitement avec PS Plus sur le PSVR 2 !

https://www.realite-virtuelle.com/jeux-vr-essai-gratuit-ps-plus-psvr-2/

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

Explorez de nouveaux horizons avec les jeux en réalité virtuelle (VR) de Sony, disponibles sur […] Cet article Vivez l’excitation de la VR gratuitement avec PS Plus sur le PSVR 2 ! a été publié sur REALITE-VIRTUELLE.COM.


32: En Europe, Meta va permettre à ses utilisateurs de dissocier leurs comptes Facebook et Instagram

https://www.usine-digitale.fr/article/en-europe-meta-va-permettre-a-ses-utilisateurs-de-dissocier-leurs-comptes-facebook-et-instagram.N2206873

L'usine-digitale (Informatique)

Le réseau social va aussi permettre d'utiliser son application Messenger sans compte Facebook. Ces changements doivent lui permettre de se mettre en conformité avec le DMA européen.


33: Meta steps up data privacy measures in Europe amid targeted ad concerns

https://searchengineland.com/meta-data-privacy-europe-targeted-ad-concerns-436750

Search engine land (Référencement)

Facebook and Instagram users will soon start receiving notifications prompting them to make choices regarding the sharing of their data.


34: DMS Group met de plus en plus d'IA dans ses équipements d'imagerie médicale

https://www.usine-digitale.fr/article/dms-group-met-de-plus-en-plus-d-ia-dans-ses-equipements-d-imagerie-medicale.N2206871

L'usine-digitale (Informatique)

L'industriel gardois DMS Group intègre progressivement l'intelligence artificielle dans ses machines de radiologie numérique et ostéodensitométrie. En croissance, le groupe basé à Gallargues-le-Montueux prévoit de doubler son activité à 70 millions d'euros à la fin 2027.


35: Précommandes du Vision Pro lancées aux USA : Ici les détails!

https://www.realite-virtuelle.com/precommandes-vision-pro-ouvertes-usa-ici-details/

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

Les précommandes du fameux casque Vision Pro, le premier ordinateur spatial d’Apple, ont été officiellement […] Cet article Précommandes du Vision Pro lancées aux USA : Ici les détails! a été publié sur REALITE-VIRTUELLE.COM.


36: Veeam teste la sauvegarde des environnements Proxmox

https://www.lemondeinformatique.fr/actualites/lire-veeam-teste-la-sauvegarde-des-environnements-proxmox-92742.html

Le monde informatique (Internet / Informatique)

Les différentes annonces de Broadcom depuis le rachat effectif de VMware inquiètent les clients, mais aussi les partenaires du spécialiste (...)


37: Après OVHcloud, Cloud Temple se positionne à son tour sur le Health Data Hub

https://www.usine-digitale.fr/article/apres-ovh-cloud-temple-se-positionne-a-son-tour-sur-le-health-data-hub.N2206848

L'usine-digitale (Informatique)

Cloud Temple, l'un des 5 fournisseurs de cloud français ayant obtenu le visa de sécurité SecNumCloud, s'intéresse de très près au Health Data Hub. Cette immense base regroupant les données de santé des Français est actuellement aux mains de Microsoft Azure et ce, jusqu'en 2025 en principe. Sébastien Lescop, CEO de Cloud Temple, a exposé sa stratégie au Club des DPO pour réussir à con [...]


38: WhatsApp Preps AirDrop Competitor

https://www.webpronews.com/whatsapp-preps-airdrop-competitor/

WebProNews SEO (Développement)

WebProNews WhatsApp Preps AirDrop Competitor WhatsApp is preparing to launch a feature that competes with AirDrop, making it easier to share files. WhatsApp Preps AirDrop Competitor Staff


39: L'e-shop Place des Tendances teste un nouvel exosquelette pour réduire la pénibilité au travail

https://www.usine-digitale.fr/article/l-e-shop-place-des-tendances-teste-un-nouvel-exosquelette-pour-reduire-la-penibilite-au-travail.N2206874

L'usine-digitale (Informatique)

Intégrée au groupe Printemps depuis 2013, la société Place des Tendances va expérimenter l'utilisation d'un nouvel exosquelette dans son entrepôt logistique. L'objectif : rendre moins pénible la manipulation de charges lourdes.


40 / 126

40: ElevenLabs lève 80 millions de dollars pour son IA vocale

https://www.usine-digitale.fr/article/elevenlabs-leve-80-millions-de-dollars-pour-son-ia-vocale.N2206872

L'usine-digitale (Informatique)

Cofondée en 2022, la start-up ElevenLabs est spécialisée dans le développement de logiciels de synthèse vocale en utilisant l'intelligence artificielle. Pour assurer le développement et la commercialisation de ses produits, elle vient de lever 80 millions de dollars auprès notamment de ses investisseurs historiques, les entrepreneurs Nat Friedman, ancien CEO de GitHub et Daniel Gross, fonda [...]


41: Fix TypeError list indices must be integers or slices, not str

https://justaman045.hashnode.dev/fix-typeerror-list-indices-must-be-integers-or-slices-not-str

Hashnode - python (python)

If you're a Python Developer or maybe a Beginner learning Development in Python you might have encountered this error Type Error: list indices must be integers or slices, not str. After this error, you might have googled this error or maybe changed s...


42: GraphQL vs REST: Navigating API Choices for Modern Web Development

https://opyjo2.hashnode.dev/graphql-vs-rest-navigating-api-choices-for-modern-web-development

Hashnode - javascript (Javascript)

In the world of web development, particularly for those working with React, choosing the right approach to handle API calls is crucial. Two predominant methodologies stand out: GraphQL and REST. Both have their unique strengths and weaknesses and und...


43: Rails form_with tutorial

https://bootrails.com/blog/rails-form-with-tutorial/

Humancoders ()

Tutoriel Ruby-on-Rails sur le helper 'form_with', qui permet de construire des formulaires web 'préremplis' pour une communication optimale avec le serveur. Commentaires L'article Rails form_with tutorial a été posté dans la catégorie Ruby de Human Coders News


44: Atlassian: 10 000 employés en full remote, distribués sur toute la planète

https://www.atlassian.com/blog/distributed-work/distributed-work-report

Humancoders ()

Atlassian (Jira, Trello) travaille depuis longtemps avec une équipe de 10 000 personnes en full remote, distribuées sur toute la planète et plusieurs fuseaux horaires : meilleure productivité, bien-être au travail, maintenir la culture d'entreprise à distance. Commentaires L'article Atlassian: 10 000 employés en full remote, distribués sur toute la planète a été posté dans la catégor [...]


45: Le développeur qui sait tout

https://www.jesuisundev.com/le-developpeur-qui-sait-tout/

Humancoders ()

J'ai rencontré un développeur qui savait tout. En passant mon temps avec lui, j'ai fini par comprendre comment il fonctionnait. Commentaires L'article Le développeur qui sait tout a été posté dans la catégorie Développement de Human Coders News


46: A Short introduction to Fuchsia ' FuchsiaOS

https://blog.allansrc.com.br/a-short-introduction-to-fuchsia-fuchsiaos

Hashnode - Flutter (Flutter)

Hey there.for those who missed it, Google is working on a brand new Operating System, FuchsiaOS. As announced in 2016, FuchsiaOS isn't an Android's successor, leastways it's not its intention. In the officials documentation, the Fuchsia team describe...


47: A guide to enabling partial pre-rendering in Next.js

https://blog.logrocket.com/guide-enabling-partial-pre-rendering-next-js/

Log Rocket blog (Web 2)

The partial pre-rendering feature from Next.js 14 leverages the React Suspense API to incrementally render web page content as it is needed. The post A guide to enabling partial pre-rendering in Next.js appeared first on LogRocket Blog.


48: The great SEO heist: The untold story

https://searchengineland.com/great-seo-heist-untold-story-436697

Search engine land (Référencement)

Beyond this viral SEO story lies difficult questions about information ownership in the age of AI. Here's what SEOs can take away from it.


49: Event Marketing 2.0: Integrating Social Media for Maximum Impact

https://www.noupe.com/business-online/event-marketing-2-0-integrating-social-media-for-maximum-impact.html

Noupe (conception)

Social media is no longer a buzzword in today’s world, where digital presence matters the most; it’s an essential component of every marketing strategy. Every industry has understood and started using this marketing approach to attract attendees and build loyalty; the event industry is no exception. Read the blog on event marketing 2.0 and how... The post Event Marketing 2. [...]


50 / 126

50: Health Data Hub : le projet de données qui a secoué la France, mais pourquoi '

https://www.lebigdata.fr/health-data-hub-projet-de-donnees-france

Le Big Data (dataviz)

Le projet Health Data Hub (HDH) a pour objectif d’améliorer la recherche médicale en centralisant les données de santé de … Cet article Health Data Hub : le projet de données qui a secoué la France, mais pourquoi ' a été publié sur LEBIGDATA.FR.


51: Day 3 of 100days of code.

https://paks.hashnode.dev/day-3-creating-a-simple-web-server

Hashnode - javascript (Javascript)

Fundamentals of Node JS Creating a simple web server Import the http node module and assign to a variable: const http = require("http"). In other to build a Node JS web server we need to first create a server and then start the server afterwards. To ...


52: Breve Apresentação ao Fuchsia ' FuchsiaOS

https://blog.allansrc.com.br/breve-apresentacao-ao-fuchsia-fuchsiaos

Hashnode - Flutter (Flutter)

Opa pessoal.Para quem ainda não sabe, o Google está em produção de um novo Sistema Operacional, o FuchsiaOS. Anunciado em 2016, o FuchsiaOS não se trata de um sucessor do Android, pelo menos não é o seu intuito. Na própria documentação oficial, a equ...


53: Le groupe Coldriver combine phishing et malware personnalisés

https://www.lemondeinformatique.fr/actualites/lire-le-groupe-coldriver-combine-phishing-et-malware-personnalises-92741.html

Le monde informatique (Internet / Informatique)

Selon un rapport du Threat Analysis Group (TAG) de Google, Coldriver, parrainé par l'État russe, améliore ses techniques offensives. (...)


54: Nokia sort d'une coentreprise chinoise avec Huawei

https://www.usine-digitale.fr/article/nokia-sort-d-une-coentreprise-chinoise-avec-huawei.N2206859

L'usine-digitale (Informatique)

Le géant finlandais des équipements de réseau cherchait depuis l'an passé à revendre sa participation dans TD Tech, devenue problématique suite aux sanctions américaines visant son partenaire.


55: Unlocking the power of intrinsic motivation

https://blog.logrocket.com/product-management/intrinsic-motivation-workplace/

Log Rocket blog (Web 2)

When someone does something because they relate to it or because it matters to them that's an intrinsic motivation. The post Unlocking the power of intrinsic motivation appeared first on LogRocket Blog.


56: A guide to creating a product roadmap

https://blog.logrocket.com/product-management/what-is-a-product-roadmap/

Log Rocket blog (Web 2)

A product roadmap is a strategic plan that defines the product's vision, direction, and progress over a certain period of time. The post A guide to creating a product roadmap appeared first on LogRocket Blog.


57: 3 Essential Design Trends, February 2024

https://www.webdesignerdepot.com/essential-design-trends-february-2024/

Webdesigner depot (Design)

These three design trends are sure to help you generate some hot ideas in one of the coldest months of the year.


58: 3 Essential Design Trends, January 2024

https://www.webdesignerdepot.com/essential-design-trends-january-2024/

Webdesigner depot (Design)

These three design trends are sure to help you generate some hot ideas in one of the coldest months of the year.


59: L'administrateur de BreachForums écope de vingt ans de liberté surveillée

https://www.usine-digitale.fr/article/l-administrateur-de-breachforums-ecope-de-vingt-ans-de-liberte-surveillee.N2206870

L'usine-digitale (Informatique)

'Pompompurin' avait créé BreachForums, une place d'échange de données volées, après la chute de RaidForums. Il avait été rapidement identifié par le FBI.


60 / 126

60: A Gratitude-filled Journey with AWS Dev Experience Month '

https://blog.prasadsuman.me/a-gratitude-filled-journey-with-aws-dev-experience-month

Hashnode - python (python)

Introduction: Greetings, tech enthusiasts! Today, I'm beyond excited to share a special journey with you all'my experience with AWS Dev Experience Month. Recently, I received an unexpected and delightful surprise in the form of $50 AWS credits, court...


61: A/B testing mistakes PPC marketers make and how to fix them

https://searchengineland.com/a-b-testing-mistakes-ppc-436695

Search engine land (Référencement)

Tired of PPC A/B tests that don't deliver' Discover the pitfalls causing tests to fail and how to design experiments that drive real impact.


62: Unity VR : Tout ce qu'il faut savoir

https://www.realite-virtuelle.com/unity-vr-tout-ce-quil-faut-savoir/

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

Unity VR, ça vous dit quelque chose ' Si ce n’est pas le cas, il […] Cet article Unity VR : Tout ce qu'il faut savoir a été publié sur REALITE-VIRTUELLE.COM.


63: Using Python's Virtual Environment with Jupyter Notebook

https://ashutoshchapagain.hashnode.dev/using-pythons-virtual-environment-with-jupyter-notebook

Hashnode - python (python)

In this blog, we will see how to use Python's virtual environment venv with Jupyter Notebook. Using virtual environments with Jupyter Notebook can be somewhat tricky but it is essential to use virtual environments to manage separate package installat...


64: A Journey into Web Development: A Positive 6 months Training Program Experience

https://alwelwrite.dev/a-journey-into-web-development-a-positive-6-months-training-program-experience

Hashnode - javascript (Javascript)

Introduction: Embarking on a journey into the world of web development through a training program has been an enlightening and rewarding experience. In this blog post, I'll share the highlights of my positive encounter with the training program, shed...


66: The Law of Demeter in Python

https://pythonislove.com/the-law-of-demeter-in-python

Hashnode - python (python)

In the vast realm of Python programming, adhering to best practices is essential for crafting maintainable and clean code. One such principle, the Law of Demeter, plays a crucial role in ensuring code modularity and reducing dependencies between comp...


67: Quality Raters : Google met fin à son contrat avec Appen

https://www.abondance.com/20240122-356354-quality-raters-google-contrat-appen.html

Abondance (Référencement)

Google a mis fin à son contrat avec Appen, qui emploie bon nombre des Quality Raters de la firme. Une décision qui ébranle la société australienne de services de données : ce contrat, vital pour Appen, représentait un quart de ses revenus annuels. Ce qu'il faut retenir : Rupture inattendue du contrat d'Appen Google a […] L'article "Quality Raters : Google met fin à son contrat avec A [...]


68: Pokémon, mais avec des armes : pourquoi Palworld est déjà le jeu de 2024 '

https://www.lebigdata.fr/palworld-pokemon-armes

Le Big Data (dataviz)

Palworld est un jeu mariant la capture et le dressage de monstres de Pokémon avec la violence et l'immoralité satirique … Cet article Pokémon, mais avec des armes : pourquoi Palworld est déjà le jeu de 2024 ' a été publié sur LEBIGDATA.FR.


69: Comparative Analysis of Dataclasses, attrs, and Pydantic

https://pythonislove.com/comparative-analysis-of-dataclasses-attrs-and-pydantic

Hashnode - python (python)

In the Python programming language, several libraries provide convenient ways to define and work with data structures. Three popular choices for creating classes that primarily store data are dataclasses, attrs, and pydantic. This report aims to comp...


70 / 126

70: Angular Roadmap - The guide I wanted to have before starting in Angular

https://rubenperegrina.com/angular-roadmap-the-guide-i-wanted-to-have-before-starting-in-angular

Hashnode - javascript (Javascript)

Introduction As a beginner, it's easy to feel overwhelmed when diving into a new framework like Angular, but fear not, we're here to guide you! In this post, we'll break down a step-by-step roadmap that I wish I had when I started my Angular programm...


71: Day 26: S3 Programmatic Access with AWS-CLI ' '

https://davender.hashnode.dev/day-26-s3-programmatic-access-with-aws-cli

Hashnode - javascript (Javascript)

Hello, DevOps enthusiasts! Hope you're riding high on your tech journey. Today, in our #90DaysofDevOps Challenge, we're diving into the heart of AWS with the most ubiquitous service ' Amazon S3 (Simple Storage Service). Buckle up as we navigate the c...


72: Difference between HTML, CSS and JavaScript:

https://bharat2044.hashnode.dev/difference-between-html-css-and-javascript

Hashnode - javascript (Javascript)

HTML, CSS, and JavaScript are three fundamental technologies used in web development to create and design interactive and visually appealing websites. Each of them serves a specific purpose in building and enhancing web pages: HTML (Hypertext Markup...


73: Welcome to the Jungle rachète la plateforme britannique de recherche d'emploi Otta

https://www.usine-digitale.fr/article/welcome-to-the-jungle-rachete-la-plateforme-britannique-de-recherche-d-emploi-otta.N2206860

L'usine-digitale (Informatique)

Otta est considérée comme la principale plateforme de recherche d'emploi dans le secteur de la tech et des start-up. Avec cette acquisition, le français Welcome to the Jungle compte renforcer son développement au Royaume-Uni et s'implanter dès cette année aux États-Unis.


74: Building A Holiday Project with Vue 3.

https://emekaomeje.hashnode.dev/building-a-holiday-project-with-vue-3

Hashnode - vuejs (Javascript)

Building an amazing and valuable client-side application with a UI framework like React, Vue.Js is a skill I'm into and becoming better at with the Altschool program. There are various published articles on the advantages of using Vue.js. This framew...


75: Red Hat lance une plateforme pour créer des portails développeurs

https://www.lemondeinformatique.fr/actualites/lire-red-hat-lance-une-plateforme-pour-creer-des-portails-developpeurs-92735.html

Le monde informatique (Internet / Informatique)

Red Hat a dévoilé le Developer Hub, une plateforme de développement interne pour les entreprises afin de les aider dans la création (...)


76: Performing Image Labelling in Flutter

https://hasnainm.hashnode.dev/performing-image-labelling-in-flutter

Hashnode - Flutter (Flutter)

Introduction Hey everyone, I am Hasnain Makada, a member of the Elite Collective at Showwcase and building out Open Source with Hasnain with a strong aim to make open source contributions easy and make good tech resources available for everyone. Toda...


77: Day 25: IAM Programmatic Access and AWS CLI ' '

https://davender.hashnode.dev/day-25-iam-programmatic-access-and-aws-cli

Hashnode - python (python)

Welcome back, cloud enthusiasts! Today, we're diving into the world of IAM programmatic access and the AWS Command Line Interface (CLI). Buckle up, as we embark on a journey to harness the power of AWS from the command line. IAM Programmatic Access '...


78: Sam Altman voudrait réunir des fonds pour monter un réseau d'usines de puces IA

https://www.usine-digitale.fr/article/sam-altman-veut-reunir-des-fonds-pour-monter-un-reseau-d-usines-de-puces-ia.N2206856

L'usine-digitale (Informatique)

OpenAI serait sur le point de lever plusieurs milliards de dollars pour créer un réseau mondial d'usines de production de puces dédiées à l'IA. Plusieurs grandes entreprises du secteur seraient en discussion pour en devenir des partenaires.


79: Des pirates russes ont eu accès aux comptes mail de plusieurs dirigeants de Microsoft

https://www.usine-digitale.fr/article/des-pirates-russes-ont-eu-acces-aux-comptes-mail-de-plusieurs-dirigeants-de-microsoft.N2206850

L'usine-digitale (Informatique)

Le groupe de Redmond a été touché par une cyberattaque fin novembre, qui a permis à des hackers, soupçonnés d'être affiliés aux services russes de renseignement, de mettre la main sur des courriers internes.


80 / 126

80: Community manager : 10 règles d'or pour travailler efficacement

https://www.blogdumoderateur.com/community-manager-regles-travailler-efficacement/

Blog du Moderateur ()

Vous êtes community manager ' Voici des bonnes pratiques et ressources à connaître pour optimiser vos journées.


81: Marketing digital : les défis pour les marques en 2024

https://www.blogdumoderateur.com/marketing-digital-defis-marques-2024/

Blog du Moderateur ()

Alban Besnier, managing director de l'agence Orixa Media, nous livre les dernières tendances du marketing digital et les défis à venir pour les marques.


82: Avec l'IA, Visa prévient la fraude par token

https://www.lemondeinformatique.fr/actualites/lire-avec-l-ia-visa-previent-la-fraude-par-token-92481.html

Le monde informatique (Internet / Informatique)

Appelé Visa Provisioning Intelligence (VPI), le système basé sur l'IA proposé par le réseau de paiement Visa vise à (...)


83: Vous n'avez pas encore commandé votre casque Vision Pro ' Trop tard !

https://www.lebigdata.fr/casque-vision-pro-rupture-de-stock

Le Big Data (dataviz)

Le casque Vision Pro d’Apple a fait des vagues dans le monde de la technologie. Mais si vous n’avez pas … Cet article Vous n’avez pas encore commandé votre casque Vision Pro ' Trop tard ! a été publié sur LEBIGDATA.FR.


84: Vue 3 Explained - Part 4: Rendering 101

https://nasserspace.tech/vue-3-explained-rendering-101

Hashnode - javascript (Javascript)

Ever wondered how Vue turns your templates and components into the actual webpage you see in your browser' Curious about how it efficiently updates the view when things change' It might seem like magic, but let's demystify it. In the previous parts o...


85: Zscaler prêt à croquer Avalor

https://www.lemondeinformatique.fr/actualites/lire-zscaler-pret-a-croquer-avalor-92733.html

Le monde informatique (Internet / Informatique)

Les acquisitions en cybersécurité se multiplient. Après tout dernièrement Squad qui a mis la main sur Newlode, c'est au tour (...)


86: Des mails de cadres de Microsoft piratés par un groupe russe

https://www.lemondeinformatique.fr/actualites/lire-des-mails-de-cadres-de-microsoft-pirates-par-un-groupe-russe-92734.html

Le monde informatique (Internet / Informatique)

Midnight Blizzard, Nobelium, Cozy Bear ou APT29, quatre noms mais un seul groupe selon Microsoft qui serait à l'origine d'un piratage (...)


87: Oceans that all the rivers drain

https://flowingdata.com/2024/01/22/oceans-that-all-the-rivers-drain/

Flowing data (dataviz)

Rivers drain into oceans. Grasshopper Geography color-coded the rivers in the world by…Tags: drainage, Grasshopper Geography, ocean, rivers


88: Js '''''''''''

https://blog.iread.fun/recursive-functions-dont-casue-stack-overflow-in-js-cn

Hashnode - javascript (Javascript)

'''' '''''Recursive Function'''''''''''''''''''''''''''' ''''''''''''''''''''''''''''''''''''''''' function fibonacci(n) { if (n < 2) return n; return fibonacci(n - 1) + fibonacci(n - 2); } for (let n = 0; n < 100; n++) { console.log(`fibo ${n...


89: Recursive functions don't casue stack overflow in JS

https://blog.iread.fun/recursive-functions-dont-casue-stack-overflow-in-js

Hashnode - javascript (Javascript)

Stack Overflow Recursive functions can cause a stack overflow if they call themselves too many times and exceed the stack size limit. A classic example of a recursive function that can exceed the stack size limit if called with a large input is the n...


90 / 126

90: Comment utiliser ChatGPT : le guide complet

https://www.blogdumoderateur.com/comment-utiliser-chatgpt-guide-complet/

Blog du Moderateur ()

Découvrez des conseils et astuces pour maîtriser, de A à Z, le générateur de texte par intelligence artificielle conçu par OpenAI.


91: How To Setup And Install PhantomJS In Python: All You Need To Know

https://janishpatel.hashnode.dev/how-to-setup-and-install-phantomjs-in-python-all-you-need-to-know

Hashnode - python (python)

Running automation scripts on a normal browser like Chrome, Firefox, or Edge Browser takes too many resources and time as they run test scripts that include all the UI/UX of the website, such as animations and visual effects. So the concept of Headle...


92: IBM : le quantique va provoquer un Armageddon de cybersécurité

https://www.lebigdata.fr/quantique-cybersecurite

Le Big Data (dataviz)

L'informatique quantique pourrait déclencher une catastrophe en matière de cybersécurité, avertit IBM. Les chercheurs et analystes en cybersécurité craignent à … Cet article IBM : le quantique va provoquer un Armageddon de cybersécurité a été publié sur LEBIGDATA.FR.


93: GED : Doxsa rachète Open Bee

https://www.lemondeinformatique.fr/actualites/lire-ged-doxsa-rachete-open-bee-92726.html

Le monde informatique (Internet / Informatique)

Doxsense change de braquet dans la GED. Spécialisé dans la gestion des impressions et de la numérisation à travers (...)


94: Google arme à l'IA son offre pour le commerce de détail

https://www.lemondeinformatique.fr/actualites/lire-google-arme-a-l-ia-son-offre-pour-le-commerce-de-detail-92719.html

Le monde informatique (Internet / Informatique)

La dernière incursion de Google dans le monde de l'IA générative (genAI) se concentre sur le commerce de détail. Le fournisseur (...)


95: Siemens Healthineers mise sur SAP S/4 Hana

https://www.lemondeinformatique.fr/actualites/lire-siemens-healthineers-mise-sur-sap-s-4-hana-92725.html

Le monde informatique (Internet / Informatique)

« Siemens Healthineers vient d'un paysage IT fait de procédures distribuées qui a été mis en place en 2004 et qui était (...)


96: Sébastien Dec prend les rennes d'Outsystems France

https://www.lemondeinformatique.fr/actualites/lire-sebastien-dec-prend-les-rennes-d-outsystems-france-92727.html

Le monde informatique (Internet / Informatique)

L'éditeur portugais Outsystems officialise le renouvellement de la direction de sa filiale française avec le recrutement de Sébastien (...)


97: Sébastien Dec prend les rênes d'Outsystems France

https://www.lemondeinformatique.fr/actualites/lire-sebastien-dec-prend-les-renes-d-outsystems-france-92727.html

Le monde informatique (Internet / Informatique)

L'éditeur portugais Outsystems officialise le renouvellement de la direction de sa filiale française avec le recrutement de Sébastien (...)


98: Le nouvel accord transatlantique pour les données à caractère personnel déjà sous le feu des critiques

https://www.lemondeinformatique.fr/actualites/lire-le-nouvel-accord-transatlantique-pour-les-donnees-a-caractere-personnel-deja-sous-le-feu-des-critiques-92724.html

Le monde informatique (Internet / Informatique)

Le Safe harbor et le Privacy shield ont été invalidés respectivement en 2015 (CJUE, 6 octobre 2015, affaire C-362/14) et (...)


99: Quelle place pour l'intelligence artificielle dans l'éducation '

https://www.lebigdata.fr/quelle-place-pour-lintelligence-artificielle-dans-leducation

Le Big Data (dataviz)

L’intégration de l’intelligence artificielle dans le domaine de l’éducation marque une évolution significative dans la manière dont les enseignements sont … Cet article Quelle place pour l’intelligence artificielle dans l’éducation ' a été publié sur LEBIGDATA.FR.


100 / 126

100: TF 31 | Your weekly frontend digest

https://techfoutraque.hashnode.dev/tf-31-your-weekly-frontend-digest

Hashnode - javascript (Javascript)

' Article of the week : 2023 JavaScript Rising Stars Discover the latest trends and insights in Frontend development with our curated link list.From practical guides to cutting-edge technologies, our collection covers a wide range of topics, inclu...


101: SOLID Principles: It's That Easy! ' STANDOUT ' with SOLID Principles! '''''

https://ihssmaheel.hashnode.dev/solid-principles-its-that-easy-standout-with-solid-principles

Hashnode - javascript (Javascript)

Hey there, ' Awesome Developers! ' Today, let's dive into the basics of SOLID principles. If you're ready to level up your coding game! ' Let's roll! In the fast-changing world of coding, making clean and powerful code is crucial for building stro...


102: Data et marketing digital : un duo gagnant en 2024

https://www.lebigdata.fr/data-et-marketing-digital-un-duo-gagnant-en-2024

Le Big Data (dataviz)

La data et le marketing digital sont deux domaines qui sont de plus en plus étroitement liés. La data permet … Cet article Data et marketing digital : un duo gagnant en 2024 a été publié sur LEBIGDATA.FR.


103: React tips pt.1 ' key

https://meitix.ir/react-tips-pt1-key

Hashnode - javascript (Javascript)

You'll often see the key attribute when rendering lists in React. However, it also serves another purpose You can reset the state of a component or force re-rendreing by assigning a new key to it. In this instance, the Reset button modifies the versi...


104: Choosing the Right Framework: Comparing Pros and Cons

https://norajohn.hashnode.dev/choosing-the-right-framework-comparing-pros-and-cons

Hashnode - Flutter (Flutter)

When it comes to selecting a framework for a development project, it's crucial to make an informed decision. With so many options available, it can be challenging to determine the best fit for the project's needs. Let's take a look at some of the pro...


105: ''' Mastering JavaScript Loops

https://ricardo-tech-lover.hashnode.dev/mastering-javascript-loops

Hashnode - javascript (Javascript)

Alright, buckle up '' ! Let's talk about JavaScript loops ' those trusty tools that let you do stuff repeatedly without losing your sanity. It's like having a magic wand for repetitive tasks in your code. ' The OG - for Loop The classic, the OG ' t...


106: Le futur du gaming : tendances et innovations en 2024

https://www.realite-virtuelle.com/futur-du-gaming-tendances-innovations-2024/

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

En constante évolution, l’univers du jeu vidéo ne cesse de se développer pour offrir aux […] Cet article Le futur du gaming : tendances et innovations en 2024 a été publié sur REALITE-VIRTUELLE.COM.


107: What is Monkey Patching in Python: A Complete Tutorial With Examples

https://pauloliveira.hashnode.dev/what-is-monkey-patching-in-python-a-complete-tutorial-with-examples

Hashnode - python (python)

In the world of software testing, where the pursuit of efficient and reliable test automation is paramount, developers and testers often encounter challenges when working with existing codebases or third-party libraries. Modifying the behavior of the...


108: Reasons to Prefer Kotlin App Developers for Android Development

https://hire-dedicated-developer.hashnode.dev/reasons-to-prefer-kotlin-app-developers-for-android-development

Hashnode - Kotlin (Mobiles)

Introduction: In the dynamic environment of Android development, it is important to choose the right translation language. Kotlin is a language that has quickly become popular due to its power and versatility. This article explains the compelling rea...


109: Understanding The Fundamentals Of Javascript.

https://ikegboprecious.hashnode.dev/understanding-the-fundamentals-of-javascript

Hashnode - javascript (Javascript)

FUNDAMENTALS OF JAVASCRIPT; VARIABLES, OPERATORS, AND DATA TYPES. In the vast realm of web development, JavaScript has become known as the cornerstone upon which websites are transformed into dynamic, engaging experiences. imagine a website being ju...


110 / 126

110: Alexa Plus en route : prêt à payer pour votre assistant vocal '

https://www.lebigdata.fr/alexa-plus-assistant-vocal-amazon-bientot-payant

Le Big Data (dataviz)

Amazon envisage de transformer son assistant vocal bien-aimé en un service par abonnement. Dès juin 2024, Alexa Plus pourrait devenir … Cet article Alexa Plus en route : prêt à payer pour votre assistant vocal ' a été publié sur LEBIGDATA.FR.


111: The Role of Data Analysis in Modern Marketing

https://www.noupe.com/business-online/the-role-of-data-analysis-in-modern-marketing.html

Noupe (conception)

Data is king in today’s world where information is overloaded. Modern marketing feeds on it, and data analysis is the crowning achievement. Learn how it unlocks customer information, powers marketing, and propels brands to success in this article. Key Takeaways Why is data analysis essential in modern marketing' Data analysis acts as a crystal ball... The post The Role of Data An [...]


112: Exploring the Power of Flutter: A Versatile Framework for Cross-Platform Applications

https://webdevelopmentcompany1.hashnode.dev/exploring-the-power-of-flutter-a-versatile-framework-for-cross-platform-applications

Hashnode - Flutter (Flutter)

In the dynamic landscape of mobile app development, the demand for cross-platform frameworks has risen significantly. Developers seek tools that enable them to build high-quality applications for multiple platforms efficiently. Flutter, developed by ...


113: Comment créer un chatbot pour votre entreprise '

https://www.lebigdata.fr/comment-creer-chatbot-entreprise

Le Big Data (dataviz)

Pour créer un chatbot efficace pour votre entreprise, vous avez intérêt à suivre diverses étapes, de l'identification de vos objectifs … Cet article Comment créer un chatbot pour votre entreprise ' a été publié sur LEBIGDATA.FR.


114: 18 JavaScript Tips : You Should Know for Clean and Efficient Code

https://shefali.dev/javascript-tips

Hashnode - javascript (Javascript)

In this post, I'll share 18 JavaScript tips, with examples that you should know for writing clean and efficient code. Let's get started!' Arrow Function You can use arrow functions to simplify function declarations. For example: function add(a, b) {...


115: Guide pratique pour connecter votre casque VR sur Mozilla

https://www.realite-virtuelle.com/comment-connecter-mon-casque-vr-sur-mozilla/

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

Si vous êtes en possession d’un casque de réalité virtuelle et que vous souhaitez profiter […] Cet article Guide pratique pour connecter votre casque VR sur Mozilla a été publié sur REALITE-VIRTUELLE.COM.


116: A Guide to Better Code Organization in React through File Separation

https://michaeljudelarocca.hashnode.dev/a-guide-to-better-code-organization-in-react-through-file-separation

Hashnode - javascript (Javascript)

This article covers the essential file separation concept in React projects by effectively structuring code in separate files, enhancing your project's organization, readability, and maintainability! Introduction In this article, I will continue t...


117: Machine learning basics-part 1

https://priyayadav.dev/machine-learning-basics-part-1

Hashnode - python (python)

Machine learning is a subfield inside Artificial Intelligence and the most dominating one in current scenerio. IBM describes Machine learning as - "Machine Learning is a branch of AI and Computer Science which focuses on the use of data and algorithm...


118: Unforeseen Intro: The Lazy Vertical Staggered Grid Adventure

https://starchild.hashnode.dev/unforeseen-intro-the-lazy-vertical-staggered-grid-adventure

Hashnode - Kotlin (Mobiles)

Last year, I embarked on a fascinating project involving one of my all-time favorite cartoon characters - the lasagna-loving cat, Garfield. My goal was to create an interactive digital collage, featuring various sizes of Garfield images on a screen, ...


119: 10 Essential JavaScript Concepts for Every Developer

https://engineerbhaiya.hashnode.dev/10-essential-javascript-concepts-for-every-developer

Hashnode - javascript (Javascript)

JavaScript is the lifeblood of interactive web experiences. Whether you're crafting dynamic animations, building responsive user interfaces, or powering complex web applications, JavaScript is your go-to language. But before you dive into intricate f...


120 / 126

120: Crafting Card Effects with CSS and HTML

https://jiwoong0815.com/crafting-card-effects-with-css-and-html

Hashnode - javascript (Javascript)

In the exciting journey of mastering CSS and HTML, I delved into the realm of card effects to elevate my web design skills. Armed with basic knowledge, I was inspired by the mesmerizing effects crafted by Simon Goellner using Pokémon cards. Although ...


121: Python - SQLite3 with CSV and Pandas

https://tongere.hashnode.dev/python-sqlite3-with-csv-and-pandas

Hashnode - python (python)

In the starting guide (last post) we went over the statements that allow us to access a SQLite3 database from Python. Here we're going to go over some recipes. These are code examples that will put those statements together to do something specific. ...




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