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

« Décembre 2023 »

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


Webriche: les veilleurs ne dorment jamais...

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

La veille     Haut de page     Lendemain


Mardi 19 Décembre 2023 (172)

1: Decorators in Python

https://datawise.dev/decorators-in-python

Hashnode - python (python)

One of the important programming patterns is the decorator pattern. What do decorators do' They modify a function's behavior, allowing us to enhance to add functionality without changing its structure. But how does it work in Python' You might have n...


2: Time in Godot ' Complete Guide

https://gamedevacademy.org/time-in-godot-complete-guide/

Game dev academy (Jeux)

Understanding time and its manifolds is crucial in any game development process. Whether it’s about controlling spawn rates, animations, or day-night cycles, time plays a fundamental role in bringing dynamism ... Read more


3: TileData in Godot ' Complete Guide

https://gamedevacademy.org/tiledata-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to a deep dive into the world of tile-based games! Crafting engaging levels with intricate designs is at the core of many classic and modern games alike. Through this ... Read more


4: Thread in Godot ' Complete Guide

https://gamedevacademy.org/thread-in-godot-complete-guide/

Game dev academy (Jeux)

Threads. When you hear the term, you might think of a piece of string, or perhaps the lifeline of an adventurous tale. But in the software world, threads breathe life ... Read more


5: Oubliez le diamant : voici la substance la plus dure de la planète Terre

https://www.lebigdata.fr/nitrure-de-carbone-substance-la-plus-dure

Le Big Data (dataviz)

Et si le diamant n'était pas la matière la plus résistante sur Terre'' En effet, des chercheurs de l'Université d'Édimbourg … Cet article Oubliez le diamant : voici la substance la plus dure de la planète Terre a été publié sur LEBIGDATA.FR.


6: ThemeDB in Godot ' Complete Guide

https://gamedevacademy.org/themedb-in-godot-complete-guide/

Game dev academy (Jeux)

Creating visually appealing and user-friendly interfaces is a crucial part of game development. The appearance of buttons, menus, and other UI elements can significantly impact player engagement and the overall ... Read more


7: Python Project: Pizza Menu

https://laughingatmycode.hashnode.dev/python-project-pizza-menu

Hashnode - python (python)

This Python code represents a simple program for ordering pizzas from a menu. Here's a brief overview of how it works: Menu Setup: The code begins by defining a menu with four pizza options (p1 to p4) and an extra item (extra for salad). Each menu...


8: TextServerManager in Godot ' Complete Guide

https://gamedevacademy.org/textservermanager-in-godot-complete-guide/

Game dev academy (Jeux)

When diving into the world of game development, one quickly realizes that managing text isn’t as simple as it seems. Whether you’re displaying dialogue in an RPG, showing scores in ... Read more


9: TextServerFallback in Godot ' Complete Guide

https://gamedevacademy.org/textserverfallback-in-godot-complete-guide/

Game dev academy (Jeux)

Diving into the realm of game development brings its own set of challenges and intriguing tools to master, one of which being the handling of text within your game’s engine. ... Read more


10 / 172

10: TextServerExtension in Godot ' Complete Guide

https://gamedevacademy.org/textserverextension-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to our tutorial on the TextServerExtension class in Godot 4! In the world of game development, the ability to handle text rendering and processing is a fundamental skill. Text ... Read more


11: TextServerDummy in Godot ' Complete Guide

https://gamedevacademy.org/textserverdummy-in-godot-complete-guide/

Game dev academy (Jeux)

When delving into game development with Godot Engine, you’ll encounter numerous tools and classes designed to enrich the gaming experience. Among these is the TextServerDummy class in the upcoming Godot ... Read more


12: TextServerAdvanced in Godot ' Complete Guide

https://gamedevacademy.org/textserveradvanced-in-godot-complete-guide/

Game dev academy (Jeux)

TextServerAdvanced: The Key to Advanced Text Rendering in Godot 4 When you start game development with Godot 4, sooner or later you’re bound to find yourself faced with the challenge ... Read more


13: TextServer in Godot ' Complete Guide

https://gamedevacademy.org/textserver-in-godot-complete-guide/

Game dev academy (Jeux)

When venturing into the world of game development, engaging visuals and animations often steal the show, but equally crucial is the handling of text and fonts'an area where the Godot ... Read more


14: Python Project: To-Do List in Python

https://laughingatmycode.hashnode.dev/python-project-to-do-list-in-python

Hashnode - python (python)

Goal Use append() to_do_list to store tasks, use append(), remove() to marked_tasks_list to filter finished tasks, defined functions to be reused in while-loop, if-elif-else statements to handle user prompts, loops to iterate through the list and tr...


15: Python Project: Calculate volume and surface (area) of geometric figures

https://laughingatmycode.hashnode.dev/python-project-calculate-volume-and-surface-area-of-geometric-figures

Hashnode - python (python)

Task Write a function "sphere metrics" (radius) that takes a radius as input and returns the volume and surface (area) of a sphere. This is the code to calculate the sphere volume and area. The documentation is written below. """Sphere volume and ar...


16: Python Project: Find all integers in a string and find the sum.

https://laughingatmycode.hashnode.dev/python-project-find-all-integers-in-a-string-and-find-the-sum

Hashnode - python (python)

Task Use isnumeric() Python built-in function to be able to find all integers contained in the minstring ='1966grundade456for789data'. Then your program should add up the integers 1966456789 (1+9+6+6+4+5+6+7+8+9=61) Tips: for loop, if vilkor, omvand...


17: Python Project: Simple Text-Based Adventure Game

https://laughingatmycode.hashnode.dev/python-project-simple-text-based-adventure-game

Hashnode - python (python)

Create a simple text-based adventure game. The user should be able to navigate between different rooms and collect points based on their choices. This is the final code. Documentation of the code is written below. import math # Create a variable fo...


18: Google is evaluating additional PMax brand safety controls

https://searchengineland.com/google-evaluating-pmax-brand-safety-tools-adalytics-report-435865

Search engine land (Référencement)

Google was accused of serving ads on inappropriate websites last month in a report published by Adalytics.


19: Issue 608 (Dec. 19, 2023)

https://pycoders.com/issues/608

pycoders (python)

#608 ' DECEMBER 19, 2023 View in Browser » Build a Hangman Game With Python and PySimpleGUI In this step-by-step tutorial, you’ll learn how to write the game of hangman in Python with a PySimpleGUI-based interface. You’ll see how to structure the game, build its GUI, and program the game’s logic and rules. REAL PYTHON Why if TYPE_CHECKING' “Typechecking is brittle [...]


20 / 172

20: Python Project: Text-based Menu

https://laughingatmycode.hashnode.dev/python-project-text-based-menu

Hashnode - python (python)

Task: Create a simple text-based menu with three options: Greet the user. Calculate and print the user's age. Exit the program. This is the final code. The documentation of this code is written below. """ Text Based Menu: Skapa en enkel textbaserad ...


21: Is Software Development Saturated '

https://ostech.hashnode.dev/is-software-development-saturated

Hashnode - python (python)

How do you end up finding your niche and staying adaptable in this field.


22: Python Project: Multiply all integers from 1 - 100

https://laughingatmycode.hashnode.dev/python-project-multiply-all-integers-from-1-100

Hashnode - python (python)

