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

« Mars 2024 »

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


Webriche: les veilleurs ne dorment jamais...

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

La veille     Haut de page     Lendemain


Lundi 25 Mars 2024 (129)

1: Lessons from open-source: Replace zod with superstruct if you do not use zod's advanced capabilities

https://ramunarasinga.hashnode.dev/lessons-from-open-source-replace-zod-with-superstruct-if-you-do-not-use-zods-advanced-capabilities

Hashnode - javascript (Javascript)

This lesson is picked from Next.js source code. In this article, you will learn how Next.js replaced zod with superstruct. As I was looking at the is-error.ts, I found an import isPlainObject. Technically, I should have looked into shared/lib/is-pla...


2: Separation of Concerns, Locality of Behavior, and JavaScript

https://wipdev.hashnode.dev/separation-of-concerns-locality-of-behavior-and-javascript

Hashnode - javascript (Javascript)

In this article I will share my personal take on the new full-stack JavaScript frameworks with respect to these two concepts in the title and why they are important factors in my tech preferences. There is a lot to unpack here, so this is enough of a...


3: Only a dumb view is a good view.

https://royalzsoftware.de/only-a-dumb-view-is-a-good-view

Hashnode - javascript (Javascript)

When talking about test driven development there are a lot of hurdles and it's a stready process. It takes weeks, months and maybe years to get used to it. Depending on how bad the code base that you are working on currently is. TDD for frontend' Are...


4: Interface Segregation Principle

https://kapitan-heneral.hashnode.dev/interface-segregation-principle

Hashnode - javascript (Javascript)

' This principle states that you have to make fine-grained interfaces that are client-specific. Again, what do we mean by that' Let's break it down. There are two main ideas in its name: Interface and segregation. What is an interface' What do we mea...


5: Securing the Digital Realm: A Dive into Encryption Algorithms and the Magic of SSL/TLS

https://sankalp-haritash.hashnode.dev/securing-the-digital-realm-a-dive-into-encryption-algorithms-and-the-magic-of-ssltls

Hashnode - javascript (Javascript)

In the vast expanse of the digital universe, data security emerges as a paramount concern, akin to safeguarding treasures in the ancient world. Encryption, the art of encoding messages, stands as the guardian of this realm, ensuring that prying eyes ...


6: Day 39: Server Side Rendering in Python

https://himanshuchauhan.hashnode.dev/day-39-server-side-rendering-in-python

Hashnode - python (python)

Welcome to the thirty-ninth blog in our Python learning series! In this post, we'll delve into the realm of Server-Side Rendering in Python. I'll share my latest insights and discoveries on this topic, demonstrating how to create and render pages usi...


7: Destructuring Vue.js props: The Reactivity Challenge

https://blog.richardev.com/destructuring-vuejs-props

Hashnode - javascript (Javascript)

Destructuring objects is a common practice in JavaScript, and it can make your code cleaner by extracting specific properties. In Vue.js, however, destructuring props can unintentionally break reactivity. The Pitfalls of Destructured Props ' You ca...


8: Build a HTML5 game like 'Watermelon Game' using Phaser and Box2D powered by Planck.js ' step 7: adding sounds and loading bar. Get it on Gumroad

https://www.emanueleferonato.com/2024/03/25/build-a-html5-game-like-watermelon-game-using-phaser-and-box2d-powered-by-planck-js-step-7-adding-sounds-and-loading-bar-get-it-on-gumroad/

Emanuele Feronato (Javascript / .GAME)

Get the HTML5 "Watermelon Game" full webpack project, powered by Phaser and Box2D through Planck.js, written in TypeScript. Phaser official webpack template included. Free download, just enter "zero" as price.


9: Getting Started with OpenAI: How to Set Up Your API Keys

https://surajshetty.hashnode.dev/getting-started-with-openai-how-to-set-up-your-api-keys

Hashnode - python (python)

Let's learn what OpenAI is and how to set up API keys. Founded in December 2015, OpenAI is an AI research lab filled with some of the brightest minds in artificial intelligence. It focuses on advancing AI technology and ensuring it develops safely a...


10 / 129

10: Stack Frames in Python: Accessing the frame object using decorator

https://adityadubey.hashnode.dev/stack-frames-in-python-accessing-the-frame-object-using-decorator

Hashnode - python (python)

Introduction Understanding memory management is crucial for writing efficient and error-free code in any programming language. In Python, a language known for its simplicity and readability, memory management plays a vital role in the execution of pr...


11: Vous avez 35-65 ans ' Cette IA calcule si vous allez mourir d'ici 4 ans

https://www.lebigdata.fr/ia-calcule-si-vous-allez-mourir-dici-4-ans

Le Big Data (dataviz)

Curieux de savoir quand vous mourrez ' Des scientifiques danois ont créé une IA qui calcule les grandes étapes de … Cet article Vous avez 35-65 ans ' Cette IA calcule si vous allez mourir d’ici 4 ans a été publié sur LEBIGDATA.FR.


13: Convert your web application into a Progressive Web App (PWA)

https://blogs.utkarshrajput.com/convert-your-web-application-into-a-progressive-web-app-pwa

Hashnode - javascript (Javascript)

Prologue Making a web app is indeed an ingenious skill. It takes a significant amount of effort to build a web application, make it screen-responsive, and add modern features and interactive elements. Once, you've done everything, the next big thing ...


14: Dans un contexte géopolitique tendu, Apple resserre ses liens avec la Chine

https://www.usine-digitale.fr/article/dans-un-contexte-geopolitique-tendu-apple-resserre-les-liens-avec-la-chine.N2210435

L'usine-digitale (Informatique)

La firme de Cupertino veut se montrer ouverte aux affaires avec la Chine. Si le contexte géopolitique avec les Etats-Unis n'est franchement pas au beau fixe, Apple estime toutefois que ce marché est primordial pour sa bonne santé financière et compte bien faire tout son possible pour redresser la barre des ventes.


15: Day 14 - Restaurant Menu With Filter

https://antomervin.hashnode.dev/day-14-restaurant-menu-with-filter

Hashnode - javascript (Javascript)

In today's digital age, restaurant menus play a crucial role in attracting and retaining customers. With the increasing demand for personalized experiences, the use of menu filters has become essential for modern restaurants. This article explores th...


16: Day 46 of LeetCode

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

Hashnode - python (python)

