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

« Janvier 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


Lundi 23 Janvier 2023 (146)

1: Weekend Reading ' ' Ctrl-Salt-Delete

https://labnotes.org/weekend-reading-ctrl-salt-delete/

Lab notes (Développement)

This week we load up on SVG, pay back tech debt, fight name complexity, learn how to build ChatGPT, and go in search of SF/Mission super burrito.


2: how to use Node.js to build a high-performance real-time chat application, complete with code snippets to help illustrate the concepts.

https://clericcoder.hashnode.dev/how-to-use-nodejs-to-build-a-high-performance-real-time-chat-application-complete-with-code-snippets-to-help-illustrate-the-concepts

Hashnode - javascript (Javascript)

If you enjoy this topic, you will probably like my articles, tweets, and stuff. If you're wondering, check out my YouTube channel and don't forget to subscribe and follow since I'm offering programming and motivating tools and information to help you...


3: How to Become a Full Stack Designer in 2023

https://michaeljudelarocca.hashnode.dev/how-to-become-a-full-stack-designer-in-2023

Hashnode - javascript (Javascript)

There is more to web development than programming, and having UI/UX design skills can give YOU a competitive advantage. In this article, expert Gary Simon tells us how to become Full Stack Designers! Intro As a programmer, you are most likely fami...


4: An High-Level Overview of JavaScript

https://digitcrab.hashnode.dev/an-high-level-overview-of-javascript

Hashnode - javascript (Javascript)

JavaScript is a high-level, prototype-based Object-oriented, Multi-paradigm, Interpreted or Just-in-time Compiled, Dynamic, single-threaded, Garbage-collected programming language with first-class functions and a Non-blocking event loop conc...


5: High-Level Overview of JavaScript

https://digitcrab.hashnode.dev/high-level-overview-of-javascript

Hashnode - javascript (Javascript)

JavaScript is a high-level, prototype-based Object-oriented, Multi-paradigm, Interpreted or Just-in-time Compiled, Dynamic, single-threaded, Garbage-collected programming language with first-class functions and a Non-blocking event loop conc...


6: How To Add Elements to an Array in Python

https://www.digitalocean.com/community/tutorials/python-add-to-array

Digital Ocean Tutorials (Internet)

Introduction Python doesn't have a built-in array data type, however, there are modules you can use to work with arrays. This article describes how to add to an array using the array and the NumPy modules. The array module is useful when you need to create an array of integers and floating-point numbers. The NumPy module is useful when you need to do mathematical operations on an array. In many c [...]


7: Webinar: Think spiderwebs, not funnels, for remarkable SEO results by Cynthia Ramsaran

https://searchengineland.com/webinar-think-spiderwebs-not-funnels-for-remarkable-seo-results-392059

Search engine land (Référencement)

Make the most out of your organic content strategy to get better traffic outcomes. The post Webinar: Think spiderwebs, not funnels, for remarkable SEO results appeared first on Search Engine Land.


8: An Introduction to Javascript and some history of javascript [S-1,B-1]

https://mohammedrizwan.hashnode.dev/an-introduction-to-javascript-and-some-history-of-javascript-s-1b-1

Hashnode - javascript (Javascript)

Let's see what is so special about javascript, what we can achieve from it . What is Javascript' JavaScript was initially created for "web pages to make alive " means it should interact on some events and some user's action because HTML and CSS are j...


9: Classes in TypeScript

https://blog.wajeshubham.in/classes-in-typescript

Hashnode - javascript (Javascript)

Looking back to our last article, we covered Functions in TypeScript which gave us an idea about how Functions work, are structured and are implemented in TypeScript. In this article, we will discuss the syntax of creating classes, the different feat...


10 / 146

10: 100DaysOfCode

https://galadima3.hashnode.dev/classico

Hashnode - Flutter (Flutter)

Day 19 [20-01-2023] I completed Chapter 7 of DA [Nullability]. This explained a lot about null & null safety and how to work with sound null safety Day 20 [21-01-2023] Refactored and debugged an app. An educative experience Day 21 [23-01-2023] I comp...


11: Charted: The Dipping Cost of Shipping

https://www.visualcapitalist.com/dipping-cost-of-shipping/

Visual Capitalist (dataviz)

After a dramatic spike during the pandemic, shipping costs have now fallen back to Earth. What does that mean for shippers and the economy' The post Charted: The Dipping Cost of Shipping appeared first on Visual Capitalist.


12: How To Install Node.js on Ubuntu 20.04

https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-20-04

Digital Ocean Tutorials (Internet)

Introduction Node.js is a JavaScript runtime for server-side programming. It allows developers to create scalable backend functionality using JavaScript, a language many are already familiar with from browser-based web development. In this guide, we will show you three different ways of getting Node.js installed on an Ubuntu 20.04 server: using apt to install the nodejs package from Ubuntu's defa [...]


13: Uniform Resource Identifier (URI)

https://mojtabamaleki.hashnode.dev/uniform-resource-identifier-uri

Hashnode - javascript (Javascript)

Welcome to the geekiest corner of the web! If you're here, you're probably familiar with Uniform Resource Identifier (URI) - and if you're not, don't worry! You'll be an expert by the end of this blog. But first, let's lighten up the mood with some U...


14: How To Install Linux, Apache, MariaDB, PHP (LAMP) stack on Debian 10

https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mariadb-php-lamp-stack-on-debian-10

Digital Ocean Tutorials (Internet)

Introduction A LAMP stack is a group of open-source software typically installed together to enable a server to host dynamic websites and web apps. This term is an acronym that represents the Linux operating system, with the Apache web server. The site data is stored in a MariaDB database, and dynamic content is processed by PHP. Although this software stack typically includes MySQL as the databas [...]


15: SSR, SWR & Hybrid with Nuxt 3

https://guillaumeduhan.hashnode.dev/ssr-swr-hybrid-with-nuxt-3

Hashnode - javascript (Javascript)

https://www.youtube.com/watch'v=TmgIylXsLuE Nuxt.js version 3 introduces three main rendering modes: Server-Side Rendering (SSR): In this mode, Nuxt generates the HTML, CSS, and JavaScript on the fly by rendering the Vue.js application on the serv...


16: Mastering the useRef Hook

https://divijsehgal.hashnode.dev/mastering-the-useref-hook

Hashnode - javascript (Javascript)

One of the most powerful hooks in the React ecosystem is the useRef hook. This hook allows you to create a reference to a DOM element or a component instance, which can be used to access and manipulate the element or component in various ways. Unders...


17: Using PyTest in a non-root file structure

https://blog.mivancic.com/using-pytest-in-a-non-root-file-structure

Hashnode - python (python)