Write a program that multiplies all integers from 1 until the product exceeds 100. This is the final code and below is the documentation of this code. """Multiplicera heltal till = 100""" """Skriv ett program som multiplicerar alla heltal från 1 up...


23: Getting Started with Backend Development

https://varadgondepatil.hashnode.dev/getting-started-with-backend-development

Hashnode - python (python)

Are you eager to delve into the world of backend development' Here's a step-by-step guide to kickstart your journey. ## 1. Choose a Backend Language Select a backend programming language that suits your project requirements. Popular choices include: ...


24: Data Vis Dispatch, December 19

https://blog.datawrapper.de/data-vis-dispatch-december-19-2023/

Data Wrapper ()

Our team's favorite visualizations of 2023


25: Imprimante ADN, photosynthèse sans lumière, les Tech du futur dévoilé au CHS

https://www.lebigdata.fr/decouverte-cambridge-horizon-scan-chs

Le Big Data (dataviz)

Le Cambridge Horizon Scan (CHS) vient de dévoiler les innovations les plus prometteuses pour préserver la biodiversité en 2024. 15 … Cet article Imprimante ADN, photosynthèse sans lumière, les Tech du futur dévoilé au CHS a été publié sur LEBIGDATA.FR.


26: Guessing Game Project using Python

https://laughingatmycode.hashnode.dev/guessing-game-project-using-python

Hashnode - python (python)

Task: Create a program where the computer randomly selects an integer between 1 and 10. The user then has to guess which number it is. If the guess is wrong, the program should keep asking until the user guesses correctly. This is the final code. Be...


27: Python Project: Number Guessing Game

https://laughingatmycode.hashnode.dev/python-project-number-guessing-game

Hashnode - python (python)

Task: Create a program where the computer randomly selects an integer between 1 and 10. The user then has to guess which number it is. If the guess is wrong, the program should keep asking until the user guesses correctly. This is the final code. Be...


28: Getting Started with Java Programming

https://victoriaadedayo.hashnode.dev/getting-started-with-java-programming

Hashnode - javascript (Javascript)

Why Java' Java is more than just a programming language; it's like a superhero in the world of technology. But what makes Java truly amazing' Well, it's a versatile language with many cool features that not only help big companies create powerful sof...


29: Beginner's Guide to Scraping Data Using Python

https://dev.mechamorafa.com/beginners-guide-to-scraping-data-using-python

Hashnode - python (python)

IMDb, the Internet Movie Database, is a treasure trove of information for movie enthusiasts, containing extensive details about movies, TV shows, actors, and more. Scraping data from IMDb can provide valuable insights for analysis, research, or perso...


30 / 172

30: Initier les enfants au codage et à la programmation

https://macternelle.fr/2023/12/19/initier-les-enfants-au-codage-et-a-la-programmation/

Macternelle (enfant / Formation)

Les meilleures applications de codage pour enfants se distinguent par leur approche ludique et interactive. Elles transforment souvent l'apprentissage de la programmation en un jeu, avec des défis et des récompenses pour motiver les enfants. De plus, ces applications sont généralement conçues pour être simples et intuitives, permettant aux enfants d'apprendre à leur propre rythme et … [...]


31: Introduction to Machine Learning: exploring types, features and labels

https://nileshdarji.hashnode.dev/introduction-to-machine-learning

Hashnode - python (python)

Welcome to Nilesh's Blog! Here, we're diving into the basics of machine learning. We'll start by understanding what features and labels are, and then we'll explore the main types of machine learning. First things first, let's talk about what machine ...


32: Temu : qu'est-ce que cet Amazon aux prix ridicules, et qu'est-que ça cache '

https://www.lebigdata.fr/temu-tout-savoir-arnaque

Le Big Data (dataviz)

Temu s'impose peu à peu comme la plateforme de e-commerce la plus populaire, avec des prix défiant toute concurrence d'Amazon … Cet article Temu : qu’est-ce que cet Amazon aux prix ridicules, et qu’est-que ça cache ' a été publié sur LEBIGDATA.FR.


33: Myopathie myotubulaire : l'espoir de la thérapie génique pour les enfants

https://www.rtflash.fr/myopathie-myotubulaire-l-espoir-therapie-genique-pour-enfants/article

Tregouet.org ()

La myopathie myotubulaire est une maladie génétique rare qui se caractérise par une grande faiblesse musculaire pouvant causer des troubles respiratoires et des difficultés à s'alimenter. Souvent fatale, elle touche un enfant sur 50.000, uniquement des garçons et le plus souvent dès la naissance ou les premiers mois de vie. Il n'existe à ce jour aucun traitement, mais les résultats d'un e [...]


34: L'exercice régulier renverse une prédisposition génétique au cancer

https://www.rtflash.fr/l-exercice-regulier-renverse-predisposition-genetique-cancer/article

Tregouet.org ()

Notre vie est le résultat de l'interaction entre les gènes légués par nos parents (la génétique) et l'ensemble des modifications que notre mode de vie fait subir à ces gènes (l'épigénétique). en lire plus


35: MidJourney dévoile la V6 : ces premières images vont vous faire tomber du siège

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

Le Big Data (dataviz)

La V6 de MidJourney arrive ! Cette sixième version va apporter plusieurs améliorations cruciales, comme l'incorporation de texte dans les … Cet article MidJourney dévoile la V6 : ces premières images vont vous faire tomber du siège a été publié sur LEBIGDATA.FR.


36: Google Analytics 4 properties can now be integrated with AdSense

https://searchengineland.com/google-analytics-4-properties-integrated-adsense-435860

Search engine land (Référencement)

Marketers can mix AdSense data with other site metrics, like traffic sources and user behavior, to get better insights.


37: Google veut révolutionner les prévisions météo grâce à l'IA

https://www.rtflash.fr/google-veut-revolutionner-previsions-meteo-grace-l-ia/article

Tregouet.org ()

Google fait déjà la pluie et le beau temps sur Internet. Mais dans la vraie vie, c'est une autre affaire. Peut-être plus pour longtemps. Une équipe de DeepMind, le laboratoire de recherche en intelligence artificielle (IA) de Google, a présenté récemment un outil qui surpasserait tous les modèles actuels de prévisions météorologiques à moyen terme, soit dix jours en avance. Pour prévo [...]


38: 20 Java communities and websites along with their corresponding links

https://ofido.org/20-java-communities-and-websites-along-with-their-corresponding-links

Hashnode - javascript (Javascript)

1.' 'Stack Overflow: stackoverflow.com '2.' 'Java Reddit: reddit.com/r/java '3.' 'Oracle Developer Community: community.oracle.com/community/developer '4.' 'Java Code Geeks: javacodegeeks.com '5.' 'Java Ranch: coderanch.com '6.' 'GitHub: github.com '...


39: L'antibiorésistance pourrait être favorisée par les carences en vitamines

https://www.rtflash.fr/l-antibioresistance-pourrait-etre-favorisee-par-carences-en-vitamines/article

Tregouet.org ()

Selon l'Inserm, l'antibiorésistance serait responsable de 700.000 décès par an dont 25.000 en Europe. Mais des chercheurs de la faculté de médecine de l'Université de la Colombie-Britannique (UBC) ont trouvé un nouveau facteur possible de ce problème de santé publique inquiétant : les carences en micronutriments. en lire plus


40 / 172

40: Maladie d'Alzheimer : réduire le gène APOE4 au silence...

https://www.rtflash.fr/maladie-d-alzheimer-reduire-gene-apoe4-silence/article

Tregouet.org ()

Cette étude des chercheurs des Gladstone Institutes (San Francisco) centrée sur le plus grand facteur de risque génétique de la maladie d'Alzheimer, la variante du gène ApoE4, révèle une toute nouvelle cible médicamenteuse. L'équipe décrypte dans les Cell Reports, comment cette variante nocive amène les neurones à libérer une molécule de signalisation inflammatoire et comment le bloc [...]


41: Google Contacts : comment localiser votre famille ou vos amis n'importe où '

https://www.lebigdata.fr/google-contacts-localiser-famille-ou-amis

Le Big Data (dataviz)

Les amis et la famille sont précieux. Savoir où ils se trouvent peut-être essentiel. Heureusement, Google Contacts rend cela possible … Cet article Google Contacts : comment localiser votre famille ou vos amis n’importe où ' a été publié sur LEBIGDATA.FR.


42: Generative Engine Optimization framework introduced in new research

https://searchengineland.com/generative-engine-optimization-framework-introduced-research-paper-435855

Search engine land (Référencement)

The GEO framework could theoretically help websites that are ranking lower in SERPs get visibility in generative AI experiences.


43: Conditional Statements in JavaScript (If else, switch, and Ternary Operator)

https://techthinkers.dev/conditional-statements-in-javascript-if-else-switch-and-ternary-operator

Hashnode - javascript (Javascript)

Conditional Statements (If else) Conditional statements are the backbone of controlling program flow in JavaScript. They allow your code to make decisions based on various conditions, leading to different outcomes. The main types of conditional state...


44: Creating a Signup & Login Page React, Node, Express, MySql

https://thirublog.dev/creating-a-signup-login-page-react-node-express-mysql

Hashnode - javascript (Javascript)

The Frontend Looks like this Respective Frontend Code goes like this(Signup-Page) import React, { useState } from 'react'; import axios from 'axios'; import 'bootstrap/dist/css/bootstrap.min.css'; function Signup() { const [values, setValues] = u...


45: 4 ways to remove a background in Figma

https://blog.logrocket.com/ux-design/4-ways-remove-background-figma/

Log Rocket blog (Web 2)

While removing an image background can seem tricky, Figma is one tool that offers multiple ways to accomplish it. The post 4 ways to remove a background in Figma appeared first on LogRocket Blog.


46: Google makes it easier to buy YouTube reservation ads

https://searchengineland.com/google-easier-youtube-reservation-ads-435856

Search engine land (Référencement)

Google Ads has expanded its self-service purchasing system to include five additional products ' with more on the way.


48: AudioEffectPhaser in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectphaser-in-godot-complete-guide/

Game dev academy (Jeux)

Embarking on the journey of game audio can transform a silent, static digital experience into a vibrant, captivating world. Sound effects are the soul of game atmosphere, and learning how ... Read more


49: AudioEffectPanner in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectpanner-in-godot-complete-guide/

Game dev academy (Jeux)

Creating immersive game experiences often involves paying attention to not just the visuals, but also the audio elements. Among these, the ability to position sound in a 2D or 3D ... Read more


50 / 172

50: Une coalition affaiblit le groupe de ransomware APLHV/BlackCat

https://www.lemondeinformatique.fr/actualites/lire-une-coalition-affaiblit-le-groupe-de-ransomware-aplhv-blackcat-92503.html

Le monde informatique (Informatique / Internet)

Le département de justice américain (DoJ) a annoncé que le FBI et d'autres autorités (Royaume-Uni, Danemark, Allemagne, (...)


51: AudioEffectNotchFilter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectnotchfilter-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to this fantastic journey into the world of audio effects in game development using the Godot engine! Ever considered how a simple audio effect can drastically enhance a player’s ... Read more


52: AudioEffectLowShelfFilter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectlowshelffilter-in-godot-complete-guide/

Game dev academy (Jeux)

When it comes to game development, audio is a crucial element that can dramatically elevate the player’s experience. It’s not just about the music or the sound effects themselves; it’s ... Read more


53: Leader Spotlight: Letting the customer decide, with Charles Battle

https://blog.logrocket.com/product-management/leader-spotlight-charles-battle/

Log Rocket blog (Web 2)

Charles Battle, Head of Product at Ibotta, explains how the pursuit of perfection can preclude teams from releasing the best solutions. The post Leader Spotlight: Letting the customer decide, with Charles Battle appeared first on LogRocket Blog.


54: AudioEffectLowPassFilter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectlowpassfilter-in-godot-complete-guide/

Game dev academy (Jeux)

Sound is a cornerstone of experience in games and interactive media. It can drive player emotions, suggest gameplay cues, and round out the immersive environment of any digital creation. Understanding ... Read more


55: Do you know Pollyfills in Javascript'

https://blog.amantomar.in/do-you-know-pollyfills-in-javascript

Hashnode - javascript (Javascript)

Hey there! If you've ever built a website or tinkered with some cool JavaScript features, you might have bumped into a little challenge: making sure your code understands and gets along with all the different web browsers out there. Luckily, that's w...


56: AudioEffectLimiter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectlimiter-in-godot-complete-guide/

Game dev academy (Jeux)

In the vibrant and ever-evolving world of game development, sound design plays a pivotal role in creating immersive experiences. Whether you’re a budding game developer or a seasoned coder, understanding ... Read more


57: AudioEffectHighShelfFilter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffecthighshelffilter-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to the world of audio effects in Godot 4, specifically the realm of the AudioEffectHighShelfFilter. Crafting the soundscape of your game is just as crucial as designing visuals or ... Read more


58: AudioEffectHighPassFilter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffecthighpassfilter-in-godot-complete-guide/

Game dev academy (Jeux)

High-pass filters are like audio magicians in the world of game development, separating the wheat from the chaff, or more accurately, the treble from the bass. As developers, we often ... Read more


59: AudioEffectFilter in Godot ' Complete Guide

https://gamedevacademy.org/audioeffectfilter-in-godot-complete-guide/

Game dev academy (Jeux)

Navigating the auditory landscape of game development requires a solid understanding of how sound interacts with the player’s experience. Just as a master painter wields color and light, a game ... Read more


60 / 172

60: React Props - The Animated Guide

https://codeanimated.hashnode.dev/react-props-the-animated-guide

Hashnode - javascript (Javascript)

Props are a common stumbling block when moving from JavaScript to React. In reality, using props in React components is almost identical to using arguments in plain JavaScript functions. Let's take a quick look at what props are in React through some...


61: AudioEffectEQ6 in Godot ' Complete Guide

https://gamedevacademy.org/audioeffecteq6-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to our tutorial on understanding and utilizing the AudioEffectEQ6 class in Godot 4, an incredibly versatile tool that can take your game’s audio from good to phenomenal. Whether you ... Read more


62: 8 Awesome JavaScript String Manipulation Techniques

https://zguyun.hashnode.dev/8-awesome-javascript-string-manipulation-techniques

Hashnode - javascript (Javascript)

When working with JavaScript strings, there are many interesting techniques that can enhance our coding efficiency. In this article, I will introduce some JavaScript tricks related to strings to make you more proficient in string manipulation. Let's ...


63: Mastering Access Tokens and Refresh Tokens: A Comprehensive Guide

https://nigamsharma.hashnode.dev/mastering-access-tokens-and-refresh-tokens-a-comprehensive-guide

Hashnode - javascript (Javascript)

Introduction: Access tokens and refresh tokens play a pivotal role in securing web applications and maintaining user sessions. In this comprehensive guide, we'll walk through key concepts and best practices discussed in a video tutorial series, provi...


64: Implementing password-based authentication in Next.js using Lucia

https://blog.logrocket.com/password-based-authentication-next-js-lucia/

Log Rocket blog (Web 2)

Learn how to use Lucia, a new authentication library, to implement password-based auth in Next.js in this detailed, step-by-step tutorial. The post Implementing password-based authentication in Next.js using Lucia appeared first on LogRocket Blog.


65: Test for Specific Exceptions in Unit Testing

https://mathdatasimplified.com/test-for-specific-exceptions-in-unit-testing/

Math Data Simplified (data)

To test for a specific exception in unit testing, use pytest.raises. For example, you can use it to test if a ValueError is thrown when there are NaN values in the group column. The post Test for Specific Exceptions in Unit Testing appeared first on Data Science Simplified.


66: ' Stay Sharp! 9 Free Platforms to Learn C

https://evergrowingdev.hashnode.dev/stay-sharp-9-free-platforms-to-learn-c

Hashnode - Unity (unity)

If you're a newbie dev you may have started out experimenting with simpler languages, in that case, C# offers a perfect next step. C# (pronounced "C-sharp") is an approachable, general-purpose language with a huge range of real-world uses. It provide...


67: A detailed look at data modeling

https://blog.logrocket.com/product-management/data-modeling-guide/

Log Rocket blog (Web 2)

Data modeling governs how data is structured and organized, as well as how it can be stored, retrieved, and modified. The post A detailed look at data modeling appeared first on LogRocket Blog.


68: "Unlocking the Mystery: A Deep Dive into JavaScript Execution Contexts and Call Stacks for Interview Success"

https://idostack.hashnode.dev/unlocking-the-mystery-a-deep-dive-into-javascript-execution-contexts-and-call-stacks-for-interview-success

Hashnode - javascript (Javascript)

Hey fellow coders! Ever found yourself in an interview, grasping at straws while trying to recall the intricacies of JavaScript execution contexts and call stacks' Well, I've been there too. Despite having a basic understanding, recalling these conce...


69: Salesforce finit l'année sur l'acquisition de Spiff

https://www.lemondeinformatique.fr/actualites/lire-salesforce-finit-l-annee-sur-l-acquisition-de-spiff-92500.html

Le monde informatique (Informatique / Internet)

Salesforce a signé un accord définitif pour l'acquisition de Spiff, fournisseur d'un logiciel de gestion de la rémunération (...)


70 / 172

70: Adobe won't acquire Figma: What does this mean for users'

https://blog.logrocket.com/adobe-wont-acquire-figma/

Log Rocket blog (Web 2)

Adobe and Figma are going their separate ways, independently, after regulator scrutiny. Will users miss out on an Adobe-Figma future' The post Adobe won’t acquire Figma: What does this mean for users' appeared first on LogRocket Blog.


71: Adobe won't acquire Figma: What does this mean for users'

https://blog.logrocket.com/ux-design/adobe-wont-acquire-figma/

Log Rocket blog (Web 2)

Adobe and Figma are going their separate ways, independently, after regulator scrutiny. Will users miss out on an Adobe-Figma future' The post Adobe won’t acquire Figma: What does this mean for users' appeared first on LogRocket Blog.


72: Fermeture du réseau cuivre : l'Arcep manie la carotte et le bâton avec Orange

https://www.lemondeinformatique.fr/actualites/lire-fermeture-du-reseau-cuivre-l-arcep-manie-la-carotte-et-le-baton-avec-orange-92498.html

Le monde informatique (Informatique / Internet)

L'exercice est délicat et l'Arcep a pris son temps pour fixer un cadre pour accompagner le gigantesque chantier de la suppression du (...)


73: L'Anssi alerte sur les exfiltrations de données dans le secteur des télécommunications

https://www.usine-digitale.fr/article/l-anssi-alerte-sur-les-exfiltrations-de-donnees-dans-le-secteur-des-telecommunications.N2205198

L'usine-digitale (Informatique)

Qualifié de "supercritique", le secteur des télécommunications est régulièrement victime d'incidents de cybersécurité. L'Agence nationale de la sécurité des systèmes d'information a recensé 150 incidents durant les trois dernières années. Celle-ci vient de publier un rapport pour alerter sur les exfiltrations de données dont les opérateurs sont victimes et qui peuvent avoir des cons [...]


74: French Blue Tech : un index pour mettre la lumière sur les start-up maritimes

https://www.usine-digitale.fr/article/french-blue-tech-un-index-pour-mettre-la-lumiere-sur-les-start-up-de-la-mer.N2205288

L'usine-digitale (Informatique)

Les 35 start-up françaises considérées comme les plus prometteuses du secteur maritime constituent la première promotion de l'index French Blue Tech. Une reconnaissance avant tout destinée à leur donner de la visibilité pour booster les financements.


75: Animate Your JavaScript Web Apps Effortlessly with Auto-Animate

https://blog.jobins.jp/animate-your-javascript-web-apps-effortlessly-with-auto-animate

Hashnode - javascript (Javascript)

Integrating smooth transitions and animations into a web page offers numerous advantages that collectively enhance the overall user experience. At the same time adding transitions in every component of the application gets overwhelming, a bit tricky ...


76: Python Libraries for DevOps

https://atharvkshirsagar.dev/python-libraries-for-devops

Hashnode - python (python)

Reading JSON in Python To read JSON files in Python, you can use the JSON module. import json # Open the JSON file with open('data.json') as f: data = json.load(f) # Access data in the JSON file print(data['name']) In this example, we open the...


77: Guide to implementing Shepherd JS in vue project

https://blog.jobins.jp/guide-to-implementing-shepherd-js-in-vue-project

Hashnode - javascript (Javascript)

Shepherd is a JavaScript library that helps you create a step-by-step tour to guide users through your application. It uses Popper.js, which is another open-source library, to render dialogs for each tour "step". You can configure it to start the tou...


78: TomTom intègre l'IA générative de Microsoft dans ses véhicules

https://www.lebigdata.fr/tomtom-ia-generative-microsoft-voiture

Le Big Data (dataviz)

TomTom, leader des technologies de géolocalisation, s’associe à Microsoft pour propulser l’intelligence artificielle générative (Gen AI) dans l’industrie automobile. Assistant … Cet article TomTom intègre l’IA générative de Microsoft dans ses véhicules a été publié sur LEBIGDATA.FR.


79: Using the CSS contain property: A deep dive

https://blog.logrocket.com/using-css-contain-property-deep-dive/

Log Rocket blog (Web 2)

Use the CSS contain property to optimize the placement of elements on a webpage and improve UX. The post Using the CSS contain property: A deep dive appeared first on LogRocket Blog.


80 / 172

80: New Google SGE insights: Content formats, YMYL, product views

https://searchengineland.com/new-google-sge-insights-content-formats-ymyl-product-views-435849

Search engine land (Référencement)

Find out the most popular SGE content formats, warnings being triggered on YMYL queries and how Google is experimenting with product views.


81: JavaScript Essentials: Simplifying the Basics

https://blog.jobins.jp/javascript-essentials-simplifying-the-basics

Hashnode - javascript (Javascript)

Hey there, JavaScript enthusiasts! JavaScript remains the go-to language for crafting awesome web experiences and continues to top the charts as one of the most popular programming languages worldwide. As we approach 2024, I'm excited to share JavaSc...


82: How can you write variables in JavaScript

https://pixprocoder.hashnode.dev/how-can-you-write-variables-in-javascript

Hashnode - javascript (Javascript)

Using var keyword Using let keyword Using const keyword


83: Démystification du PC portable reconditionné : dépasser les préjugés et découvrir les faits

https://www.lebigdata.fr/demystification-pc-portable-reconditionne-depasser-prejuges-decouvrir-faits

Le Big Data (dataviz)

Les PC portables reconditionnés sont une option attrayante à bien des égards. Ils représentent bien plus qu’une simple alternative économique. … Cet article Démystification du PC portable reconditionné : dépasser les préjugés et découvrir les faits a été publié sur LEBIGDATA.FR.


84: Twitch : De nouvelles règles sur le contenu à caractère sexuel !

https://www.realite-virtuelle.com/twitch-nouvelles-regles-contenu-caractere-sexuel/

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

La plateforme Twitch se retrouve confrontée à une invasion d’utilisateurs indépendants qui ciblent les jeunes […] Cet article Twitch : De nouvelles règles sur le contenu à caractère sexuel ! a été publié sur REALITE-VIRTUELLE.COM.


85: A guide to enterprise transformation

https://blog.logrocket.com/product-management/enterprise-transformation-guide/

Log Rocket blog (Web 2)

You need to be able to meet change head on. However, hierarchical power structures and bureaucratic behaviors can't respond deftly to change. The post A guide to enterprise transformation appeared first on LogRocket Blog.


86: Exploring the World of Car Rental Management: Building a Python Application - Part 22

https://bryanjames.hashnode.dev/exploring-the-world-of-car-rental-management-building-a-python-application-part-22

Hashnode - python (python)

Article 22: User Interface Fundamentals Welcome back to our exciting journey of building a Python-based car rental management system. In Part 22, we will introduce User Interface (UI) fundamentals, a crucial aspect to enhance the user experience and ...


87: Refroidissement liquide : Vertiv rachète CoolTera

https://www.lemondeinformatique.fr/actualites/lire-refroidissement-liquide-vertiv-rachete-cooltera-92491.html

Le monde informatique (Informatique / Internet)

Spécialisé dans les solutions d'infrastructure et notamment de refroidissement des datacenters, Vertiv a mis la main sur CoolTera avec pour (...)


88: Handling asynchronous errors in JavaScript

https://ofido.org/handling-asynchronous-errors-in-javascript

Hashnode - javascript (Javascript)

A; Callbacks: This is one of the oldest ways to handle asynchronous operations in JavaScript. The convention is to make the first parameter of the callback an error object. If there is no error, the first parameter will be null. fs.readFile('somefile...


89: Creating Audio-Reactive Visuals with Dynamic Particles in Three.js

https://tympanus.net/codrops/2023/12/19/creating-audio-reactive-visuals-with-dynamic-particles-in-three-js/

Codrops (Design / Internet)

Learn how to build a particles music visualizer in Three.js, with techniques covering audio synchronization and 3D visual effects, inspired by ARKx's work for Coala Music's website.


90 / 172

90: Vie privée : les lunettes Ray-Ban/Meta alimentées par l'IA inquiètent

https://www.lemondeinformatique.fr/actualites/lire-vie-privee-les-lunettes-ray-ban-meta-alimentees-par-l-ia-inquietent-92472.html

Le monde informatique (Informatique / Internet)

En mars 2022, le géant des réseaux sociaux (ex-Facebook) a annoncé la sortie dans plusieurs pays, dont la France, de lunettes connectées (...)


91: Vie privée : les lunettes Ray-Ban & Meta alimentées par l'IA inquiètent

https://www.lemondeinformatique.fr/actualites/lire-vie-privee-les-lunettes-ray-ban-et-meta-alimentees-par-l-ia-inquietent-92472.html

Le monde informatique (Informatique / Internet)

En mars 2022, le géant des réseaux sociaux (ex-Facebook) a annoncé la sortie dans plusieurs pays, dont la France, de lunettes connectées (...)


92: Emerging Remote Work Trends

https://www.webpronews.com/remote-work-trends/

WebProNews SEO (Développement)

WebProNews Emerging Remote Work Trends What are the latest prevailing remote work trends within the business community today' Find out more below. Emerging Remote Work Trends Brian Wallace


93: Meet Devart's New Product Line: Python Connectors

https://timlewis.hashnode.dev/meet-devarts-new-product-line-python-connectors

Hashnode - python (python)

Devart, a recognized vendor of world-class data connectivity solutions for various data connection technologies and frameworks, released a new product line: Python connectors. These reliable connectivity solutions facilitate access to the most popula...


94: Animer un bouton burger simple avec SVG et CSS

https://www.alsacreations.com/tuto/lire/1921-Animer-un-bouton-burger-simple-avec-SVG-et-CSS.html

Alsacreations (CSS / Accessibilité)

Le format SVG peut paraître parfois un peu intimidant, et l'associer à des transitions ou des animations CSS semble encore plus audacieux pour bon nombre de personnes. Cependant, dans certains cas, l'alchimie entre SVG et CSS est aussi bénéfique qu'extrêmement simple à mettre en oeuvre. Dans ce tutoriel, nous allons suivre étape par étape comment animer un bouton burger simple avec SVG e [...]


95: Demystifying Async/Await: A Comprehensive Guide

https://tech2say.hashnode.dev/demystifying-asyncawait-a-comprehensive-guide

Hashnode - javascript (Javascript)

Topics Covered What is async' What is await' How does async/await work behind the scenes' Example of using async/await Error Handling Interviews Async/Await vs Promise.then/.catch What is Async' In JavaScript, async is a keyword used before...


96: Voici comment cette célèbre expérience VR transforme votre pièce en aquarium

https://www.realite-virtuelle.com/ocean-rift-quest-transforme-vpiece-en-aquarium/

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

Plongez dans une toute nouvelle expérience immersive grâce à la mise à jour récente d’Ocean […] Cet article Voici comment cette célèbre expérience VR transforme votre pièce en aquarium a été publié sur REALITE-VIRTUELLE.COM.


97: Miss France 2024 : voici la VRAIE gagnante selon l'IA, êtes-vous d'accord '

https://www.lebigdata.fr/miss-france-2024-la-gagnante-selon-lia

Le Big Data (dataviz)

Le concours de Miss France 2024 a été marqué par une surprise de taille : l’élection d’Ève Gilles, représentante du … Cet article Miss France 2024 : voici la VRAIE gagnante selon l’IA, êtes-vous d’accord ' a été publié sur LEBIGDATA.FR.


98: Shallow copy vs Deep copy

https://vishal21121.hashnode.dev/shallow-copy-vs-deep-copy

Hashnode - javascript (Javascript)

When dealing with arrays and objects in JavaScript, it is often necessary to create copies of these structures. Since both arrays and objects are mutable, understanding the implications of modifying a copied array or object on the original is crucial...


99: Microsoft Word, Excel et PowerPoint sur Quest : Une avancée décisive pour la VR '

https://www.realite-virtuelle.com/microsoft-word-excel-powerpoint-sur-quest/

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

Un tournant majeur dans le monde de la réalité virtuelle (VR) ! Microsoft Word, Excel et […] Cet article Microsoft Word, Excel et PowerPoint sur Quest : Une avancée décisive pour la VR ' a été publié sur REALITE-VIRTUELLE.COM.


100 / 172

100: Simplify and Stabilize Your Playwright Locators

https://mikestopcontinues.hashnode.dev/simplify-and-stabilize-your-playwright-locators

Hashnode - javascript (Javascript)

Who controls the locators, controls the web. Much of Playwright's power comes from its ability to target and interact with elements on a webpage. But as you well know, the web is a finicky place. Elements come and go, and the slightest change in HTML...


101: BidsCube teams up with Pixalate to combat ad fraud by BidsCube

https://searchengineland.com/bidscube-teams-up-with-pixalate-to-combat-ad-fraud-435764

Search engine land (Référencement)

The partnership aims to provide customers with more reliable programmatic solutions and enhance ad transparency.


102: Frontend Rewind 2023 ' Day 19

https://tympanus.net/codrops/2023/12/19/frontend-rewind-2023-day-19/

Codrops (Design / Internet)

Join us for Day 19 in our special calendar, where we highlight the most interesting frontend resources from 2023.


103: Collective 800

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

Codrops (Design / Internet)

Making noisy SVGs * Exclusive Accordion * CSS Wrapped 2023


104: Promotions exceptionnelles pour les fêtes avec Meta Quest

https://www.realite-virtuelle.com/promotion-meta-quest-fetes/

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

La magie des fêtes s’invite chez Meta Quest avec des promotions exclusives à ne pas […] Cet article Promotions exceptionnelles pour les fêtes avec Meta Quest a été publié sur REALITE-VIRTUELLE.COM.


105: Arnaque au faux coursier : déjà 500 000 ' volés à Paris, arrêtez le massacre !

https://www.lebigdata.fr/arnaque-faux-coursier

Le Big Data (dataviz)

Les fraudeurs sont toujours à la recherche de nouvelles tactiques pour arnaquer les gens. Ils ont de plus en plus … Cet article Arnaque au faux coursier : déjà 500 000 ' volés à Paris, arrêtez le massacre ! a été publié sur LEBIGDATA.FR.


106: JavaScript APIs

https://saifur-rahman-mahin.hashnode.dev/javascript-apis

Hashnode - javascript (Javascript)

JavaScript APIs JavaScript APIs can be categorized into high-level and low-level APIs based on their abstraction and the level of detail they expose to developers. High-level APIs provide more abstraction, making it easier for developers to work with...


107: Automobile : TomTom s'associe à Microsoft pour créer un assistant conversationnel alimenté par l'IA

https://www.usine-digitale.fr/article/automobile-tomtom-s-associe-a-microsoft-pour-creer-un-assistant-conversationnel-alimente-par-l-ia.N2205264

L'usine-digitale (Informatique)

Le spécialiste européen de la cartographie numérique s'est appuyé sur les outils du géant technologique américain pour développer un assistant vocal qui permet de converser naturellement avec son véhicule pour demander un itinéraire ou contrôler les systèmes embarqués.


108: Les grandes tendances et évolutions de la modération en 2024

https://www.blogdumoderateur.com/tendances-evolutions-moderation-2024/

Blog du Moderateur ()

Panorama des enjeux à venir autour de la modération avec Netino.


109: Some Best Practices For Handling Errors In JavaScript

https://ofidohub.hashnode.dev/some-best-practices-for-handling-errors-in-javascript

Hashnode - javascript (Javascript)

A: Use try...catch blocks: This is the most common way to handle synchronous errors. It allows you to "try" a block of code and "catch" any errors that occur. try { // Code that may throw an error } catch (error) { // Handle the error } B: T...


110 / 172

110: Some Best Practices For Handling Errors In JavaScript

https://ofido.org/some-best-practices-for-handling-errors-in-javascript

Hashnode - javascript (Javascript)

A: Use try...catch blocks: This is the most common way to handle synchronous errors. It allows you to "try" a block of code and "catch" any errors that occur. try { // Code that may throw an error } catch (error) { // Handle the error } B: T...


111: Kourou s'attire le courroux de la CNIL en l'absence de DPO

https://www.lemondeinformatique.fr/actualites/lire-kourou-s-attire-le-courroux-de-la-cnil-en-l-absence-de-dpo-92487.html

Le monde informatique (Informatique / Internet)

La CNIL commence à perdre patience. Le 12 décembre 2023, la commission nationale de l'informatique et des libertés a prononcé (...)


112: Le guide complet pour avoir une IA comme chatGPT en local sur votre ordinateur.

https://tech4free.fr/blog/le-guide-complet-pour-avoir-une-ia-comme-chatgpt-en-local-sur-votre-ordinateur/

Humancoders ()

Déployez des modèles de langage avancés comme ChatGPT sur votre PC avec Ollama : un guide pour transformer votre ordinateur en IA puissante, simplement et en toute confidentialité. Commentaires L'article Le guide complet pour avoir une IA comme chatGPT en local sur votre ordinateur. a été posté dans la catégorie IA de Human Coders News


113: Play Store : Google va régler un litige à 700 M$

https://www.lemondeinformatique.fr/actualites/lire-play-store-google-va-regler-un-litige-a-700-m%24-92488.html

Le monde informatique (Informatique / Internet)

Google a accepté de payer 700 millions de dollars et d'autoriser une concurrence accrue dans sa boutique d'applications Play, selon les termes d'un (...)


114: Elevate Your App Game: Unveiling the Power of Flutter and MVPs in Mobile App Development

https://kevinmiller.hashnode.dev/elevate-your-app-game-unveiling-the-power-of-flutter-and-mvps-in-mobile-app-development

Hashnode - Flutter (Flutter)

Introduction: In the ever-evolving landscape of mobile app development, staying ahead means embracing winning combinations. Enter Flutter, Google's UI toolkit for building natively compiled applications, and MVP (Model-View-Presenter) architecture ' ...


115: Google va verser 700 millions de dollars pour régler à l'amiable une plainte contre sa boutique d'applications

https://www.usine-digitale.fr/article/google-va-verser-700-millions-de-dollars-pour-regler-a-l-amiable-une-plainte-contre-son-playstore.N2205251

L'usine-digitale (Informatique)

630 millions de dollars alimenteront un fonds de compensation des consommateurs. Le moteur de recherche à préserver l'essentiel, négociant des changements minimes de ses règles.


116: Les meilleurs logiciels de gestion de projet : trouver l'outil adapté à votre entreprise - décembre 2023

https://www.lebigdata.fr/meilleur-logiciel-gestion-projet

Le Big Data (dataviz)

Les logiciels de gestion de projet se réinventent constamment pour répondre aux besoins croissants des entreprises en matière d’efficacité et … Cet article Les meilleurs logiciels de gestion de projet : trouver l’outil adapté à votre entreprise - décembre 2023 a été publié sur LEBIGDATA.FR.


117: Excel World Championship

https://flowingdata.com/2023/12/19/excel-world-championship/

Flowing data (dataviz)

The Microsoft Excel World Championship 2023 wrapped a couple weeks ago, and the…Tags: championship, Excel


118: Instagram : les 10 nouveautés qu'il ne fallait pas manquer en 2023

https://www.blogdumoderateur.com/instagram-10-nouveautes-2023/

Blog du Moderateur ()

En 2023, Instagram a fait le plein de nouveautés : canaux de diffusion, collections collaboratives, lancement de Threads...


119: L'informatique recrute plus d'ingénieurs que l'industrie, selon l'Apec

https://www.lemondeinformatique.fr/actualites/lire-l-informatique-recrute-plus-d-ingenieurs-que-l-industrie-selon-l-apec-92473.html

Le monde informatique (Informatique / Internet)

L'Apec a dévoilé les résultats d'une enquête nationale sur la situation professionnelle des ingénieurs diplômés (...)


120 / 172

120: ChatGPT entre dans le top 10 des applications les plus téléchargées dans le monde

https://www.blogdumoderateur.com/chatgpt-entre-top-10-applications-plus-telechargees-monde/

Blog du Moderateur ()

Appfigures révèle son classement des applications mobiles les plus téléchargées dans le monde sur iOS et Android au mois de novembre 2023.


121: Grand Théma Piloter l'entreprise en full SaaS : les témoignages de la Région Île-de-France et Storengy

https://www.lemondeinformatique.fr/actualites/lire-grand-thema-piloter-l-entreprise-en-full-saas-les-temoignages-de-la-region-ile-de-france-et-storengy-92477.html

Le monde informatique (Informatique / Internet)

Dans le cadre de notre grand théma « Piloter l'entreprise en full SaaS », nous avons reçu des entreprises qui ont débuté, (...)


122: Vous avez déjà rencontré un bug bizarre, non-reproductible '

https://engineering.gusto.com/the-weirdest-bug-ive-seen-yet

Humancoders ()

Vous avez déjà rencontré un bug bizarre, non-reproductible ' Probablement oui :) Cet article raconte les différentes étapes pour identifier que le problème venait de l'utilisation d'un GIF si l'application Grammarly était installée. Commentaires L'article Vous avez déjà rencontré un bug bizarre, non-reproductible ' a été posté dans la catégorie Développement de Human Coders News


123: Cyberattaque contre la maison-mère de Vans, The North Face et Timberland

https://www.lemondeinformatique.fr/actualites/lire-cyberattaque-contre-la-maison-mere-de-vans-the-north-face-et-timberland-92486.html

Le monde informatique (Informatique / Internet)

Pas vraiment connu du grand public, VF Corporation est pourtant un poids lourd de l'industrie textile, des chaussures et accessoires de mode. Pesant 11,6 (...)


124: React series

https://afi.hashnode.dev/react-series

Hashnode - javascript (Javascript)

How to get started: open your VSCode terminal and run command -> npm create vite@latest than it will ask for project name : 01basicreact(in our case) then it will ask you for framework -> react(in our case) then choose variant -> JacaScript ( in our ...


125: Creating a ListGroup Component in react

https://idealead.hashnode.dev/creating-a-listgroup-component-in-react

Hashnode - javascript (Javascript)

Note: I have used Bootstrap here, (Bootstrap is a very popular CSS library that gives us a bunch of CSS classes for styling our application) To install Bootstrap in your program run the command : npm install or i(short for install) bootstrap After th...


126: Data clean room : Snowflake rachète la start-up Samooha

https://www.lemondeinformatique.fr/actualites/lire-data-clean-room-snowflake-rachete-la-start-up-samooha-92485.html

Le monde informatique (Informatique / Internet)

En tant que fournisseur de plateformes de données et ce qui concerne aussi bien leur traitement que leur gestion ou leur intégration au SI (...)


127: 2024 has arrived, should I choose MUI'

https://illacloud.hashnode.dev/2024-has-arrived-should-i-choose-mui

Hashnode - javascript (Javascript)

2024 has arrived, and the ecosystem of React component libraries remains highly prosperous. This article will dissect two currently popular component libraries from various perspectives, providing an objective analysis to help users make more informe...


128: It's 2024, should I choose Shadcn UI'

https://illacloud.hashnode.dev/its-2024-should-i-choose-shadcn-ui

Hashnode - javascript (Javascript)

2024 has arrived, and the ecosystem of React component libraries remains vibrant. This article will dissect two currently popular component libraries from various perspectives, providing an objective analysis to help users make more informed choices....


129: Red Hat s'engage avec l'AI Alliance pour une IA responsable et innovante

https://www.lebigdata.fr/red-hat-ai-alliance-ia-responsable

Le Big Data (dataviz)

Dans ce paysage technologique en constante évolution, l’équipe de Red Hat prend position en tant que membre fondateur de l’AI … Cet article Red Hat s’engage avec l’AI Alliance pour une IA responsable et innovante a été publié sur LEBIGDATA.FR.


130 / 172

130: Chiffres Threads : le nombre de téléchargements en France et en Europe

https://www.blogdumoderateur.com/chiffres-threads/

Blog du Moderateur ()

Avec 2,6 millions de téléchargements trois jours après son lancement, Threads fait timidement ses débuts dans l'Union européenne.


131: A Deep Dive into Kotlin's Scope Functions

https://blog.evanemran.info/a-deep-dive-into-kotlins-scope-functions

Hashnode - Kotlin (Mobiles)

Kotlin, the land of concise and expressive code, has a secret weapon under its belt: scope functions. These miniature magicians can transform clunky, chained expressions into elegant chains of clarity. Today, we embark on a journey to unveil their se...


132: L'Apple Vision Pro et ses besoins en termes d'ordinateur

https://www.realite-virtuelle.com/lapple-vision-pro-necessite-t-il-un-ordinateur/

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

Faisant partie des innovations récentes, l’Apple Vision Pro suscite l’intérêt du grand public comme des […] Cet article L’Apple Vision Pro et ses besoins en termes d’ordinateur a été publié sur REALITE-VIRTUELLE.COM.


133: L'open source irrigue une grande partie de l'économie française

https://www.lemondeinformatique.fr/actualites/lire-l-open-source-irrigue-une-grande-partie-de-l-economie-francaise-92479.html

Le monde informatique (Informatique / Internet)

Les organisations françaises, particulièrement celles du secteur public, sont très favorables à l'open source. Le constat ne (...)


134: Jaguar Land Rover tambour battant vers l'IA et la RPA

https://www.lemondeinformatique.fr/actualites/lire-jaguar-land-rover-tambour-battant-vers-l-ia-et-la-rpa-92478.html

Le monde informatique (Informatique / Internet)

Anthony Battle a rejoint Jaguar Land Rover (JLR) en tant que CDIO (chief digital and information officer) en février 2022, alors que l'entreprise (...)


135: Creativ lead : le parcours et les conseils de Mégane pour développer sa créativité

https://www.blogdumoderateur.com/creativ-lead-parcours-conseils-megane-developper-creativite/

Blog du Moderateur ()

Nous avons rencontré Mégane Legras, creativ lead chez Aon, qui nous présente son parcours, en quoi consiste son métier et la formation qu'elle a suivie à l'ECITV.


136: Creative lead : le parcours et les conseils de Mégane pour développer sa créativité

https://www.blogdumoderateur.com/creative-lead-parcours-conseils-megane-developper-creativite/

Blog du Moderateur ()

Nous avons rencontré Mégane Legras, creative lead chez Aon, qui nous présente son parcours, en quoi consiste son métier et la formation qu'elle a suivie à l'ECITV.


137: Iliad propose une fusion avec option d'achat à Vodafone Italia

https://www.usine-digitale.fr/article/iliad-propose-une-fusion-avec-option-d-achat-a-vodafone-italia.N2205243

L'usine-digitale (Informatique)

Le groupe télécom de Xavier Niel est toujours déterminé à mettre le grappin sur Vodafone Italia. Après une offre d'achat rejetée l'année dernière, il propose la création d'une co-entreprise via une fusion à 50-50 de leurs activités' avec option d'achat.


138: L'ESN Koredge reprise par le fonds Sapaudia PME 1ER

https://www.lemondeinformatique.fr/actualites/lire-l-esn-koredge-reprise-par-le-fonds-sapaudia-pme-1er-92480.html

Le monde informatique (Informatique / Internet)

Placée en liquidation judiciaire le 6 octobre puis liquidée en décembre, l'ESN Koredge a vu la majorité de ses actifs (...)


139: L'Anssi se penche sur les menaces touchant les télécoms

https://www.lemondeinformatique.fr/actualites/lire-l-anssi-se-penche-sur-les-menaces-touchant-les-telecoms-92484.html

Le monde informatique (Informatique / Internet)

Les cybermenaces n'épargnent aucun secteur, y compris celui particulièrement critique des réseaux télécoms. C'est ce (...)


140 / 172

140: Pourquoi l'UX n'est plus un détail ou l'UX selon Google

https://www.usabilis.com/pourquoi-l-ux-n-est-plus-un-detail-ou-l-ux-selon-google/

Usabilis (ux)

La compétition entre les marques ne se joue plus sur les produits et services qu'elles proposent, mais sur l'expérience que l'on en a. La raison est généralement une expérience utilisateur (User Experience ' UX) excellente pour les uns et défaillante pour les autres... Cet article Pourquoi l'UX n'est plus un détail ou l'UX selon Google est apparu en premier sur USABILIS.


141: Querying news articles via a streamlit app using openAI, langchain, and qdrant db

https://vardhanam.hashnode.dev/querying-news-articles-via-a-streamlit-app-using-openai-langchain-and-qdrant-db

Hashnode - python (python)

Introduction Chatbots integrated into news querying serve various crucial purposes. They offer a convenient and conversational approach for users to access news, eliminating the need to navigate websites or apps. Users can simply ask a chatbot for n...


142: Icologram, une nouvelle expérience musicale en réalité augmentée

https://www.realite-virtuelle.com/henri-des-concert-holographique-icologram/

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

En pleine tournée avec « Solo+1 », Henri Dès fait entrer la musique numérique dans une nouvelle […] Cet article Icologram, une nouvelle expérience musicale en réalité augmentée a été publié sur REALITE-VIRTUELLE.COM.


143: GTA III, Vice City, San Andreas sur Netflix : Comment jouer dans les meilleures conditions '

https://www.lebigdata.fr/gta-netflix

Le Big Data (dataviz)

Ces trois titres emblématiques de GTA sont désormais disponibles sur Netflix. Mais vous allez avoir besoin d'un bon smartphone pour … Cet article GTA III, Vice City, San Andreas sur Netflix : Comment jouer dans les meilleures conditions ' a été publié sur LEBIGDATA.FR.


144: Une cyberattaque peut paralyser l'Angleterre et la France, selon ce rapport terrifiant

https://www.lebigdata.fr/cyberattaque-angleterre-france

Le Big Data (dataviz)

Une cyberattaque d'ampleur mettrait à genoux l'Angleterre et la France. Ce rapport britannique alerte sur la faiblesse de nos défenses … Cet article Une cyberattaque peut paralyser l’Angleterre et la France, selon ce rapport terrifiant a été publié sur LEBIGDATA.FR.


145: Goossips SEO : Formats PDF et HTML

https://www.abondance.com/20231219-320327-goossips-seo-formats-pdf-et-html.html

Abondance (Référencement)

Quelques infos sur Google (et Bing parfois) et son moteur de recherche, glanées ici et là de façon officieuse ces derniers jours. Au programme, cette semaine : proposer un contenu au format HTML et PDF pose-t-il problème ' Voici une petite compilation des informations fournies par les porte-paroles officiels de Google ces derniers jours sur […] L'article "Goossips SEO : Formats PDF et HT [...]


146: Google va empêcher la police de surveiller votre position GPS : voici comment

https://www.lebigdata.fr/surveillance-gps-google

Le Big Data (dataviz)

L'entreprise californienne vient d'instaurer un changement dans ses pratiques. Récemment, Google a mis fin à l'utilisation de ses données GPS. … Cet article Google va empêcher la police de surveiller votre position GPS : voici comment a été publié sur LEBIGDATA.FR.


147: Creating a Reusable Snackbar Component in Next.js

https://atchyutn.hashnode.dev/snackbar-component-in-nextjs

Hashnode - javascript (Javascript)

Notifications and alerts are an essential part of user interaction in web applications. They inform users about successes, errors, and other significant events. Material-UI's Snackbar component is a popular choice for displaying these brief messages....


148: Server Side Kotlin-08

https://devnation.joshisfitness.com/server-side-kotlin-08

Hashnode - Kotlin (Mobiles)

lambda functions that take a collection element as a input and return a boolean value is called Predicate. In Kotlin, filtering conditions uses predicates. These functions do not change the original collection , and available for both mutable and ...


149: Semantic HTML

https://abhi8094.hashnode.dev/semantic-html

Hashnode - javascript (Javascript)

What Is Semantic HTML' The term "semantic" refers to the meaning or interpretation of a word or expression. Semantic HTML uses to both the browser and the developer. Examples - , and etc. Why Do I Need to Use Semantic HTML Tags...


150 / 172

150: Understanding HTTP and Express.js: A Comparative Analysi

https://m--mdy--m.hashnode.dev/http-vs-express

Hashnode - javascript (Javascript)

Creating servers and handling web requests are essential aspects of web development. While the traditional HTTP module in Node.js allows building servers, Express.js simplifies the process with its robust framework. Let's explore the differences betw...


151: ' Caching in JavaScript

https://saifur-rahman-mahin.hashnode.dev/caching-in-javascript

Hashnode - javascript (Javascript)

' Caching in JavaScript: Comprehensive Overview Caching in JavaScript is crucial for optimizing performance and reducing unnecessary data retrieval. Developers can choose from a variety of techniques based on specific requirements and use cases. 1. ...


152: How Gradient Descent works in Logistic Regression | Episode 11

https://neuralrealm.hashnode.dev/how-gradient-descent-works-in-logistic-regression-episode-11

Hashnode - python (python)

To train a logistic regression model, we need to determine the values of the parameters w and b that minimize the cost function J of w and b. To accomplish this, we'll use gradient descent. In this video, we'll focus on how to choose good values for ...


153: What is Object Oriented Programming ' Complete Guide

https://gamedevacademy.org/what-is-object-oriented-programming/

Game dev academy (Jeux)

Have you heard of Object-Oriented Programming (OOP) and wondered what it’s all about' You are in the right place! This comprehensive guide will shed light on OOP, uncover its significant ... Read more


154: How to Code Games in Java ' Best Learning Tutorials

https://gamedevacademy.org/how-to-code-games-in-java/

Game dev academy (Jeux)

Java, a robust and versatile coding language, has been a staple in the game development industry for years. Whether you’re a budding developer eager to dip your toes into game ... Read more


155: How to Code Games in Scratch ' Best Learning Tutorials

https://gamedevacademy.org/how-to-code-games-in-scratch/

Game dev academy (Jeux)

Have you ever wanted to create your own games but didn’t know where to start' Scratch, a visual programming environment developed by Massachusetts Institute of Technology (MIT), is a beginner-friendly ... Read more


156: What is Computer Science ' Complete Guide

https://gamedevacademy.org/what-is-computer-science/

Game dev academy (Jeux)

Diving into the profound world of technology, we have the opportunity to explore one of its fundamental branches ' Computer Science. What is it about' Why should you get acquainted ... Read more


157: LobeChat

https://github.com/lobehub/lobe-chat

pointer.io (Développement)

OS chatbot framework that supports speech synthesis, multimodal, and plugin system.


158: 7 Challenges With Long-Term Projects And How To Manage Them

https://newsletter.techleadmentor.com/p/7-challenges-with-long-term-projects

pointer.io (Développement)

Raviraj, a tech lead from Meta, outlines his approach to the following: (1) Prioritizing hard problems. (2) Dealing with hidden work. (3) Managing attrition. (4) Staging the value. (5) Adapting to changing constraints. (6) Maintaining confidence and perception. (7) Having a concrete timeline.


159: Text Editor Data Structures: Rethinking Undo

https://cdacamar.github.io/data%20structures/algorithms/benchmarking/text%20editors/c++/rethinking-undo/

pointer.io (Développement)

"Undo and redo have been a staple operation of text editors probably since the first typo was ever made, yet there has not been a lot of innovation around refining the idea of what undo and redo could be. Let's explore what I mean..."


160 / 172

160: Deliver Software Security, Reliability, And Maintainability Through Clean Code Practices

https://www.sonarsource.com/blog/what-is-clean-code/?utm_medium=paid&utm_source=pointer&utm_campaign=ss-cleancode&utm_content=newsletter-sponsored-primary-231219-x&utm_term=ww-psp-x

pointer.io (Développement)

Every company is a software company, and improving the quality, reliability, and security of your code matters. Sonar has spent the last 15 years building tools like SonarQube and SonarLint to help improve developer velocity, reduce code- level technical debt, and put security in the hands of developers. In this article, we detail how companies can make Clean Code a priority.


161: Ship Shape

https://www.canva.dev/blog/engineering/ship-shape/

pointer.io (Développement)

How Canva does hand-drawn shape recognition in the browser using machine learning to convert user-drawn scribbles into vector graphics, keeping classification latency at the forefront of the user experience. "We wanted to make sure the experience was snappy but still accurate. Therefore, we decided to deploy the solution in the browser, which allows for real-time shape recognition and drawing assi [...]


162: Biggest Productivity Killers In The Engineering Industry

https://newsletter.eng-leadership.com/p/biggest-productivity-killers-in-the

pointer.io (Développement)

Perfectionism: (1) Progress is much more important than perfection, waiting for perfect moments causes more issues than actually doing it when it's not. 95% is often good enough for the majority of cases. (2) Procrastination: focus on finishing the hardest task first thing in the morning. Other tasks become much easier to finish. (3) Context-switching: Timeboxing of tasks, sticking to one task u [...]


163: Copilot Classes

https://github.com/microsoft/Mastering-GitHub-Copilot-for-Paired-Programming

pointer.io (Développement)

Mastering GitHub Copilot for AI paired programming.


165: Why Should You (Or Anyone) Become An Engineering Manager'

https://charity.wtf/2023/12/15/why-should-you-or-anyone-become-an-engineering-manager/

pointer.io (Développement)

"The main reason I would encourage you to try engineering management is a reason that I'm not sure I've ever heard someone cite in advance, which is that it can make you better at life and relationships, in a huge and meaningful way. Work is always about two things: what you put out into the world, and who you become while doing it. I want to stop well short of proclaiming that 'being a manager wi [...]


166: Database Fundamentals

https://tontinton.com/posts/database-fundementals/

pointer.io (Développement)

"I tried thinking which database I should choose for my next project, and came to the realization that I don't really know the differences of databases enough. I went to different database websites and saw mostly marketing and words I don't understand. This is when I decided to read the excellent books Database Internals by Alex Petrov and Designing Data-Intensive Applications by Martin Kleppmann. [...]


167: AutoAnimate

https://github.com/formkit/auto-animate

pointer.io (Développement)

Adds smooth transitions to your web app.


168: Data Engineering Handbook

https://github.com/DataEngineer-io/data-engineer-handbook

pointer.io (Développement)

Everything about data engineering.


169: Simple Sabotage For Software

https://erikbern.com/2023/12/13/simple-sabotage-for-software.html

pointer.io (Développement)

The CIA produced a fantastic book during the peak of World War 2 called Simple Sabotage. It laid out various ways for infiltrators to ruin productivity of a company: (1)  Insist on doing everything through 'channels'. Never permit short-cuts to be taken in order to expedite decisions. (2) Make 'speeches'. Talk as frequently as possible and at lengths. Illustrate your 'points' by long anecdotes [...]


170 / 172

170: PageSpy

https://github.com/HuolalaTech/page-spy-web

pointer.io (Développement)

Remote debugging tool for web projects.




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