Documenting LeetCode solving. Q121 97. Interleaving String Medium. 2D DP. class Solution: def isInterleave(self, s1: str, s2: str, s3: str) -> bool: if len(s1) + len(s2) != len(s3): return False dp = [[False] * (len(s...


17: A Beginner's Guide to Recoil: Simplifying State Management in React

https://prajwalpandey.hashnode.dev/a-beginners-guide-to-recoil-simplifying-state-management-in-react

Hashnode - javascript (Javascript)

Introduction: In the world of React development, managing state effectively is key to building robust and maintainable applications. While React provides its own state management solutions, such as useState and useContext, as applications grow in com...


18: Instagram updates hashtag search to simplify account and post discovery

https://searchengineland.com/instagram-updates-hashtag-search-account-post-438748

Search engine land (Référencement)

The platform rolled out the change to make it easier for users to find relevant accounts and posts in one place.


19: La perception des métiers de la cybersécurité auscultée par l'Anssi

https://www.lemondeinformatique.fr/actualites/lire-la-perception-des-metiers-de-la-cybersecurite-auscultee-par-l-anssi-93333.html

Le monde informatique (Informatique / Internet)

Chaque médaille a son revers, c'est également le cas pour les métiers en cybersécurité. Fortement demandés, en (...)


20 / 129

20: La clé d'une vie apaisée se trouve dans cette étonnante révélation

https://www.lebigdata.fr/la-cle-dune-vie-apaisee-se-trouve-dans-cette-etonnante-revelation

Le Big Data (dataviz)

Des chercheurs ont analysé 154 études impliquant plus de 10 000 participants pour déterminer la meilleure façon de gérer la … Cet article La clé d’une vie apaisée se trouve dans cette étonnante révélation a été publié sur LEBIGDATA.FR.


21: Un exploit pour une faille critique dans FortiClient Server inquiète

https://www.lemondeinformatique.fr/actualites/lire-un-exploit-pour-une-faille-critique-dans-forticlient-server-inquiete-93329.html

Le monde informatique (Informatique / Internet)

Des chercheurs en sécurité ont publié des détails techniques et un PoC pour une vulnérabilité critique corrigée (...)


22: How to draw SUSPENDERS

https://feeds.feedblitz.com/~/874417742/0/tanglepatterns~How-to-draw-SUSPENDERS.html

TanglePatterns (Zentangle)

Online instructions for drawing CZT® Jody Genovese's Zentangle® pattern: Suspenders. 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: How to start with Next.js'

https://lingarajtechhub.com/how-to-start-with-nextjs

Hashnode - javascript (Javascript)

To start with Next.js, you need to set up a development environment and create a simple Next.js project. Here's a guide to help you begin: Step 1: Install Node.js and npm First, make sure you have Node.js and npm (Node Package Manager) installed on y...


24: TWE TailwindCSS UX/UI Design Course

https://keepcodingblog.hashnode.dev/twe-tailwindcss-uxui-design-course

Hashnode - javascript (Javascript)

Introduction Welcome to the TW Elements course! This beginner-friendly, example-based course will guide you through the essential knowledge of our ecosystem. Here you will learn not only how to effectively use TW Elements, but also Tailwind CSS itse...


25: Sous le capot : Fonctionnement du modèle Sora d'OpenAI

https://www.factorialfunds.com/blog/under-the-hood-how-openai-s-sora-model-works

Humancoders ()

Explorant le modèle Sora d'OpenAI, cet article détaille sa capacité à créer des vidéos d'un réalisme saisissant. Basé sur des techniques avancées telles que les modèles de diffusion et les architectures de transformateurs, Sora représente une révolution dans la génération de contenu vidéo, exigeant une immense puissance de calcul pour son entraînement. L'analyse révèle également [...]


26: Best Electronic Signature Software of 2024

https://www.noupe.com/essentials/electronic-signature-software.html

Noupe (conception)

Thanks to advanced e-signature tools, there has been a shift away from traditional paper-based signatures. These tools and platforms streamline the signature collection process, from contracts to agreements, ensuring swift and secure transactions with digital solutions. Selecting the most suitable e-signature solution is important for ensuring smooth document signing experiences in business settin [...]


27: La Commission européenne ouvre cinq enquêtes sur Apple, Alphabet et Meta pour non-conformité au DMA

https://www.usine-digitale.fr/article/la-commission-europeenne-ouvre-cinq-enquetes-sur-apple-alphabet-et-meta-pour-non-conformite-au-dma.N2210431

L'usine-digitale (Informatique)

Dix-huit jours après l'entrée en application du Digital Markets Act (DMA), la Commission européenne ouvre cinq enquêtes contre Apple, Alphabet et Meta, les soupçonnant de ne pas respecter les règles antitrust de la nouvelle législation européenne. Ces procédures peuvent durer jusqu'à 12 mois.


28: iOS 18 Will Reportedly Bring Home Screen Customization

https://www.webpronews.com/ios-18-will-reportedly-bring-home-screen-customization/

WebProNews SEO (Développement)

WebProNews iOS 18 Will Reportedly Bring Home Screen Customization iOS users will reportedly bring a much-requested feature, giving users more control over their Home Screen layout. iOS 18 Will Reportedly Bring Home Screen Customization Matt Milano


29: 1% des utilisateurs sont responsables de 88% des fuites de données, d'après un rapport

https://www.usine-digitale.fr/article/1-des-utilisateurs-sont-responsables-de-88-des-fuites-de-donnees-d-apres-un-rapport.N2210409

L'usine-digitale (Informatique)

A la veille de l'ouverture du Forum InCyber (ex FIC) le 26 mars à Lille, L'Usine Digitale a décidé de se pencher sur les fuites de données, l'une des principales cybermenaces. 85% des entreprises y sont confrontées chaque année, d'après un rapport de Proofpoint qui établit un état des lieux. Les utilisateurs négligents sont cités comme étant la principale cause des fuites.


30 / 129

30: What is the project structure of Next.js'

https://lingarajtechhub.com/what-is-the-project-structure-of-nextjs

Hashnode - javascript (Javascript)

The typical Next.js application has a project structure that organizes files and folders in a way that makes development easier. This includes managing pages, components, styles, and other resources. Here's an overview of the usual project structure:...


31: Google, Meta and Apple under investigation for uncompetitive practices by EU

https://searchengineland.com/google-meta-apple-under-investigation-438724

Search engine land (Référencement)

The big tech companies could face large fines and may be required to sell off some of their business divisions.


32: LeBonCoin n'est plus si bon : une fuite expose vos données personnelles !

https://www.lebigdata.fr/leboncoin-fuite-des-donnees-personnelles

Le Big Data (dataviz)

Mauvaise nouvelle ! Une faille de sécurité sur LeBonCoin a causé la fuite des données personnelles des acheteurs. Récemment, LeBonCoin, … Cet article LeBonCoin n’est plus si bon : une fuite expose vos données personnelles ! a été publié sur LEBIGDATA.FR.


33: Leader Spotlight: Unlocking meaningful opportunities, with Saurabh Saraf

https://blog.logrocket.com/product-management/leader-spotlight-saurabh-saraf/

Log Rocket blog (Web 2)

Saurabh Saraf shares how organizations overlook meaningful opportunities by focusing on shiny new initiatives over incremental improvements. The post Leader Spotlight: Unlocking meaningful opportunities, with Saurabh Saraf appeared first on LogRocket Blog.


34: Le Quest 3 a une rétention plus élevée que les casques précédents. Voici pourquoi

https://www.realite-virtuelle.com/quest-3-retention-elevee/

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

Meta a constaté que les utilisateurs de leur dernier casque de réalité virtuelle (VR), le […] Cet article Le Quest 3 a une rétention plus élevée que les casques précédents. Voici pourquoi a été publié sur REALITE-VIRTUELLE.COM.


35: Data Structures - Stack

https://ketechy.com/data-structures-stack

Hashnode - python (python)

A stack is a linear data structure that follows the Last In, First Out (LIFO) principle. Think of it like a stack of cups in a cafeteria, where the last cup placed on top is the first to be taken off. Let's see how we can implement a stack in Python....


36: IA : les Français sont-ils capables d'identifier les deepfakes '

https://www.blogdumoderateur.com/etude-francais-capables-identifier-deepfakes/

Blog du Moderateur ()

Les Français se sentent-ils capables de déterminer si une vidéo est réelle ou générée par une IA ' Sont-ils en mesure d'identifier les deepfakes '


37: OpenAI plancherait sur un assistant vocal alimenté par l'IA

https://www.usine-digitale.fr/article/openai-plancherait-sur-un-assistant-vocal-alimente-par-l-ia.N2210420

L'usine-digitale (Informatique)

Un moteur vocal signé OpenAI. C'est en tout cas ce que laisse supposer le dépôt de la marque "Voice engine" par la start-up d'IA auprès de l'Office américain des brevets et des marques.


38: zoxide: A smarter cd command

https://mathdatasimplified.com/zoxide-a-smarter-cd-command/

Math Data Simplified (data)

To efficiently navigate to directories with lengthy paths using just a few keystrokes, use zoxide. It’s compatible with all major shells. Link to zoxide. Favorite …


39: Cybersécurité : Airbus rachète l'allemand Infodas

https://www.lemondeinformatique.fr/actualites/lire-cybersecurite-airbus-rachete-l-allemand-infodas-93324.html

Le monde informatique (Informatique / Internet)

Lot de consolation après l'échec des négociations sur le rachat de BDS d'Atos ou opportunité stratégique ' Une chose (...)


40 / 129

40: DMA : Pourquoi l'UE ouvre une enquête visant Google, Meta et Apple '

https://www.blogdumoderateur.com/dma-ue-enquete-google-meta-apple/

Blog du Moderateur ()

Les trois "contrôleurs d'accès" sont suspectés de ne pas respecter la loi sur les marchés numériques, récemment entrée en vigueur. Amazon fait l'objet d'une procédure parallèle.


41: Docker basics for beginners...

https://riteshkokam.hashnode.dev/docker-basics-for-beginners

Hashnode - javascript (Javascript)

Introduction If you search for Docker, you'll discover it's a software platform that employs OS-level virtualization to produce self-sufficient containers. Let me break it down in simple terms. Perhaps you've set up several Virtual Machines using Ora...


42: L'Etat renforce les liens entre la GenAI, le cloud et la recherche

https://www.lemondeinformatique.fr/actualites/lire-l-etat-renforce-les-liens-entre-la-genai-le-cloud-et-la-recherche-93326.html

Le monde informatique (Informatique / Internet)

Dans un contexte d'essor de l'IA, la création et le soutien d'un écosystème est essentiel. Des fournisseurs de cloud, (...)


43: Comment créer un thème CSS dynamique avec Symfony '

https://developpeur-freelance.io/theme-couleur-css-symfony/

Humancoders ()

Changer la couleur de l'interface se fait via du code CSS, il est possible de généré du code CSS de manière dynamique avec Symfony Commentaires L'article Comment créer un thème CSS dynamique avec Symfony ' a été posté dans la catégorie PHP de Human Coders News


44: Ce qu'il fallait retenir cette semaine : Google et son amende sur l'IA, la révolution IA de Nvidia et les dernières avancées en robotique

https://www.lebigdata.fr/ce-quil-fallait-retenir-cette-semaine-google-et-son-amende-sur-lia-la-revolution-ia-de-nvidia-et-les-dernieres-avancees-en-robotique

Le Big Data (dataviz)

Plongez dans l'essentiel de l'actualité data avec notre section « Ce qu'il fallait retenir cette semaine ». Ici, nous distillons pour vous … Cet article Ce qu'il fallait retenir cette semaine : Google et son amende sur l’IA, la révolution IA de Nvidia et les dernières avancées en robotique a été publié sur LEBIGDATA.FR.


45: MidJourney annonce une IA pour créer des mondes entiers en 3D : tout savoir

https://www.lebigdata.fr/midjourney-ia-generative-mondes-3d

Le Big Data (dataviz)

MidJourney vient d'annoncer son prochain projet : une IA capable de créer tout un monde virtuel en 3D à partir … Cet article MidJourney annonce une IA pour créer des mondes entiers en 3D : tout savoir a été publié sur LEBIGDATA.FR.


46: Access Token & Refresh Token

https://hammads.hashnode.dev/access-token-refresh-token

Hashnode - javascript (Javascript)

Access Token Think of an access token like a key card that lets you enter a restricted area (like a gym or office). It's a small piece of information that a server gives you after you've logged in successfully. You show this key card (access token...


47: It's .sort() of a JavaScript Thing

https://charliej.hashnode.dev/its-sort-of-a-javascript-thing

Hashnode - javascript (Javascript)

Introduction: The .sort() method is a fundamental tool in JavaScript for sorting elements within an array. Whether you're organizing data, arranging user inputs, or optimizing search algorithms, understanding how to effectively utilize .sort() is ess...


48: Des améliorations de sécurité pour JDK 22

https://www.lemondeinformatique.fr/actualites/lire-des-ameliorations-de-securite-pour-jdk-22-93325.html

Le monde informatique (Informatique / Internet)

Publiée récemment par Oracle, la dernière version du kit de développement Java (JDK) 22 de l'édition standard (...)


49: Object Oriented Programming the practical implementation

https://bhujbalpiyush.dev/object-oriented-programming-the-practical-implementation

Hashnode - python (python)

Dear programmers welcome to a new article on the Object Oriented Programming series. Now, as we learn the concept of OOPs the main things that are in the spotlight are Classes and Objects. Now let us take a deep dive into what classes and objects mea...


50 / 129

50: Integrating Next.js and SignalR to build real-time web apps

https://blog.logrocket.com/integrating-next-js-signalr/

Log Rocket blog (Web 2)

In this tutorial, you'll learn how to integrate Next.js and SignalR to build an enhanced real-time web application. The post Integrating Next.js and SignalR to build real-time web apps appeared first on LogRocket Blog.


51: Connect Streamlit to Xata

https://aadarshkannan.hashnode.dev/connect-streamlit-to-xata

Hashnode - python (python)

Introduction ' Xata is a serverless data platform built on PostgreSQL. It offers additional features like full-text search, file attachments, and built-in integrations, simplifying application development and management. This guide explains how to s...


52: Atos : David Layani sort du bois

https://www.lemondeinformatique.fr/actualites/lire-atos-david-layani-sort-du-bois-93323.html

Le monde informatique (Informatique / Internet)

Sans le cash d'Airbus, le futur d'Atos est bien difficile à prédire. Pour autant, David Layani, patron de OnePoint a des ambitions (...)


53: Redict, un fork open source indépendant et non commercial de Redis, suite au passage de Redis à un modèle de licence non libre, vu comme une "trahison de la communauté du logiciel libre"

http://sgbd.developpez.com/actu/355598/Redict-un-fork-open-source-independant-et-non-commercial-de-Redis-suite-au-passage-de-Redis-a-un-modele-de-licence-non-libre-vu-comme-une-quot-trahison-de-la-communaute-du-logiciel-libre-quot/

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

Redict, un fork open source indépendant et non commercial de Redis, suite au passage de Redis à un modèle de licence non libre, vu comme une "trahison de la communauté du logiciel libre"Le passage de Redis® à un modèle de licence non libre a causé plusieurs déceptions. Il s'agit d'une trahison de la communauté du logiciel libre, mais qui n'est peut-être pas tout à fait surpre [...]


54: Launching Your Python Programming Odyssey

https://keethublogs54.hashnode.dev/launching-your-python-programming-odyssey

Hashnode - python (python)

The dynamic and diverse world of coding shines brightly with Python as its beacon of accessibility and simplicity, especially advantageous for neophytes in the domain of programming. Acclaimed for its gentle ascent on the learning curve, Python lays ...


55: Split & Conquer: Mastering Document Splitting in Langchain

https://rutam.hashnode.dev/split-conquer-mastering-document-splitting-in-langchain

Hashnode - python (python)

Have you ever wondered how Large Language Models can understand and process large amounts of information' The secret lies in an important step: Document Splitting. It's where a massive document is seamlessly split into small meaningful chunks, ready ...


56: Understanding BPMN diagrams for process management

https://blog.logrocket.com/product-management/bpmn-diagrams/

Log Rocket blog (Web 2)

A BPMN diagram is a visual representation of the steps, activities, and flows of processes within your organization. The post Understanding BPMN diagrams for process management appeared first on LogRocket Blog.


57: 3 Essential Design Trends, April 2024

https://www.webdesignerdepot.com/design-trends-april-2024/

Webdesigner depot (Design)

Ready to jump into some amazing new design ideas for Spring' Our roundup has everything from UX to color trends covered.


58: Quelle est la meilleure façon de monter et de descendre d'un train '

https://www.youtube.com/watch?v=gVnPwtMi208

Humancoders ()

Quelle est la meilleure façon de monter et de descendre d'un train ' Combien de temps sera perdu si une seule personne perturbe l'échange ' Pour répondre à ces questions, j'ai conduit une série d'expériences sociales sur le quai de la Gare de Lyon à Paris. Commentaires L'article Quelle est la meilleure façon de monter et de descendre d'un train ' a été posté dans la catégorie Science [...]


59: Setting And Persisting Color Scheme Preferences With CSS And A 'Touch' Of JavaScript

https://smashingmagazine.com/2024/03/setting-persisting-color-scheme-preferences-css-javascript/

Smashing magazine (CSS / Web 2)

There are many ways to approach a 'Dark Mode' feature that respects a user's system color scheme preferences and allows for per-site customization. Henry Bley-Vroman walks through a new possibility that leans into cutting-edge CSS, with minimal JavaScript to support persisting the user's color scheme preference across pages.


60 / 129

60: How to benchmark PPC competitors: The definitive guide

https://searchengineland.com/benchmark-ppc-competitors-guide-438641

Search engine land (Référencement)

Benchmark PPC competitors across ad networks like Google and Meta and identify top channels, creatives and landing page experiences.


61: Rollup vs Esbuild en Ruby-on-Rails

https://saaslit.com/blog/ruby/rollup-vs-esbuild-for-rails

Humancoders ()

Rollup et Esbuild sont 2 manières de gérer les fichiers JS avec Rails, mais de manière assez transparente finalement. Commentaires L'article Rollup vs Esbuild en Ruby-on-Rails a été posté dans la catégorie Ruby de Human Coders News


62: Dual personality of being JS n Python Dev

https://shijoshaji.hashnode.dev/dual-personality-of-being-js-n-python-dev

Hashnode - javascript (Javascript)

In the dynamic field of software engineering, continuous learning and skill enhancement are pivotal for career advancement, especially for those aspiring to secure a position as an experienced software engineer. With the ever-evolving technological l...


63: Hoisting with let & const vs var in JS and TDZ'

https://sneha711.hashnode.dev/hoisting-with-let-const-vs-var-in-js-and-tdz

Hashnode - javascript (Javascript)

Greetings, Glimpse! Today, let's explore the complex world of the Temporal Dead Zone (TDZ) as we begin to delve into the depths of raising JavaScript. Get ready for some compelling examples to illustrate these concepts. Hoisting: A Deeper Dive To rea...


64: Unleashing the Potential of Python: A Journey to Mastery in a Versatile Programming Language

https://keethublogs54.hashnode.dev/unleashing-the-potential-of-python-a-journey-to-mastery-in-a-versatile-programming-language

Hashnode - python (python)

Python paves the way for progress in the programming domain with its simple, readable, and adaptable nature. Introduced by Guido van Rossum in 1991, Python has swiftly ascended as a favored programming language across multiple disciplines. Its applic...


65: Understanding null and undefined

https://blog.jobins.jp/understanding-null-and-undefined

Hashnode - javascript (Javascript)

Null and undefined are both are primitive data types in JavaScript. Both provides the similar feelings when observed at theoretical level. Sometime times the consequence are more debugging and clarification for the usage of these two values. Null The...


66: 2 Ways to use SQL in Google Colab

https://subhbits.com/2-ways-to-use-sql-in-google-colab

Hashnode - python (python)

Google Colab is a valuable tool for data scientists and machine learning experts. It is a free, collaborative, and cloud-based environment that enables users to write and execute Python code. However, some users are unaware that they can use SQL, the...


67: Emad Mostaque quitte ses fonctions de CEO chez Stability AI

https://www.usine-digitale.fr/editorial/emad-mostaque-quitte-ses-fonctions-de-ceo-chez-stability-ai.N2210413

L'usine-digitale (Informatique)

Bouleversement chez Stability AI. La start-up britannique voit son CEO Emad Mostaque démissionner. Ce dernier indique vouloir se concentrer sur le développement d'une IA décentralisée. En attendant de trouver un remplaçant, le COO et le CTO de la start-up sont nommés co-CEO intérimaires.


68: Pour un move to cloud ... sans casse :)

https://blog.octo.com/pour-un-move-to-cloud-...-sans-casse-)-1

Octo (Internet)

Un projet de migration vers le Cloud ne se résume pas uniquement à une évolution technologique mais implique également des changements humains, culturels et organisationnels. Pour OCTO, une transformation Cloud s'envisage dans une approche holistique des équipes, du mindset et des pratiques, et ce au niveau de la DSI et du Métier.


69: Propriété intellectuelle : la messagerie Telegram temporairement suspendue en Espagne

https://www.usine-digitale.fr/article/propriete-intellectuelle-la-messagerie-telegram-temporairement-suspendue-en-espagne.N2210417

L'usine-digitale (Informatique)

La haute cour espagnole a décidé d'interdire la messagerie Telegram sur son territoire, à partir de ce lundi. Une décision qui fait suite à une plainte déposée par des groupes de médias et télécoms, qui reprochaient à certains comptes de diffuser leurs contenus protégés par le droit d'auteur.


70 / 129

70: Overcoming Python's Power Operator Pitfall

https://karabomolefi.hashnode.dev/overcoming-pythons-power-operator-pitfall

Hashnode - python (python)

Introduction I needed to bring to life Einstein's famous equation: $$E = mc^2$$as a program in Python. In my initial attempts at tackling the task, I encountered a pitfall. Although everything seemed logical from a mathematical notation, it was not c...


71: Lancez Apple Vision Pro sur SteamVR avec ALVR dès aujourd'hui !

https://www.realite-virtuelle.com/alvr-vision-pro-disponible/

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

Excitante nouvelle pour les passionnés de réalité virtuelle (VR) ! ALVR est enfin là pour […] Cet article Lancez Apple Vision Pro sur SteamVR avec ALVR dès aujourd'hui ! a été publié sur REALITE-VIRTUELLE.COM.


72: Il utilise ChatGPT comme coach fitness, ça tourne (très) mal

https://www.lebigdata.fr/chatgpt-comme-coach-fitness

Le Big Data (dataviz)

ChatGPT d'OpenAI, en tant que coach sportif virtuel, offre ses conseils avec assurance. Toutefois, est-il sûr de les suivre aveuglément … Cet article Il utilise ChatGPT comme coach fitness, ça tourne (très) mal a été publié sur LEBIGDATA.FR.


73: 7 clés pour rendre les opérations IT plus efficaces

https://www.lemondeinformatique.fr/actualites/lire-7-cles-pour-rendre-les-operations-it-plus-efficaces-93315.html

Le monde informatique (Informatique / Internet)

Aucun DSI ne souhaite diriger une organisation informatique inefficace. Pourtant, par manque d'attention ou en s'en tenant à des pratiques dépassées, (...)


74: Microsoft publie en urgence un patch pour les crash de Windows Server

https://www.lemondeinformatique.fr/actualites/lire-microsoft-publie-en-urgence-un-patch-pour-les-crash-de-windows-server-93322.html

Le monde informatique (Informatique / Internet)

De nombreux administrateurs système ont averti sur Reddit la semaine dernière que depuis le dernier patch tuesday des serveurs (...)


75: Datacenter et réseaux fixes-mobiles plus énergivores et polluants en 2022

https://www.lemondeinformatique.fr/actualites/lire-datacenter-et-reseaux-fixes-mobiles-plus-energivores-et-polluants-en-2022-93317.html

Le monde informatique (Informatique / Internet)

Pour la 3e année, l'autorité de régulation des communications électroniques, des postes et de la distribution de la presse (...)


76: Good or Bad for Flutter App Development'

https://linkitsoft.com//good-or-bad-for-flutter-app-development

Hashnode - Flutter (Flutter)

Cross-platform mobile application development has become more and more common in recent years, as the trend has shifted. In its capacity as an app development platform, it has evolved to meet the demands of progressive companies. Android and iOS are ...


77: Tailscale : la sécurité de connexion à travers les VPN

https://www.lebigdata.fr/vpn-tailscale

Le Big Data (dataviz)

Un VPN sans configuration pour faciliter votre navigation sur le web. Telle est la fonctionnalité de base de Tailscale. Et … Cet article Tailscale : la sécurité de connexion à travers les VPN a été publié sur LEBIGDATA.FR.


78: Comment se protéger face aux fuites de données : les conseils de la CNIL

https://www.blogdumoderateur.com/protection-fuite-donnees-conseils-cnil/

Blog du Moderateur ()

Après les nombreuses violations de données personnelles intervenues en France ces dernières semaines, la CNIL a tenu à rappeler les réflexes pour s'en prémunir.


79: Tìm Hi'u T'm Quan Tr'ng C'a Ti'ng Anh Trong Cu'c S'ng Hi'n ''i Hi'n Nay

https://graphicalerts.com/tam-quan-trong-cua-tieng-anh/

Graphic Alerts (Internet)

Ch'c ch'n b'n 'ã nghe câu “H'c Ti'ng Anh s' mang l'i r't nhi'u l'i ích” '''c nhi'u ng''i nh'c ''n ' nhi'u n'i khác nhau. Tuy nhiên, li'u t'm quan tr'ng c'a ti'ng Anh th'c s' nh' th' nào' Qua bài vi't d''i 'ây, Graphicalerts s' gi'i 'áp cho b'n vì sao ti'ng Anh l'i […] The post Tìm Hi'u T'm Quan Tr'ng C'a Ti'ng Anh Trong Cu'c S'ng Hi'n ''i Hi'n Nay appeared first on Gr [...]


80 / 129

80: Alpine.js: A Modern Lightweight JavaScript Framework'''A jQuery Replacement '

https://shyam-sundar.com.np/alpinejs-a-modern-lightweight-javascript-framework-a-jquery-replacement

Hashnode - javascript (Javascript)

Photo by Mohammad Rahmani on Unsplash I've been an active user of Alpine.js since 2023, and let me tell you, it's been a game-changer for me. One of the primary reasons I've grown to love Alpine.js is its remarkable similarity to Vue.js (v2) in terms...


81: Comment Deep Search de Bing utilise GPT-4 pour deviner exactement ce que vous cherchez [TEST]

https://www.abondance.com/20240325-449713-deep-search.html

Abondance (Référencement)

Deep Search, le croisement entre l'index de Bing et GPT 4, est officiellement lancé pour tous les utilisateurs. Une expérience qui offre des résultats bien plus précis en fonction de l'intention de recherche des utilisateurs. On teste ça pour vous ! Ce qu'il faut retenir :  Lancement pour tous de Deep Search Deep Search est […] L'article "Comment Deep Search de Bing utilise GPT-4 pour [...]


82: 5 applications mobiles pour créer des images par IA

https://www.blogdumoderateur.com/applications-mobile-creer-images-ia/

Blog du Moderateur ()

De plus en plus, les outils permettant de générer des images grâce à l'intelligence artificielle se déclinent en applications mobiles aux interfaces plus intuitives.


83: Blockchain, preuve et eIDAS V.2

https://www.usine-digitale.fr/article/blockchain-preuve-et-eidas-v-2.N2210404

L'usine-digitale (Informatique)

Anticipée comme la prochaine rupture technologique, la Blockchain (BC) ne convainc pas totalement sur le plan probatoire et ce, malgré des qualités avérées : transparence du code source, confidentialité, intégrité des données. L'avènement prochain du projet de Règlement eIDAS 2 pourrait influencer cette dynamique. Maître Eric A. CAPRIOLI, avocat à la Cour de Paris, fondateur du cabine [...]


84: SEM, SEA, SMO, SEO : les piliers du référencement à connaître

https://www.blogdumoderateur.com/sem-sea-smo-seo-piliers-referencement/

Blog du Moderateur ()

Plusieurs méthodes permettent de se référencer sur les moteurs de recherche, les réseaux sociaux et les plateformes d'hébergement vidéo.


85: Citrix pousse à ses partenaires le paiement de licences à l'année

https://www.lemondeinformatique.fr/actualites/lire-citrix-pousse-a-ses-partenaires-le-paiement-de-licences-a-l-annee-93320.html

Le monde informatique (Informatique / Internet)

Citrix s'apprêterait à faire évoluer le programme qu'il dédié aux fournisseurs de ses solutions dans le cloud (Citrix (...)


86: Citrix pousse ses partenaires au paiement de licences à l'année

https://www.lemondeinformatique.fr/actualites/lire-citrix-pousse-ses-partenaires-au-paiement-de-licences-a-l-annee-93320.html

Le monde informatique (Informatique / Internet)

Citrix s'apprêterait à faire évoluer le programme qu'il dédié aux fournisseurs de ses solutions dans le cloud (Citrix (...)


87: Boehringer développe des médicaments grâce à l'IA

https://www.lemondeinformatique.fr/actualites/lire-boehringer-developpe-des-medicaments-grace-a-l-ia-93316.html

Le monde informatique (Informatique / Internet)

Afin d'accélérer le développement de nouveaux médicaments, l'entreprise familiale Boehringer Ingelheim, fondée en 1885 (...)


88: Création de contenu : conseils et bonnes pratiques pour bien utiliser ChatGPT

https://www.blogdumoderateur.com/creation-contenu-conseils-bonnes-pratiques-bien-utiliser-chatgpt/

Blog du Moderateur ()

Découvrez des cas concrets d'usage de ChatGPT, le générateur de texte par intelligence artificielle, pour produire efficacement du contenu pour le web et les réseaux sociaux.


89: Comment enlever la mention « Vu » sur Messenger

https://www.blogdumoderateur.com/messenger-comment-enlever-mention-vu/

Blog du Moderateur ()

Sur Messenger, il est possible de désactiver la confirmation de lecture. Découvrez comment faire.


90 / 129

90: 8 Reasons Why Timesheets Are Essential to Your Organization

https://www.noupe.com/business-online/why-timesheets-are-essential-to-your-organization.html

Noupe (conception)

Do you struggle to track employees’ work hours effectively' Do you often face inefficiencies and errors associated with billing and payroll processing' Do you lack insight into employee productivity because of a lack of proper visibility into employees’ time' Then, it’s time to shift to timesheets to capture employee work hours and associated activities.  This... [...]


91: Exploring Python Data Types, Iteration Methods and Comprehensions

https://vincentrevard.hashnode.dev/exploring-python-data-types-iteration-methods-and-comprehensions

Hashnode - python (python)

Introduction: In Python programming, mastering data types and iteration methods is essential for effective coding and problem-solving. This blog post serves as a comprehensive guide to understanding Python's various data types and exploring the diffe...


92: Conway's Game of Life with a third dimension

https://flowingdata.com/2024/03/25/conways-game-of-life-with-a-third-dimension/

Flowing data (dataviz)

Alec Singh added another dimension to Conway’s Game of Life for a pretty,…Tags: Alec Singh, Game of Life


93: Des vulnérabilités pour plusieurs ICS corrigées

https://www.lemondeinformatique.fr/actualites/lire-des-vulnerabilites-pour-plusieurs-ics-corrigees-93321.html

Le monde informatique (Informatique / Internet)

La CISA (Cybersecurity and Infrastructure Security Agency) a publié 15 avis concernant des vulnérabilités graves dans des produits (...)


94: L'UE doit DOUBLER son budget cybersécurité : Est-ce vraiment possible '

https://www.lebigdata.fr/budget-cybersecurite-eu

Le Big Data (dataviz)

Un peu plus de 200 millions d'euros de budget cybersécurité pour l'EU, ce ne serait pas suffisant. Ce haut fonctionnaire … Cet article L'UE doit DOUBLER son budget cybersécurité : Est-ce vraiment possible ' a été publié sur LEBIGDATA.FR.


95: Day 2 of 100DaysOfCode

https://ashcode98.com/day-2-of-100daysofcode

Hashnode - javascript (Javascript)

What I learned' I learned the following topics: audio and video tags in HTML new keyword behind the scenes in javascript Prototype and Inheritance in JavaScript What I develop/solved' Created a simple Media player using HTML which displays Audi...


96: La révolution Fintech : comment la technologie transforme les services financiers

https://www.lebigdata.fr/revolution-fintech-technologie-transforme-services-financiers

Le Big Data (dataviz)

La transformation numérique a conquis notre quotidien, allant jusqu'à dématérialiser nos échanges monétaires et à les convertir sous forme de … Cet article La révolution Fintech : comment la technologie transforme les services financiers a été publié sur LEBIGDATA.FR.


97: Le lyonnais Visiativ s'adosse à l'industriel SNEF pour accélérer sa croissance

https://www.usine-digitale.fr/article/le-lyonnais-visiativ-s-adosse-a-l-industriel-snef-pour-accelerer-sa-croissance.N2210401

L'usine-digitale (Informatique)

Visiativ, une ESN lyonnaise de 1400 personnes, vient de finaliser son rapprochement avec l'industriel SNEF. Intégrateur des produits de Dassault Systèmes, éditeur et consultant, Visiativ poursuit ses acquisitions.


98: Day-1 of learning Express JS

https://biswa-dev.hashnode.dev/day-1-of-learning-express-js

Hashnode - javascript (Javascript)

Today I've learned about what is backend, node, how to setup a backend server using express and also learned about route params. Let us begin with what Backend is: The backend of a web application refers to the server-side part of the application tha...


99: Le défi de distinguer le vrai du faux : une hausse alarmante de l'hameçonnage

https://www.lebigdata.fr/defi-distinguer-le-vrai-du-faux-hausse-alarmante-hameconnage

Le Big Data (dataviz)

Alors que les campagnes de prévention se font de plus en plus nombreuses, plus d'un français sur 10 clique toujours … Cet article Le défi de distinguer le vrai du faux : une hausse alarmante de l’hameçonnage a été publié sur LEBIGDATA.FR.


100 / 129

100: Topic: 9 Understanding Generic Class in Android

https://mayursinhdevblog.hashnode.dev/topic-9-understanding-generic-class-in-android

Hashnode - Kotlin (Mobiles)

Hello devs, In today's topic we can talk about generic classes. In this blog, we can explore what they are, why they're important, and how you can effectively use them in your Android development journey. Generic Classes Generic classes in Kotlin all...


101: Cette carte révèle des secrets sur votre maison ' Vous devez vérifier!

https://www.lebigdata.fr/carte-revele-des-secrets-sur-votre-maison

Le Big Data (dataviz)

Avez-vous déjà imaginé à quoi ressemblait votre ville ou votre maison il y a des millions d'années ' Grâce aux … Cet article Cette carte révèle des secrets sur votre maison – Vous devez vérifier! a été publié sur LEBIGDATA.FR.


102: JavaScript Design Patterns - Structural - Bridge

https://nhannguyen.hashnode.dev/javascript-design-patterns-structural-bridge

Hashnode - javascript (Javascript)

The bridge pattern allows one interface in our class to build different implementations depending on what instance we are receiving and what instance we need to return. In the example below, we create a bridge between types of Soldiers and types of W...


103: '''' Unveiling the Power of JavaScript Functions: Your Code's Superheroes

https://bittonic.hashnode.dev/unveiling-the-power-of-javascript-functions-your-codes-superheroes

Hashnode - javascript (Javascript)

Let's dive into ' the wonderful world of JavaScript functions ' those handy chunks of code that make your life easier. Think of them as your code's superheroes, ready to save the day whenever you call upon them! ' Function 101: The Building Block S...


104: Avec ses NIMs, Nvidia veut donner à chaque entreprise son propre modèle d'IA

https://www.usine-digitale.fr/article/avec-ses-nims-nvidia-veut-donner-a-chaque-entreprise-son-propre-modele-d-ia.N2210398

L'usine-digitale (Informatique)

Oubliez le cloud, Nvidia compte doter chaque entreprise de modèles d'IA customisés. Comment ' Par le biais de microservices d'inférence, baptisés NIMs. Une façon de tirer parti du parc existant de data centers' en y ajoutant des GPU.


105: Toc toc' Ces hackers ont trouvé comment ouvrir 3 millions de chambres d'hôtel

https://www.lebigdata.fr/faille-serrures-saflok

Le Big Data (dataviz)

Heureusement, ce sont des hackers éthiques qui ont trouvé cette faille des serrures Saflok. Sinon, des centaines d'hôtels auraient eu … Cet article Toc toc… Ces hackers ont trouvé comment ouvrir 3 millions de chambres d’hôtel a été publié sur LEBIGDATA.FR.


106: How to Code an iOS Game ' Best Learning Tutorials

https://gamedevacademy.org/how-to-code-an-ios-game-best-learning-tutorials/

Game dev academy (Jeux)

Have you always wanted to create your own iOS game but didn’t know where to start' There’s no better time than now to dive into iOS game development. With the ... Read more


107: Shared Workers for WebSockets

https://brijesh.me/shared-workers-for-websockets

Hashnode - javascript (Javascript)

Hey there, web dev enthusiasts! Today, we're diving into the world of keeping your web pages smooth and responsive ' even when things get a little heavy behind the scenes. We'll be exploring a powerful tool called Shared Workers, and how they can tea...


108: IA générative : La solution miracle' ou la prochaine cybercatastrophe '

https://www.lebigdata.fr/ia-generative-la-solution-miracle-ou-la-prochaine-cybercatastrophe

Le Big Data (dataviz)

D'après les prévisions du cabinet d'études Gartner, l'intelligence artificielle générative devrait permettre de compenser le déficit de compétences en cybersécurité … Cet article IA générative : La solution miracle' ou la prochaine cybercatastrophe ' a été publié sur LEBIGDATA.FR.


109: ' Maximizing Weekends and Holiday Breaks: Learning Redux Concepts of React! '

https://bhavikprajapati.hashnode.dev/maximizing-weekends-and-holiday-breaks-learning-redux-concepts-of-react

Hashnode - javascript (Javascript)

Hey LinkedIn Fam, As we dive into another weekend and perhaps a holiday break, I wanted to share with you how I'm making the most of this time at home. '' This weekend, I'm focusing on deepening my understanding of Redux concepts in React. Redux pl...


110 / 129

110: IELTS Là Gì' C'p Nh't Chi Phí Thi IELTS T'i Vi't Nam M'i Nh't 2024

https://graphicalerts.com/ielts-la-gi/

Graphic Alerts (Internet)

B'n 'ang tìm hi'u v' IELTS và mu'n bi't t'i sao nó l'i quan tr'ng ''i v'i hành trình h'c t'p và phát tri'n s' nghi'p c'a b'n' 'IELTS là gì' không ch' là m't câu h'i, mà còn là kh'i ''u cho nhi'u c' h'i m'i. Trong bài vi't d''i 'ây, Graphic Alerts xin […] The post IELTS Là Gì' C'p Nh't Chi Phí Thi IELTS T'i Vi't Nam M'i Nh't 2024 appeared first on Graphicalerts.


111: Best Game Programming Certifications This Year

https://gamedevacademy.org/best-game-programming-certifications/

Game dev academy (Jeux)

Game dev certifications are not superfluous – and can open up a great way to get started making your own games. Game development is an exciting field that is growing ... Read more


112: Example of Android Scaffold Structure in Android Compose API

https://androidauthority.dev/example-of-android-scaffold-structure-in-android-compose-api

Hashnode - Kotlin (Mobiles)

Scaffolding originates from construction, referring to a temporary framework of metal poles and wooden planks that supports workers and materials at height. It's crucial for safely constructing, repairing, and maintaining buildings, bridges, and othe...


113: Understanding Bayesian Deep Learning: Probabilistic Models and Uncertainty Estimation

https://pinakdatta.hashnode.dev/understanding-bayesian-deep-learning-probabilistic-models-and-uncertainty-estimation

Hashnode - python (python)

Overview: Deep learning has transformed various fields by enabling machines to learn complex patterns from data. However, traditional deep learning models cannot often quantify uncertainty in their predictions, which is crucial for making reliable de...


114: CheckBox in Godot ' Complete Guide

https://gamedevacademy.org/checkbox-in-godot-complete-guide-2/

Game dev academy (Jeux)

In the world of game development, user interaction is key. One crucial tool in our arsenal to facilitate this interaction is the CheckBox class in Godot 4. This seemingly simple ... Read more


115: CharacterBody3D in Godot ' Complete Guide

https://gamedevacademy.org/characterbody3d-in-godot-complete-guide-2/

Game dev academy (Jeux)

Embarking on a journey to create a 3D game might seem daunting at first, but with the right tools and understanding, it can be an exciting adventure. One of the ... Read more


116: CharacterBody2D in Godot ' Complete Guide

https://gamedevacademy.org/characterbody2d-in-godot-complete-guide-2/

Game dev academy (Jeux)

Game development is an exciting journey, and one of the key aspects of any game is character movement. Whether you’re creating a simple platformer or an intricate RPG, the way ... Read more


117: CenterContainer in Godot ' Complete Guide

https://gamedevacademy.org/centercontainer-in-godot-complete-guide-2/

Game dev academy (Jeux)

Welcome to the fascinating world of Godot 4, a powerful open-source game engine, and its class CenterContainer. If you’re just starting your game development journey or are an experienced coder ... Read more


118: CanvasTexture in Godot ' Complete Guide

https://gamedevacademy.org/canvastexture-in-godot-complete-guide-2/

Game dev academy (Jeux)

Are you interested in creating immersive 2D games with rich textures and lighting effects' If so, you will find the CanvasTexture class in Godot 4 highly useful. This article will ... Read more


119: CanvasModulate in Godot ' Complete Guide

https://gamedevacademy.org/canvasmodulate-in-godot-complete-guide-2/

Game dev academy (Jeux)

Welcome to this tutorial on the CanvasModulate class in Godot 4.2! If you’ve ever wanted to add a unique visual flair to your game, then understanding how to use this ... Read more


120 / 129

121: CanvasGroup in Godot ' Complete Guide

https://gamedevacademy.org/canvasgroup-in-godot-complete-guide-2/

Game dev academy (Jeux)

Welcome to our exploration of the CanvasGroup class in the Godot engine! If you’re a budding game developer or a seasoned pro looking to expand your knowledge, this class is ... Read more


122: Camera3D in Godot ' Complete Guide

https://gamedevacademy.org/camera3d-in-godot-complete-guide-2/

Game dev academy (Jeux)

Welcome to our exploration of the Camera3D class in Godot 4! Throughout this article, we will delve into the purpose and functionality of this class, and why it is an ... Read more


123: Camera2D in Godot ' Complete Guide

https://gamedevacademy.org/camera2d-in-godot-complete-guide-2/

Game dev academy (Jeux)

Welcome to our guide on the Camera2D class in Godot! As game developers, we often need to create dynamic, scrollable scenes that follow a character or an object. This is ... Read more


124: AudioEffectPitchShift in Godot ' Complete Guide

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

Game dev academy (Jeux)

Welcome to our exploration of the AudioEffectPitchShift class in Godot 4! This powerful tool allows us to add a pitch-shifting audio effect to an audio bus, opening up a world ... Read more


125: Learning JavaScript: Day 3

https://adityarajhblog.hashnode.dev/learning-javascript-day-3

Hashnode - javascript (Javascript)

Short session Learned about where is javascript written in the html file Inline js is when you create a tag inside the html Using an external file is when you create a 'example.js' file and link script 'src' in the html A browser parses ...


126: Si l'IA générative est le futur du travail, quel est son présent '

https://fredcavazza.net/2024/03/25/si-lia-generative-est-le-futur-du-travail-quel-est-son-present/

Cavazza, Fred (Internet / Web 2)

Alors que la compétition s'intensifie entre les startups (OpenAI, Anthropic') et les géants numériques (Microsoft, Google, Meta'), l'adoption à grande échelle des modèles génératifs semble pour le moment compromise par la difficulté que les utilisateurs potentiels rencontrent à se projeter dans l'utilisation d'une interface conversationnelle et plus précisément dans la subtilité des p [...]




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