PyTest is a Python framework that allows for the creation of elegant, easy-to-read and grok unit tests using normal Python language. PyTest is a pretty intelligent framework that can seek out files containing tests (simply make sure the filename ends...


18: Day 10 of 100DaysOfCode

https://tanishastechhaven.com/day-10-of-100daysofcode

Hashnode - javascript (Javascript)

Today I Created a dice roll game, wherein each time you refresh it, two dice are rolled and you get the result. Here's a preview of the same: Covered the following sections in the Web Development course: You can check out my code for the...


19: COVID-19 Awareness and Statistics App with Kotlin, MVVM, api ,ML

https://sejjari.iblogger.org/covid-19-awareness-and-statistics-app-with-kotlin-mvvm-api-ml

Hashnode - Kotlin (Mobiles)

Introduction In this article, we will be discussing a recent project that aimed to create an Android mobile application for COVID-19 awareness and statistics. The application provides users with up-to-date information on the latest statistics, vaccin...


20 / 146

20: Basics of React | Learning React.js

https://manipandit.hashnode.dev/basics-of-react-learning-reactjs

Hashnode - javascript (Javascript)

What is ReactJS' ReactJS is a JavaScript library for building user interfaces. It allows developers to build reusable UI components and manage the state of those components efficiently. Components: ReactJS applications are built using components, wh...


21: Day 17 - Function Arguments and return Statement

https://viveky.hashnode.dev/day-17-function-arguments-and-return-statement

Hashnode - python (python)

There are four types of arguments that we can provide in a function: Default Arguments Keyword Arguments Variable length Arguments Required Arguments Default arguments: We can provide a default value while creating a function. This way the func...


22: 60% des influenceurs ne respectent pas les règles sur la publicité, d'après la DGCCRF

https://www.usine-digitale.fr/article/60-des-influenceurs-ne-respectent-pas-les-regles-sur-la-publicite-d-apres-la-dgccrf.N2091461

L'usine-digitale (Informatique)

La direction générale de la concurrence, de la consommation et de la répression des fraudes a observé les pratiques d'une soixantaine d'agences et d'influenceurs depuis 2021. Elle reproche à certains d'entre eux d'avoir "trompé les consommateurs sur les propriétés des produits vendus", promu "des produits ou services risqués" et même détourné de l'argent du CPF.


23: Enums in JavaScript

https://stackabuse.com/enums-in-javascript/

Stack Abuse (Javascript)

JavaScript, unlike many other programming languages, does not have built-in support for enums. However, this doesn't mean that we can't use enums in our JS code, which can be achieved using other methods. In this article we will explore different ways to achieve enums in JS using objects and classes.


24: Regular Expressions(RegEx)

https://oluwatrillions.hashnode.dev/regular-expressionsregex

Hashnode - javascript (Javascript)

RegEx is a very important tool in the lives of programmers. It is used to search for and manipulate text strings in a search pattern. It is not language specific, so it cuts across all programming languages, both frontend and backend. In JavaScript, ...


25: Flutter Device preview Package

https://emmilly.hashnode.dev/flutter-device-preview-package

Hashnode - Flutter (Flutter)

I recently discovered a new package from flutter that you can use to test your flutter uis without connecting your emulator such as a phone via usb or running a virtual emulator in android studio. Its saves me a lot of time and I can test my uis on v...


26: Creating A Custom Event In JavaScript: Simplest Explanation

https://javasper.hashnode.dev/creating-a-custom-event-in-javascript-simplest-explanation

Hashnode - javascript (Javascript)

In this post, I will explain what are custom events in the simplest possible way. In summary: it's not as complicated or cool as it sounds; it is only a one-line thing. To create a custom event, we simply use the syntax: const event = new Event(TheEv...


27: HC-tree, un dorsal expérimental de base de données haute-concurrence pour SQLite, il vise à développer un nouveau module de base de données qui améliore SQLite

http://sgbd.developpez.com/actu/340658/HC-tree-un-dorsal-experimental-de-base-de-donnees-haute-concurrence-pour-SQLite-il-vise-a-developper-un-nouveau-module-de-base-de-donnees-qui-ameliore-SQLite/

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

HC-tree, un dorsal expérimental de base de données haute-concurrence pour SQLite, il vise à développer un nouveau module de base de données qui améliore SQLiteLe moteur de base de données SQLite est parfois utilisé comme noyau d'un système de base de données client/serveur. Bien qu'il fonctionne de manière fiable dans de tels cas, le module de base de données qu'il utilise pour stocke [...]


28: How to create and read QR codes in Node.js

https://blog.logrocket.com/create-read-qr-codes-node-js/

Log Rocket blog (Web 2)

Read and write QR codes in Node.js apps using the qrcode library, which provides a simple API for writing QR codes. The post How to create and read QR codes in Node.js appeared first on LogRocket Blog.


29: How to draw SPIRALOOP

https://feeds.feedblitz.com/~/725299220/0/tanglepatterns~How-to-draw-SPIRALOOP.html

TanglePatterns (Zentangle)

Links to online instructions for drawing CZT® Rita Nikolajeva's Zentangle® pattern: Spiraloop. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


30 / 146

30: What is a business case and how to write one (with template)

https://blog.logrocket.com/product-management/what-is-business-case-template/

Log Rocket blog (Web 2)

We'll define what a business case is, help you determine when you need one (and when you don't), and walk you through a four-step process for writing a business case. The post What is a business case and how to write one (with template) appeared first on LogRocket Blog.


31: Compte Rendu ' Afterwork Numérique Responsable du Café du PO

https://blog.octo.com/compte-rendu-afterwork-numerique-responsable-du-cafe-du-po/

Octo (Internet)

Le 17 janvier a eu lieu au sein des locaux d'OCTO Technology l'afterwork Café du PO dédié au numérique responsable. Cet évènement était le deuxième meetup organisé par le Café du PO mais le tout premier autour d'une thématique dédiée. Au programme, cinq présentations, tables rondes et ateliers issus des retours d’expérience vécus par nos […] L'article Compte Rendu ' Aft [...]


33: 20+ Best WordPress Contact Form Plugins 2023

https://www.wpexplorer.com/wordpress-contact-form-plugins/

WP Explorer (wordpress)

One of the most important elements of any website is a way for customers or clients to be able to contact you quickly and easily. The most common way of doing this is via a contact form located on a dedicated contact page or placed in a sidebar or footer visible from all pages. This […] The post 20+ Best WordPress Contact Form Plugins 2023 appeared first on WPExplorer.


34: Microsoft investit des milliards de dollars dans OpenAI

https://www.lemondeinformatique.fr/actualites/lire-microsoft-investit-des-milliards-de-dollars-dans-openai-89297.html

Le monde informatique (Internet / Informatique)

Après le cloud first, place à l'IA first pour Microsoft. Quelques jours après avoir annoncé un vaste plan de licencements - (...)


35: Microsoft investit 10 milliards de dollars dans OpenAI

https://www.lemondeinformatique.fr/actualites/lire-microsoft-investit-10-milliards-de-dollars-dans-openai-89297.html

Le monde informatique (Internet / Informatique)

Après le cloud first, place à l'IA first pour Microsoft. Quelques jours après avoir annoncé un vaste plan de licencements - (...)


36: C++ STL library

https://frankky.com/c-stl-library

Hashnode - python (python)

The Standard Template Library (STL) is a set of C++ template classes to provide common programming data structures and functions such as lists, stacks, arrays, etc. It is a library of container classes, algorithms, and iterators. It is a generalized ...


37: Conversations Before and During Interviews

https://programmingeagle.hashnode.dev/conversations-before-and-during-interviews

Hashnode - python (python)

The conversations I had before and during an interview. Please excuse me, as I express to you, my woes. Looking for a job as a blind person is not easy, and society constantly disparaging me as a freeloader, who contributes nothing doesn't help. Desp...


38: Spotify licencie 600 personnes, soit 6% de ses effectifs

https://www.usine-digitale.fr/editorial/spotify-licencie-600-personnes-soit-6-de-ses-effectifs.N2091421

L'usine-digitale (Informatique)

Le CEO de Spotify a annoncé aujourd'hui la suppression de 6% des effectifs de la société, ce qui représente environ 600 postes. L'entreprise, toujours déficitaire, veut réduire ses dépenses et se concentrer sur la rentabilité.


39: Accidental Global Variable In JavaScript

https://codechitra.hashnode.dev/accidental-global-variable-in-javascript

Hashnode - javascript (Javascript)

Variables declared without any keyword (e.g. var, let, const ) are called Accidental global variables. function fun(){ college = "Axis Colleges"; //Accidental global variable } This type of variable becomes a member of the window object. functio...


40 / 146

40: Réalité mixte : Microsoft débranche AltspaceVR et licencie au sein de l'équipe HoloLens

https://www.usine-digitale.fr/article/realite-mixte-microsoft-debranche-altspacevr-et-licencie-au-sein-de-l-equipe-hololens.N2091356

L'usine-digitale (Informatique)

Les temps sont durs pour la réalité mixté au sein de Microsoft. Le géant de Redmond arrête l'aventure AltspaceVR, une application sociale qu'il avait racheté en 2017, et dégraisse au sein d'une division HoloLens qui n'était déjà pas en grande forme.


41: Microsoft réinvestit 10 milliards de dollars dans OpenAI, la start-up derrière ChatGPT

https://www.usine-digitale.fr/article/microsoft-reinvestit-10-milliards-de-dollars-dans-openai-la-start-up-derriere-chatgpt.N2091406

L'usine-digitale (Informatique)

Microsoft annonce une extension de son partenariat avec OpenAI, qui passe par un "investissement pluriannuel" dont le montant s'élèverait selon Bloomberg à 10 milliards de dollars.


42: Javascript Top 50 Interview Questions:-

https://shrutimaheshwari.hashnode.dev/javascript-top-50-interview-questions

Hashnode - javascript (Javascript)

Hey!!'Folks''' In this article I'm sharing some most and commonly asked javascript interview questions. And in my opinion if you can answers these questions that means you already know JavaScript well!!!. QUESTIONS: What is JavaScript' Enumerat...


43: Mastering UX user interviews: Guide, tips, and examples

https://blog.logrocket.com/ux-design/mastering-ux-user-interviews/

Log Rocket blog (Web 2)

User interviews are a crucial part of the product design process, allowing us to gain insight into the needs and behaviors of users. The post Mastering UX user interviews: Guide, tips, and examples appeared first on LogRocket Blog.


44: Shadow se renforce sur Android grâce à l'acquisition de Genymobile

https://www.usine-digitale.fr/article/shadow-se-renforce-sur-android-grace-a-l-acquisition-de-genymobile.N2091396

L'usine-digitale (Informatique)

Shadow complète son portefeuille de services cloud en rachetant Genymobile, start-up spécialisée dans les outils de développement pour Android, et notamment son émulateur Genymotion. Shadow ambitionne de devenir la plateforme leader sur le cloud "pour les entreprises, les gamers et les créatifs".


45: La Cnil se dote d'un service dédié à l'IA

https://www.lemondeinformatique.fr/actualites/lire-la-cnil-se-dote-d-un-service-dedie-a-l-ia-89294.html

Le monde informatique (Internet / Informatique)

Le début d'année est chargé pour la Cnil qui mène plusieurs sujets de front. Des sanctions prononcées contre des (...)


46: Google Ads down for some users

https://searchengineland.com/google-ads-down-for-some-users-392010

Search engine land (Référencement)

Keep checking Twitter, or the Ads Status Dashboard for more updates. The post Google Ads down for some users appeared first on Search Engine Land.


47: How Google's turn to resellers coincides with its largest round of layoffs

https://searchengineland.com/how-googles-turn-to-resellers-coincides-with-its-largest-round-of-layoffs-392008

Search engine land (Référencement)

The layoffs may be closely tied to another shift in strategy - the increasing reliance on resellers. The post How Google’s turn to resellers coincides with its largest round of layoffs appeared first on Search Engine Land.


48: Le pionnier de la réalité virtuelle sociale, fermé !

https://www.realite-virtuelle.com/altspacevr-pionnier-de-la-realite-virtuelle-sociale-ferme/

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

Six ans après son rachat, le pionnier de la réalité virtuelle sociale, AltspaceVR, va cesser […] Cet article Le pionnier de la réalité virtuelle sociale, fermé ! a été publié sur Réalité-Virtuelle.com.


49: Arrays in JavaScript

https://blog-debasish.hashnode.dev/arrays-in-javascript

Hashnode - javascript (Javascript)

The array is like a big container into which we can throw variables and later use them. It helps us to store multiple elements in a single variable using a single variable name. In JavaScript Array isn't primitive, it's an object. Basic Array Operati...


50 / 146

50: Streamlining Data Collection and Analysis: Our Experience Using the Google Forms API and Python

https://sejjari.iblogger.org/streamlining-data-collection-and-analysis-our-experience-using-the-google-forms-api-and-python

Hashnode - python (python)

Introduction Data visualization and processing are essential tools in today's data-driven world. They allow us to extract insights and understanding from large and complex datasets, and to make informed and data-driven decisions. In this blog post, ...


51: Pour les équipes agiles, le chemin du succès est pavé de mille tentations

https://blog.octo.com/equipes-agiles-tentations/

Octo (Internet)

Dans nos métiers de coach, de consultant et d'accompagnateur du changement, nous avons tous été témoins d'actions engagées sous l'emprise de la tentation. Non, ne vous méprenez pas, on ne parle pas de sorcellerie ou de magie. Nous parlons bien d’une décision motivée par une gratification immédiate.  Dans cet article nous allons explorer les mécanismes […] L'article Pour [...]


52: JavaScript Loops

https://diki.hashnode.dev/javascript-loops

Hashnode - javascript (Javascript)

JavaScript Supports different kinds of loops: for - loops through a block of code several times for/in - loops through the properties of an object for/of - loops through the values of an iterable object while - loops through a block of code while...


53: Google Optimize will sunset this year

https://searchengineland.com/google-optimize-will-sunset-this-year-392004

Search engine land (Référencement)

Any experiments and personalizations still active will end. The post Google Optimize will sunset this year appeared first on Search Engine Land.


54: Measure bundle size in your Angular apps

https://shaunak.hashnode.dev/measure-bundle-size-in-your-angular-apps

Hashnode - javascript (Javascript)

Website performance is key to ensuring a good user experience. Multiple modules and multiple external npm references make your website very heavy and slow to load. The goal should be to ship the smallest and faster javascript to your browsers. What i...


55: 3 Essential Design Trends, January 2023

https://www.webdesignerdepot.com/2023/01/3-essential-design-trends-january-2023/

Webdesigner depot (Design)

Minimal styles with big, bold text is the biggest trending website design element of 2023 so far. There are many projects out there that are text-heavy without a lot of other embellishments or imagery. You'll see a lot of that here, with a few other goodies mixed in. Here's what's trending in design this month. […] The post 3 Essential Design Trends, January 2023 first appeared on Webdesigne [...]


56: A Look Back, A Step Forward

https://blog.vivsh.com/a-look-back-a-step-forward

Hashnode - javascript (Javascript)

In this read, you will get to know some of the tools I have used in the past year which were worth to be used further. Courtesy to to-the-point readers, skip these 3 paragraphs. :) The past year has been a joyride for all kinds of developers around t...


57: From React in web to React in mobile

https://roy-blogs.hashnode.dev/from-react-in-web-to-react-in-mobile

Hashnode - javascript (Javascript)

Transitioning from one domain to another is often overwhelming and confusing, whether you are looking for a job switch or want to get your hands dirty with certain technologies or like me, want to explore. In this blog, I'll briefly share how I got s...


58: Yokai mise sur la génération de photos par IA pour séduire le grand public et les influenceurs

https://www.usine-digitale.fr/article/yokai-mise-sur-la-generation-de-photos-par-ia-pour-seduire-le-grand-public-et-les-influenceurs.N2091291

L'usine-digitale (Informatique)

La start-up française Yokai s'appuie sur l'IA générative pour produire des photos réalistes dans une diversité d'environnements. D'abord destinée au grand public, la plateforme s'ouvrira aux professionnels en 2023 en même temps qu'elle devient une application.


59: L'exercice physique, un véritable remède contre le cancer'

https://www.rtflash.fr/l-exercice-physique-veritable-remede-contre-cancer/article

Tregouet.org ()

L'exercice est un véritable médicament contre le cancer et chaque dose compte, y compris aux derniers stades de la maladie : l'étude menée à l'Université Edith Cowan (ECU, Australie) et publiée dans Prostate Cancer and Prostatic Diseases, révèle qu'une seule séance d'exercice élève les niveaux de myokines, des protéines anticancéreuses, chez les personnes atteintes d'un cancer d [...]


60 / 146

60: Pour faire pression, Elliott Management investit massivement dans Salesforce

https://www.lemondeinformatique.fr/actualites/lire-pour-faire-pression-elliott-management-investit-massivement-dans-salesforce-89288.html

Le monde informatique (Internet / Informatique)

Après les annonces de licenciement, les fonds activistes rentrent dans l'arène pour maintenir la pression sur les sociétés. (...)


61: Un robot ailé capable de se poser tel un oiseau

https://www.rtflash.fr/robot-aile-capable-se-poser-tel-oiseau/article

Tregouet.org ()

Quand on regarde un oiseau se poser sur une branche, on a l'impression que c'est la chose la plus facile au monde. En réalité, l'acte de se percher implique un équilibre extrêmement délicat entre timing, forces d'impact élevées, vitesse et précision. Ce mouvement est si complexe qu'aucun robot ailé, ou ornithoptère, n'était parvenu à le maîtriser jusqu'à présent. [...]


62: Incorporating machine learning into your Android app

https://blog.logrocket.com/incorporating-machine-learning-android-app/

Log Rocket blog (Web 2)

Learn how to apply machine learning in Android Studio to scan and extract text, as well as detect and locate objects in images. The post Incorporating machine learning into your Android app appeared first on LogRocket Blog.


63: Why cannibalization in product doesn't have to be bad

https://blog.logrocket.com/product-management/why-cannibalization-in-product-doesnt-have-to-be-bad/

Log Rocket blog (Web 2)

Cannibalization is when a product 'eats' another one's market share. Usually seen as a bad thing, cannibalization can be intentional, unintentional, or cross-market. The post Why cannibalization in product doesn't have to be bad appeared first on LogRocket Blog.


64: How to level up your analytical skills with Excel

https://searchengineland.com/level-up-analytical-skills-excel-391940

Search engine land (Référencement)

Learn Excel tips that will help you use and analyze data to identify the highest impact optimizations for your PPC campaigns. The post How to level up your analytical skills with Excel appeared first on Search Engine Land.


65: Un robot veille à l'état émotionnel des personnes âgées

https://www.rtflash.fr/robot-veille-l-etat-emotionnel-personnes-agees/article

Tregouet.org ()

Diplômé de la prestigieuse école d'ingénieurs Centrale Supélec, il aurait pu faire une brillante carrière dans le conseil comme beaucoup de ses amis. A 23 ans, Tanel Petelot voit les choses autrement : « Je préfère utiliser mes compétences pour résoudre une problématique douloureuse et m'occuper des gens qui ont de vrais soucis : les personnes âgées », explique-t-il. « Parmi les 7, [...]


66: How to handle Sequences the Pythonic way'

https://algoryst.hashnode.dev/how-to-handle-sequences-the-pythonic-way

Hashnode - python (python)

Sequences and Collections are an integral part of any programming language, Python particularly handles them uniformly, ie, any type of sequence from Strings and XML elements to arrays, lists and Tuples are handled in a uniform way. Understanding the...


67: Des cellules souches pour régénérer le c'ur

https://www.rtflash.fr/cellules-souches-pour-regenerer-coeur/article

Tregouet.org ()

L'hôpital privé Jacques Cartier de Massy (78), à la pointe de la cardiologie, a réalisé une toute nouvelle opération de greffe de cellules souches dans le c'ur d'un patient ayant subi un infarctus sévère. Plus concrètement, dans le cadre d'un essai clinique, ce premier patient a reçu une injection de cellules souches visant à régénérer son muscle cardiaque endommagé par un infarctus [...]


68: VRB Gay : le summum de l'excitation masculine

https://www.realite-virtuelle.com/vrb-gay/

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

Envie de découvrir un site de porno VR hors du commun'' VRB Gay et ses […] Cet article VRB Gay : le summum de l'excitation masculine a été publié sur Réalité-Virtuelle.com.


69: NFT, metaverse, web3' Ce qu'en pensent les développeurs

https://www.realite-virtuelle.com/nft-metaverse-web3-que-pense-developpeurs/

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

NFT, metaverse, et web3 font partie des dernières tendances technologiques, et mots à la mode […] Cet article NFT, metaverse, web3' Ce qu'en pensent les développeurs a été publié sur Réalité-Virtuelle.com.


70 / 146

70: Camping Ty Breiz à Kervoyal-Damgan

http://amisdekervoyal.viabloga.com/news/camping-ty-breiz-a-kervoyal-damgan

Amis de Kervoyal (Divers...)

Les Amis de Kervoyal ont récemment été contactés par plusieurs propriétaires de mobile-homes sur le camping Ty Breiz, situé en plein coeur du village de Kervoyal.Ce camping vient d'être racheté pour être transformé en parc résidentiel de loisirs (PRL) à cession d'emplacements. En conséquence, les occupants du camping sont ni plus ni moins expulsés, et priés sans ménagement d'évacu [...]


71: Getting Started With SvelteKit

https://css-tricks.com/getting-started-with-sveltekit/

css-tricks (CSS)

SvelteKit is the latest of what I’d call next-gen application frameworks. It, of course, scaffolds an application for you, with the file-based routing, deployment, and server-side rendering that Next has done forever. But SvelteKit also supports nested layouts, server mutations … Getting Started With SvelteKit originally published on CSS-Tricks, which is part of the DigitalOcean famil [...]


72: Vaccin contre le cancer du poumon : des premiers essais cliniques encourageants

https://www.rtflash.fr/vaccin-contre-cancer-poumon-premiers-essais-cliniques-encourageants/article

Tregouet.org ()

Nouvelle percée majeure dans le domaine en pleine effervescence des vaccins ARN anti-cancer : l'équipe du professeur Olivier Adotévi (CHU de Besançon), vient de publier des résultats positifs, six ans après le lancement des phases précoces d'essai clinique dans le cancer du poumon, sur son nouveau vaccin thérapeutique UCPVax, dans le prestigieux "Journal of clinical oncology". [...]


73: Profitez d'une réduction sur le Porn VR pour prendre du plaisir à petit prix

https://www.realite-virtuelle.com/reduction-porn-vr/

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

Débutants, ou connaisseurs, voici une opportunité pour économiser quelques euros. Avec une réduction sur le […] Cet article Profitez d’une réduction sur le Porn VR pour prendre du plaisir à petit prix a été publié sur Réalité-Virtuelle.com.


74: How to inject code into an iframe

https://blog.francescoperticarari.com/how-to-inject-code-into-an-iframe

Hashnode - javascript (Javascript)

Injecting code or prefilling fields in an iframe can be a tricky task, but with a little bit of know-how, it's definitely doable. If you're looking to add some extra functionality to your website, or if you just want to streamline the user experience...


75: Thoma Bravo croque Magnet Forensics plus d'1,2 Md'

https://www.lemondeinformatique.fr/actualites/lire-thoma-bravo-croque-magnet-forensics-plus-d-1-2-mdeteuro-89289.html

Le monde informatique (Internet / Informatique)

Rarement un fonds d'investissement n'avait eu autant d'appétit pour les fournisseurs en cybersécurité. Car c'est bien à une (...)


76: Uber condamné à verser 17 millions d'euros à 139 chauffeurs VTC

https://www.usine-digitale.fr/article/uber-condamne-a-verser-17-millions-d-euros-a-139-chauffeurs-vtc.N2091336

L'usine-digitale (Informatique)

Vendredi, Uber a été condamné à verser 17 millions d'euros à 139 chauffeurs VTC. Le conseil des prud'hommes de Lyon a estimé que leurs conditions de travail ne correspondaient pas à leur statut d'indépendant.


77: Astek déclare son intérêt pour Evidian d'Atos

https://www.lemondeinformatique.fr/actualites/lire-astek-declare-son-interet-pour-evidian-d-atos-89290.html

Le monde informatique (Internet / Informatique)

La liste des prétendants s'allonge pour une éventuelle acquisition de la société Evidian, issue du plan de scission d'Atos. (...)


78: Web scraping : tout savoir sur cette technique d'extraction de données

https://www.lebigdata.fr/web-scraping-extraction-donnees

Le Big Data (dataviz)

Le web scraping est un processus automatisé qui consiste à extraire des données structurées ou non structurées sur internet.  C'est … Cet article Web scraping : tout savoir sur cette technique d'extraction de données a été publié sur LeBigData.fr.


79: How to write a checklist article: A 5-step checklist

https://searchengineland.com/checklist-content-391921

Search engine land (Référencement)

A checklist for writing a checklist' Why not. Learn how to master this content type, including how to tie your article to a keyword for SEO. The post How to write a checklist article: A 5-step checklist appeared first on Search Engine Land.


80 / 146

80: Sword Art Online : Tout ce que vous devez savoir

https://www.realite-virtuelle.com/sword-art-online-tout-savoir/

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

Sword Art Online est une parfaite illustration de la suprématie de la réalité virtuelle dans […] Cet article Sword Art Online : Tout ce que vous devez savoir a été publié sur Réalité-Virtuelle.com.


81: Configuring Node.js Web Server Day98

https://dheerajy1.hashnode.dev/configuring-nodejs-web-server-day98

Hashnode - javascript (Javascript)

Today #Day98 of #100DaysOfCode, I am coding and explaining 'Configuring Node.js Web Server' taught by [WebDevSimplified]. Pre-requisites: Download Node.JS [Link] Choose LTS - Long Term support on this site. Install. Node.JS is simply a method to...


82: Tout savoir sur ChatGPT : accès, cas d'usages, limites, paramètres, SEO, détection, alternatives'

https://www.blogdumoderateur.com/tout-savoir-sur-chatgpt/

Blog du Moderateur ()

Voici tout ce que vous devez savoir sur ChatGPT pour l'utiliser efficacement !


83: 10 formules à connaître pour bien débuter sur Excel

https://www.blogdumoderateur.com/formules-debuter-excel/

Blog du Moderateur ()

Découvrez les formules Excel indispensables pour se lancer sur le tableur de Microsoft Office.


84: What is the difference between JavaScript null, undefined and undeclared'

https://explainthis.hashnode.dev/what-is-the-difference-between-javascript-null-undefined-and-undeclared

Hashnode - javascript (Javascript)

The post was originally published on ExplainThis with title 'What is the difference between JavaScript null, undefined and undeclared'' undefined means that the value has not yet been defined, so when a variable is declared but not assigned any valu...


85: 2022: The Year I Leveled Up My Skills in JavaScript and React with freeCodeCamp

https://tarangrajpara.hashnode.dev/2022-the-year-i-leveled-up-my-skills-in-javascript-and-react-with-freecodecamp

Hashnode - javascript (Javascript)

"Reflecting on 2022: What I've Learned in JavaScript, React, and freeCodeCamp As we approach the end of 2022, I wanted to take a moment to reflect on the skills and knowledge that I've gained throughout the year. In particular, I've been focusing on ...


86: edenai/edenai-apis: Regroupe les meilleurs APIs d'IA

https://github.com/edenai/edenai-apis

Humancoders ()

Salut, Je travaille sur un projet qui regroupe toutes les meilleures IA (AIaaS) de différents fournisseurs (GCP, AWS, Azure, DeepL, etc.) dans une seule API On m'a posé la question : pourquoi ne regroupez-vous pas les modèles Open Source (au lieu des API propriétaires) dans un seul repo ' bien parce qu'il n'est pas logique de déployer et de maintenir de grands modèles d'IA pytorch (ou un a [...]


87: Why Are Objects Mutable In JavaScript'

https://abinjohn.in/object-mutability

Hashnode - javascript (Javascript)

JavaScript is a funny language. If we declare a primitive variable with const and try mutating(modifying) it, we'll get an error. Well, that's expected behavior. However, if we declare an array or an object with const and try modifying one of its pro...


88: Why hire Vue js developer for your upcoming project in 2023'

https://hemangi57.hashnode.dev/why-hire-vue-js-developer-for-your-upcoming-project-in-2023

Hashnode - vuejs (Javascript)

Among all the frameworks Vue is considered a rapidly evolving framework. There are various famous web application has been developed with the help of Vue js developers such as balance, GitLab, Keep, Alibaba, and many more. Nowadays the demand to hire...


89: Part 2 ' From idea to game: A beginner's guide to creating games with Unity

https://bfranse.hashnode.dev/beginners-guide-to-creating-games-with-unity-part-2

Hashnode - Unity (unity)

In the first article of the series, I covered techniques, tools and tips on how you can generate game ideas. So at this stage, you should have a bunch of game ideas ready to explore. I will help you pick the right idea for you, and show you how you c...


90 / 146

90: Narrowing down and refining your ideas

https://bfranse.com/narrowing-down-and-refining-your-ideas

Hashnode - Unity (unity)

In the first article of the series, I covered techniques, tools and tips on how you can generate game ideas. So at this stage, you should have a bunch of game ideas ready to explore. I will help you pick the right idea for you, and show you how you c...


91: Level Up Your CSS Skills With The :has() Selector

https://smashingmagazine.com/2023/01/level-up-css-skills-has-selector/

Smashing magazine (CSS / Web 2)

The CSS relational selector :has() allows selecting elements in combinations that were previously impossible without the assistance of JavaScript. We'll review how to combine :has() with core CSS selectors to extend their capabilities for unique arrangements of elements.


92: Error: Identifier has already been declared in javascript

https://kodervine.hashnode.dev/error-identifier-has-already-been-declared-in-javascript

Hashnode - javascript (Javascript)

Recently, I encountered an error message when trying to create a new variable on my JavaScript file. I was using the "const" or "let" keyword to declare the variable, but I kept getting an error message. So, I decided to use the var keyword declarat...


93: CRUD Operations using IndexedDB

https://ngangai.hashnode.dev/crud-operations-using-indexeddb

Hashnode - javascript (Javascript)

C - Create R - Read U - Update D - Delete Create a record in IndexedDB. async function create(data) { return new Promise((resolve, reject) => { // create indexedDB instance const indexedDB = window.indexedDB; // If instan...


94: Advanced JavaScript Design Patterns: Part 2

https://djaytechdiary.com/javascript-constructor-design-pattern

Hashnode - javascript (Javascript)

Object-oriented programming is a popular programming paradigm that allows developers to model real-world objects and their interactions in code. One of the key concepts in object-oriented programming is the use of classes, which act as templates for ...


95: Destructuring an array of objects.

https://debdeep1.hashnode.dev/destructuring-an-array-of-objects

Hashnode - javascript (Javascript)

What is destructuring' Destructuring is a powerful feature in JavaScript that allows you to extract specific properties from objects and arrays and assign them to variables. This can make your code more readable, efficient, and less error-prone. In ...


96: Pickaw : créer et gérer vos concours sur Instagram, Facebook, Twitter et YouTube

https://www.blogdumoderateur.com/pickaw-creer-concours-instagram/

Blog du Moderateur ()

Découvrez une solution complète pour gérer vos concours sur tous les réseaux sociaux, et notamment sur Instagram.


97: Une « apocalypse quantique » dès 2024 ' Les experts paniquent

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

Le Big Data (dataviz)

Alors que « l’apocalypse quantique » ne devait se produire que dans 20 ans, la récente prouesse de chercheurs chinois … Cet article Une « apocalypse quantique » dès 2024 ' Les experts paniquent a été publié sur LeBigData.fr.


98: 5 événements web à ne pas manquer en février 2023

https://www.blogdumoderateur.com/evenements-digital-fevrier-2023/

Blog du Moderateur ()

Retrouvez dans cette sélection : les conférences du New Normal Digital Day avec CyberCité, le Retail Data Day, la Maddy Keynote, la NFT Paris Conference et le MWC Barcelona 2023.


99: 7 Logistics Technology Trends to Watch Out for in 2023

https://www.noupe.com/business-online/7-logistics-technology-trends-to-watch-out-for.html

Noupe (conception)

Logistics is changing industry that is always fiercely competitive and requires organizations to improve and optimize constantly. Delivery management is a complex process, the effectiveness of which today can only be ensured by the implementation of state-of-the-art technologies. Due to rapid changes in the global economic landscape, recent years have been difficult for logistics companies..&# [...]


100 / 146

100: OpenSnitch Application Firewall Coming to Debian

https://www.webpronews.com/opensnitch-application-firewall-coming-to-debian/

WebProNews SEO (Développement)

WebProNews OpenSnitch Application Firewall Coming to Debian Popular application firewall Opensnitch is coming to Debian, one of the oldest and most popular Linux distributions (distros). OpenSnitch Application Firewall Coming to Debian Matt Milano


101: Alain Issarni devient président exécutif du fournisseur de "cloud de confiance" français NumSpot

https://www.usine-digitale.fr/article/alain-issarni-devient-president-executif-du-cloud-de-confiance-francais-numspot.N2091301

L'usine-digitale (Informatique)

Alain Issarni prendra la tête du fournisseur cloud NumSpot à partir du 1er février. Reconnu comme un spécialiste de la transformation numérique du secteur public, il dirigeait jusqu'à présent les systèmes d'information de la Caisse nationale d'assurance maladie. Il va tâcher d'aider la jeune entreprise à se tailler une part du marché du cloud de confiance.


102: Comparing Implementations of the Monkey Language XI: Going Native (and JS) with Kotlin.

https://marioarias.hashnode.dev/comparing-implementations-of-the-monkey-language-xi-going-native-and-js-with-kotlin

Hashnode - Kotlin (Mobiles)

Previously In the last episode, We review some updates to the performance of several languages and runtimes. Kotlin Native Many moons ago, I tried to compile my Kotlin code to Native, but it failed with a Segmentation fault when I tried to run it. Re...


103: Petite introduction à WebAssembly

https://blog.flozz.fr/2023/01/21/petite-introduction-a-webassembly/

Humancoders ()

Pour les besoins d'un projet nécessitant du traitement d'image, je me suis récemment penché sur WebAssembly, une technologie permettant d'apporter des performances supérieures à celle de JavaScript dans les navigateurs. Dans cet article, je vais vous présenter ce qu'est exactement WebAssembly et comment ça s'utilise au travers de différents exemples couvrant les principaux points qui m'on [...]


104: Create A Password Manager Using Python And SQLite Database

https://amitgajare.hashnode.dev/create-a-password-manager-using-python-and-sqlite-database

Hashnode - python (python)

WHAT IS A PASSWORD MANAGER' A password manager (or a web browser) can store all your passwords securely, so you don't have to worry about remembering them. This allows you to use unique, strong passwords for all your important accounts (rather than u...


105: Des pirates placent des malwares dans les pièces jointes de OneNote

https://www.lemondeinformatique.fr/actualites/lire-des-pirates-placent-des-malwares-dans-les-pieces-jointes-de-onenote-89285.html

Le monde informatique (Internet / Informatique)

Saluée par la communauté des chercheurs en cybersécurité, la décision de Microsoft de désactiver les macros (...)


106: Notes app using HTML, CSS, and Javascript

https://priyanshu-agrawal.hashnode.dev/notes-app-using-html-css-and-javascript

Hashnode - javascript (Javascript)

If you have started learning Web development, then instead of watching tutorial after tutorial and falling into the trap of something called as 'Tutorial Hell '. It's better to have project-based learning where you learn by making projects. First, yo...


107: Jeux mobiles : l'israélien Playtika lance une OPA sur Rovio

https://www.usine-digitale.fr/article/jeux-mobiles-l-israelien-playtika-lance-une-opa-sur-rovio.N2091286

L'usine-digitale (Informatique)

L'éditeur de jeux mobiles Playtika veut mettre la main sur le créateur finlandais d'Angry Birds, pour lequel il met 750 millions d'euros sur la table.


108: Jeux mobiles : Rovio dit non à l'OPA de l'israélien Playtika

https://www.usine-digitale.fr/article/jeux-mobiles-rovio-dit-non-a-l-opa-de-l-israelien-playtika.N2091286

L'usine-digitale (Informatique)

L'éditeur de jeux mobiles Playtika voulait mettre la main sur le créateur finlandais d'Angry Birds, mettant sur la table une offre de 750 millions d'euros. Rovio continue de discuter avec d'autres acquéreurs potentiels.


109: Kotlin Multiplatform vs Flutter: Which is a Better Cross- platform App'

https://ultroneous.hashnode.dev/kotlin-multiplatform-vs-flutter-which-is-a-better-cross-platform-app

Hashnode - Flutter (Flutter)

Cross-platform app development is like having your cake and eating it too. For instance, you can use a single codebase to build an app that runs on Android and iOS devices, saving you time, money, and effort. Developers are constantly looking for way...


110 / 146

110: Mixed Feelings of Happiness and Meaning

https://flowingdata.com/projects/2023/happy-meaning-acts/

Flowing data (dataviz)

Happiness and meaningfulness in what we do do not always go together.Tags: time use, well-being


111: Logging -and how to configure it in Python

https://salwoch.hashnode.dev/logging-and-how-to-configure-it-in-python

Hashnode - python (python)

As a developer, it is essential to stay on top of the changes in your application during development and production. Logging enables you to track events, features, errors and when they occur. This tutorial will take you through setting up basic loggi...


112: My 2022 Wrap-up Journey as a Software Engineer

https://gauravpatil.hashnode.dev/my-2022-wrap-up-journey-as-a-software-engineer

Hashnode - javascript (Javascript)

In 2022 I learned a lot of new technologies I started My Software engineering journey with HTML CSS and Javascript After that I learned Backed technology like node.js express and MongoDB. I worked on different projects. I create my own social media c...


113: Klaro aide les salariés à savoir à quelles aides publiques et privées prétendre

https://www.usine-digitale.fr/article/klaro-aide-les-salaries-a-savoir-a-quelles-aides-publiques-et-privees-pretendre.N2085841

L'usine-digitale (Informatique)

Pour s'y retrouver dans la jungle des aides publiques (et privées !) délivrées par exemple au travers des mutuelles et conventions collectives, Klaro propose aux entreprises de faire profiter à leurs salariés de sa base de connaissances à l'aide d'un moteur de recherche. Avec plus de 1500 aides répertoriées, la start-up souhaite également aider les publics les plus précaires.


114: UI Interactions & Animations Roundup 28

https://tympanus.net/codrops/2023/01/23/ui-interactions-animations-roundup-28/

Codrops (Design / Internet)

Unlock your creativity with this latest collection of Dribbble shots featuring fresh animation and motion design inspiration.


115: Twitter s'est-il débarrassé de 80 % de ses effectifs '

https://www.lemondeinformatique.fr/actualites/lire-twitter-s-est-il-debarrasse-de-80-de-ses-effectifs-89286.html

Le monde informatique (Internet / Informatique)

Rien ne va plus chez Twitter depuis son rachat par Elon Musk en octobre dernier. L'homme d'affaires a en effet mis la main sur le réseau (...)


116: JavaScript et Java à la fois aimés et détestés

https://www.lemondeinformatique.fr/actualites/lire-javascript-et-java-a-la-fois-aimes-et-detestes-89287.html

Le monde informatique (Internet / Informatique)

Les choses bougent dans l'adoption et l'usage des langages de programmation, comme le montre l'édition 2022 du « State (...)


117: JavaScript developers: Here are the top trends and tools

https://shivammehta2103.hashnode.dev/javascript-developers-here-are-the-top-trends-and-tools

Hashnode - javascript (Javascript)

The 2022 State of JavaScript survey of nearly 40,000 developers has identified the most popular, emerging and waning technologies used by JavaScript developers. The annual JavaScript survey, whose sponsors include Google, highlights new frontend fr...


118: A Simple Union Between .NET Core and Python

https://devleader.hashnode.dev/a-simple-union-between-net-core-and-python

Hashnode - python (python)

(Originally posted on my blog) Python is a powerful and versatile programming language that has become increasingly popular. For many, it's one of the very first programming languages they pick up when getting started. Some of the highest traffic pos...


119: E-Picking innove avec une consigne automatisée pour les colis XXL

https://www.usine-digitale.fr/article/e-picking-innove-avec-une-consigne-automatisee-pour-les-colis-xxl.N2086816

L'usine-digitale (Informatique)

La jeune start-up brestoise a développé des consignes automatisées spécifiquement dédiées aux colis très volumineux, qui constituent aussi une solution aux problématiques de logistique urbaine.


120 / 146

120: WhatsApp : votre numéro est-il en vente sur le Dark Web '

https://www.lebigdata.fr/whatsapp-numeros-vente-dark-web

Le Big Data (dataviz)

Les numéros de téléphone de 487 millions d'utilisateurs WhatsApp sont mis en vente sur un forum de Dark Web. Les … Cet article WhatsApp : votre numéro est-il en vente sur le Dark Web ' a été publié sur LeBigData.fr.


121: Panne sur votre site web : comment être alerté rapidement '

https://www.blogdumoderateur.com/panne-site-web-comment-etre-alerte/

Blog du Moderateur ()

Vous êtes propriétaire d'un site Internet ' Découvrez comment être alerté rapidement si votre site web ne fonctionne plus !


122: Object-Oriented Programming(OOP) in JavaScript 101: A Complete Guide

https://hojaleaks.com/object-oriented-programming-in-javascript-101-a-complete-guide

Hashnode - javascript (Javascript)

Object-Oriented Programming (OOP) is a programming paradigm that uses objects and their interactions to design applications and computer programs. JavaScript, being a multi-paradigm programming language, supports OOP through its constructor function ...


123: Create Your First ETL Pipeline with Python

https://anujsyal.com/create-your-first-etl-pipeline-with-python

Hashnode - python (python)

When it comes to pursuing a career in the field of Data and specifically Data Engineering and many other tech-related fields, Python comes off as a powerful tool. As you will be forging ahead in your profession, this programming language will be conv...


124: "Unveiling the World of Machine Learning: Understanding its Capabilities, Algorithms and Real-world Applications"

https://ghettotech.hashnode.dev/unveiling-the-world-of-machine-learning-understanding-its-capabilities-algorithms-and-real-world-applications

Hashnode - python (python)

Have you ever wondered how algorithms recommend YouTube videos and Netflix movies or how a computer can understand and respond to human speech' Do you know the different types of machine learning such as supervised, unsupervised and reinforcement lea...


125: Sophos licencie et se restructure

https://www.lemondeinformatique.fr/actualites/lire-sophos-licencie-et-se-restructure-89281.html

Le monde informatique (Internet / Informatique)

Sophos entre dans le cercle de plus en plus large des entreprises de l'IT qui licencient. Dans un article publié le 19 janvier, nos confrères (...)


126: Journey Beyond pousse son centre d'appel dans le cloud

https://www.lemondeinformatique.fr/actualites/lire-journey-beyond-pousse-son-centre-d-appel-dans-le-cloud-89277.html

Le monde informatique (Internet / Informatique)

Journey Beyond, qui fait partie du groupe Hornblower, est le premier groupe de « tourisme expérientiel » d'Australie. Basé à (...)


127: Le marché des semi-conducteurs fait grise mine

https://www.lemondeinformatique.fr/actualites/lire-le-marche-des-semi-conducteurs-fait-grise-mine-89279.html

Le monde informatique (Internet / Informatique)

Changement radical de situation sur le marché mondial des semi-conducteurs. En 2022, les revenus cumulés des industriels du secteur n'ont (...)


128: L'attque EmojiDeploy s'en prend à Azure

https://www.lemondeinformatique.fr/actualites/lire-l-attque-emojideploy-s-en-prend-a-azure-89283.html

Le monde informatique (Internet / Informatique)

Des chercheurs en sécurité d'Ermetic ont découvert fin 2022 une faille affectant les services cloud Azure ainsi que Function Apps, (...)


129: Goossips : Noms de Sites Identiques, Trafic sur une Page Web

https://www.abondance.com/20230123-51117-goossips-noms-de-sites-identiques-trafic-sur-une-page-web.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, avec au programme cette semaine quelques réponses à ces angoissantes questions : Est-ce que cela pose problème en SEO si deux sites ont le même nom ' Google prend-il en compte le trafic […] L'article "Goossips : Noms de Sites Identiques, Trafic sur une Page [...]


130 / 146

130: How does JavaScript works behind the scene

https://savinder.hashnode.dev/how-does-javascript-works-behind-the-scene

Hashnode - javascript (Javascript)

Introduction Hey Everyone! I am back I know you missed me (let me react like I have thousands of followers ' who regularly visit my blog page '). Now coming to the point, do you know how JavaScript code works behind the scene' Well if you don't kno...


131: Apache Airflow Bad vs. Best Practices In Production - 2023

https://dataanddevops.com/apache-airflow-bad-vs-best-practices-in-production-2023

Hashnode - python (python)

Apache Airflow - The famous Opensource Pythonic general-purpose data orchestration tool. It lets you do a variety of things. The open-ended nature of the tool gives room for a variety of customization. While this is a good thing, there are no bounds ...


132: Regular Expressions in Python: A Comprehensive Tutorial for Beginners

https://hojaleaks.com/regular-expressions-in-python-a-comprehensive-tutorial-for-beginners

Hashnode - python (python)

Welcome to this tutorial on regular expressions in Python! Regular expressions, also known as "regex" or "regexp", are a powerful tool for manipulating text and data. They are a sequence of characters that define a search pattern and are mainly used ...


133: The Rest parameter and spread operator made simple. Part 1

https://pseremba.hashnode.dev/the-rest-parameter-and-spread-operator-made-simple-part-1

Hashnode - javascript (Javascript)

Imagine we have been tasked to create a program that adds numbers passed to it. That is easy, we just create a function with a few parameters that we use to calculate the sum of numbers. function addNums(num1, num2) { return num1 + num2 } let ans ...


134: This day in search marketing history: January 23

https://searchengineland.com/search-marketing-history-january-23-391998

Search engine land (Référencement)

Expedia buys Travelocity, plus: Don't Be Evil tool, semantic search, Position 6 penalty, unlimited site exclusions and more. The post This day in search marketing history: January 23 appeared first on Search Engine Land.


135: Arrays Cheat Sheet - JavaScript

https://mo-ibra.hashnode.dev/arrays-cheat-sheet-javascript

Hashnode - javascript (Javascript)

Introduction Hi guys, today I'm going to explain the built-in functions in arrays in JavaScript. This means that you do not need dozens of videos that explain the functions or old documents, and I will try to explain each function in short and well e...


136: Exploring the World of Variables in JavaScript'''

https://binodroxx.hashnode.dev/exploring-the-world-of-variables-in-javascript

Hashnode - javascript (Javascript)

JavaScript is a programming language that is widely used for web development, and it has many features that make it powerful and versatile. One of the most basic and important features of JavaScript is the concept of variables. In this article, we wi...


137: What is React.js'

https://devblog.dev/what-is-reactjs

Hashnode - javascript (Javascript)

React is a declarative, efficient, and flexible JavaScript library for building user interfaces. A Brief History of React.js Facebook created React.js in 2011 for their use. As you know, Facebook is one of the biggest Social Networking websites in th...


138: Hoisting In JavaScript

https://blog.shams-nahid.com/hoisting-in-javascript

Hashnode - javascript (Javascript)

Overview In JavaScript, during code execution, it hoists var and function. For variable (var), it allocates memory with an undefined value and for the function, it hoists the whole function definition. Hoisting is only applicable for, Variable decla...


139: Follow the biggest names in the automotive industry and purchase products from Gulf Rubber 

https://www.bestfreewebresources.com/follow-the-biggest-names-in-the-automotive-industry-and-purchase-products-from-gulf-rubber

Best Free Web Resources (Veille)

You are the owner of a garage, which has seen a remarkable increase in trade. You are naturally thrilled with this, but it is necessitating the move to larger premises. This may be a bit of an upheaval, but it marks progress. The new place will be fitted out exactly to your requirements, to bolster […] The post Follow the biggest names in the automotive industry and purchase products from Gu [...]


140 / 146

140: Troubleshooting the Invalid protocol: localhost: Error in URL Structure

https://svdcse.xyz/troubleshooting-the-invalid-protocol-localhost-error-in-url-structure

Hashnode - javascript (Javascript)

Why this error' This message indicates that the application is attempting to connect to a service using an incorrect protocol. The protocol being used is 'localhost', which is not a valid protocol. This error can occur if the URL or connection string...


141: Authentication Error: Solving the 'MongoServerError: bad auth : authentication failed' Issue

https://svdcse.xyz/authentication-error-solving-the-mongoservererror-bad-auth-authentication-failed-issue

Hashnode - javascript (Javascript)

This error message is indicating that there was a problem with the authentication credentials provided when attempting to connect to a MongoDB server. This could mean that the username or password provided is incorrect, or that the user does not have...


142: Mastering Django: A Beginner's Guide to Building Powerful Websites with Python and Django

https://devread.hashnode.dev/mastering-django-a-beginners-guide-to-building-powerful-websites-with-python-and-django

Hashnode - python (python)

Django for Beginners: Build websites with Python and Django is a comprehensive guide for anyone looking to learn the popular web framework, Django. Written by William S. Vincent, an experienced software developer and author, the book is perfect for b...


143: Introduction of JavaScript and Data Types.

https://soumyar.dev/introduction-of-javascript-and-data-types

Hashnode - javascript (Javascript)

JavaScript was developed by Brendan Eich in 1995, who was a Netscape programmer. At the time of its launch, JavaScript was initially called Mocha. Then it was called Live Script and later it is known as JavaScript. JavaScript is full pledged programm...


144: Dark Mode Toggle ''

https://mihirchhatre.hashnode.dev/dark-mode-toggle

Hashnode - javascript (Javascript)

I have always been intrigued by how a simple dark mode can enhance a user interaction experience. To kick off my creative coding journey, I designed the widely used dark-mode toggle. Let's get building '' Here's how the toggle would work -> https://...


145: Virtual Environments

https://levintech.hashnode.dev/virtual-environments

Hashnode - python (python)

Motivation The Python ecosystem offers many methods of installing and managing packages. You can simply download and extract code to your project directory, use the package manager from your operating system, or use a tool such as pip to install a pa...




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