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

« Mars 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 20 Mars 2023 (140)

1: What is yarn

https://phdev.dev/what-is-yarn

Hashnode - javascript (Javascript)

Yarn Package Manager. '' What is yarn Yarn is a package manager for JavaScript that was developed by Facebook. It allows developers to manage dependencies and package installations in their projects, and is often used in conjunction with popular Java...


2: print() Tips for Python Developers

https://estefaniacn.hashnode.dev/print-tips-for-python-developers

Hashnode - python (python)

' Tip #1: How to Print Without a New Line In Python, when we call the print() function multiple times to print multiple values in the terminal or the shell, like in this example: print("Hello") print("World") We will usually see something like this...


3: JS Engine EXPOSED ' Google's V8 Architecture '

https://dailylearn.hashnode.dev/js-engine-exposed-googles-v8-architecture

Hashnode - javascript (Javascript)

In this blog, we are going to learn about JS Engine and how amazing stuff it does for us in the background but before that, we need to learn a little bit about JRE(Javascript runtime environment). So JRE is an environment where you have everything to...


4: Kotlin's OOP: A Comprehensive Guide

https://rafiulhasan.rocks/kotlins-oop-a-comprehensive-guide

Hashnode - Kotlin (Mobiles)

If you have the basic knowledge of OOP then you are good to go with this article. Classes Class keyword is used to define classes. Class properties and member functions are declared like this. This class has no constructor so it calls the default con...


5: How to setup Scrapy for web scraping in python

https://azeemwaqar.hashnode.dev/how-to-setup-scrapy-for-web-scraping-in-python-1

Hashnode - python (python)

Scrapy is an open-source web crawling framework written in Python. It is designed to help developers scrape and extract data from websites in a structured and organized way. Scrapy allows developers to write code that automates the process of navigat...


6: Basics of HTML

https://durga-prasad.hashnode.dev/basics-of-html

Hashnode - javascript (Javascript)

What is HTML' HTML stands for HyperText Markup Language. It is used to design web pages using the markup language. HTML is a combination of Hypertext and Markup language. Hypertext defines the link between the web pages and markup language defines th...


7: Marre du wokisme de ChatGPT ' Voici comment activer Dan, la version non-censurée

https://www.lebigdata.fr/chatgpt-dan

Le Big Data (dataviz)

DAN est la version non censurée de ChatGPT, libérée des règles imposées par OpenAI pour l'empêcher de produire du contenu … Cet article Marre du wokisme de ChatGPT ' Voici comment activer Dan, la version non-censurée a été publié sur LeBigData.fr.


8: Comment réaliser des data visualisations avec Matplotlib '

https://www.lebigdata.fr/dataviz-matplotlib

Le Big Data (dataviz)

La Data Visualisation est une composante essentielle de la Data Science. Les techniques de visualisation de données sont employées pour … Cet article <strong>Comment réaliser des data visualisations avec Matplotlib '</strong> a été publié sur LeBigData.fr.


9: The Ultimate Guide to Default Values in JavaScript: || and '' Operators Explained

https://phillcode.io/the-ultimate-guide-to-default-values-in-javascript-and-operators-explained

Hashnode - javascript (Javascript)

One of the most common tasks in JavaScript is providing default values for variables that may be falsy or nullish. Two operators that are commonly used for this are the logical OR (||) and the nullish coalescing ('') operators, but they definetely ar...


10 / 140

10: DevOps(Day-13) : Introducing Python

https://bandandevopsjourney.hashnode.dev/devopsday-13-introducing-python

Hashnode - python (python)

Python It is an open-source high-level language with embedded Object-oriented programming. Any Idea who is the brain behind this' Python was conceived in the late 1980s by Guido van Rossum at Centrum Wiskunde & Informatica (CWI) in the Netherlands. ...


11: The End of Front-End Development

https://www.joshwcomeau.com/blog/the-end-of-frontend-development/

Josh W Comeau (Javascript / CSS)

Large language models like GPT-4 are becoming increasingly capable, at an alarming rate. Within a couple of years, we won't need developers any more! 'Or at least, that's the narrative going viral on Twitter. I'm much more optimistic about what these AI advancements mean for the future of software development.


13: Optimistic and Pessimistic UI Rendering

https://manishkc.hashnode.dev/optimistic-and-pessimistic-ui-rendering

Hashnode - javascript (Javascript)

In our current technological phase, speed is no longer a feature but a requirement. Developers know Longer wait times lead to users experiencing negative feelings and the impression that the website or app is unreliable. Hence, the chances of losing ...


14: Why do we start larning a programming language with 'HEllO World!

https://sneha-the-developer.hashnode.dev/why-do-we-start-larning-a-programming-language-with-hello-world

Hashnode - javascript (Javascript)

"Hello, World!" programs are often the first a student learns to write in a given language, and they can also be used as a sanity check to ensure computer software intended to compile or run source code is correctly installed, and that its operator u...


15: Arrays in JavaScript: A Cheat sheet for a developer

https://manishkc.hashnode.dev/arrays-in-javascript-a-cheat-sheet-for-a-developer

Hashnode - javascript (Javascript)

In JavaScript, an array is a collection of values or elements, stored in a single variable. Arrays can hold values of any data type, including numbers, strings, booleans, and objects. const fruits = ["mango","orange","peach","apple"]; Here, fruits i...


16: Le botnet HinataBot capable d'attaques DDoS de 3,3 Tbit/s

https://www.lemondeinformatique.fr/actualites/lire-le-botnet-hinatabot-capable-d-attaques-ddos-de-3-3-tbit-s-89887.html

Le monde informatique (Internet / Informatique)

Le dernier botnet identifié par l'équipe SIRT (Security Intelligence Response Team) d'Akamai début 2023 via leur honeypot HTTP et (...)


17: Debounce Input in React

https://manishkc.hashnode.dev/debounce-input-in-react

Hashnode - javascript (Javascript)

Debouncing an input is a technique used to improve web application performance and user experience. When a user types into an input field, the application may perform several operations, such as filtering a list, fetching data from an API, or perform...


18: Dart Basic

https://manape.hashnode.dev/dart-basic

Hashnode - Flutter (Flutter)

This video for dart beginners! 1 ' Main method The main() function is a top-level function in Dart that initiates the execution of the program. It is the Dart programming language's most important and crucial feature. In a program, the main() functio...


19: Async And Defer Scripts

https://codechitra.hashnode.dev/async-and-defer-scripts

Hashnode - javascript (Javascript)

Introduction Async and Defer are boolean attributes used with script tags in HTML to load scripts efficiently. Whenever a browser loads a webpage two significant things happen behind the scenes: HTML Parsing Script Loading Further, two things in ...


20 / 140

20: Mapped: The World's Happiest Countries in 2023

https://www.visualcapitalist.com/worlds-happiest-countries-2023/

Visual Capitalist (dataviz)

Where do the happiest people on earth live' This map is a snapshot of the world's most (and least) happy countries in 2023. The post Mapped: The World’s Happiest Countries in 2023 appeared first on Visual Capitalist.


21: Understanding the Basics of ACID Principles in Database Management

https://tijan.hashnode.dev/understanding-the-basics-of-acid-principles-in-database-management

Hashnode - javascript (Javascript)

During a recent interview, I was asked if I was familiar with the term "ACID" in the context of database administration or software development. While I had heard of the term before, I was uncertain of its meaning. I provided the interviewer with a b...


22: Orange va pouvoir finaliser l'acquisition de Voo en Belgique

https://www.usine-digitale.fr/article/orange-va-pouvoir-finaliser-l-acquisition-de-voo-en-belgique.N2112981

L'usine-digitale (Informatique)

La Commission européenne a donné son feu vert au rachat du câblo-opérateur belge Voo, qui va permettre à Orange de devenir propriétaire de son réseau fixe en Wallonie et à Bruxelles.


23: 30 Best Directory WordPress Themes for 2023

https://www.wpexplorer.com/wordpress-directory-listings-themes/

WP Explorer (wordpress)

WordPress offers tons of benefits when building a website: it’s easy, user friendly, plus there are many quality themes and plugins available to add any feature imaginable. So if you want to build a set of online listings, the following list of best directory WordPress themes is full of great options to choose from. There […] The post 30 Best Directory WordPress Themes for 2023 appeare [...]


24: Options for building React Native collapsible accordions

https://blog.logrocket.com/building-react-native-collapsible-accordions/

Log Rocket blog (Web 2)

There are many options for building collapsible accordions in React Native. Learn about where and when to implement them in this tutorial. The post Options for building React Native collapsible accordions appeared first on LogRocket Blog.


25: How to draw FANELLA

https://feeds.feedblitz.com/~/732105911/0/tanglepatterns~How-to-draw-FANELLA.html

TanglePatterns (Zentangle)

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


26: HPE acquiert OpsRamp, spécialiste de l'AIOps

https://www.lemondeinformatique.fr/actualites/lire-hpe-acquiert-opsramp-specialiste-de-l-aiops-89889.html

Le monde informatique (Internet / Informatique)

Après Athonet (sur la mobilité) et Axis Security (SASE), HPE continue ses emplettes en s'emparant d'OpsRamp. Fondée (...)


27: Varda Space, la start-up qui veut fabriquer des médicaments dans l'espace

https://www.usine-digitale.fr/article/varda-space-la-start-up-qui-veut-fabriquer-des-medicaments-dans-l-espace.N2112971

L'usine-digitale (Informatique)

Varda Space, une start-up américaine spécialisée dans les mini-usines spatiales, veut faire fabriquer des médicaments dans l'espace à des robots au sein de ses laboratoires en orbite. Premier lancement prévu en juin avec Space X pour tester la viabilité de ses capsules.


28: Django or FastAPI' What to use in 2023

https://amritutsav.hashnode.dev/django-or-fastapi-what-to-use-in-2023

Hashnode - python (python)

Python has a powerful impact on the Web Development field and it has all become possible because of some of the brilliantly developed frameworks like Django, Flask, FastAPI, Bottle and Pynecone. Now, in this article, we will be comparing only Django ...


29: From Callback Hell to Promise Paradise: Learn Callbacks, Promises, and Promise API in JavaScript

https://swapn652.hashnode.dev/from-callback-hell-to-promise-paradise-learn-callbacks-promises-and-promise-api-in-javascript

Hashnode - javascript (Javascript)

To understand what is Promise API, you need to understand what are Promises in JavaScript before. If you don't know what are promises, bare with me, and I will explain them to you in simple words. To understand Promises, you need to know what are cal...


30 / 140

30: Amazon va mener une deuxième vague de licenciements : 9000 postes supprimés

https://www.usine-digitale.fr/article/amazon-va-mener-une-deuxieme-vague-de-licenciements.N2112946

L'usine-digitale (Informatique)

Lancé dans une politique de baisse des coûts, le géant du commerce en ligne va supprimer 9000 postes supplémentaires après avoir déjà licencié 18 000 personnes.


31: Responsive Navbar Implementation from Scratch

https://abhaydixit.hashnode.dev/responsive-navbar-implementation-from-scratch

Hashnode - javascript (Javascript)

implemented using styled-components | it helps us write actual CSS code in JavaScript Desktop and Tablet view Mobile view There are several components used in the code. here is the description Container : parent container of the navbar Wrapper : co...


32: Web Scraping for Beginners using Scrapy python

https://azeemwaqar.hashnode.dev/web-scraping-for-beginners-using-scrapy-python

Hashnode - python (python)

In my previous article, I talked about how to install Scrapy and create your first project. Check it out here. Project Structure So when you will create a new Scrapy project, you will see a bunch of files and folders. Let's open the project in IDE. I...


33: Le séquençage de l'ADN peut aider à prédire le risque de récidive du cancer du rein d'un patient

https://www.rtflash.fr/sequencage-l-adn-peut-aider-predire-risque-recidive-cancer-rein-d-patient/article

Tregouet.org ()

L'étude des mutations du cancer du rein après une intervention chirurgicale pourrait aider à mieux prédire le risque de récidive de la maladie, selon les derniers résultats d'une étude internationale d'une décennie. La recherche, entreprise par une équipe de 44 chercheurs dans 23 institutions à travers l'Europe et le Canada, y compris l'Université McGill, est la plus importante à lier [...]


34: Une étude démontre l'efficacité d'une stratégie associant un vaccin et un antibiotique pour prévenir plusieurs IST

https://www.rtflash.fr/etude-demontre-l-efficacite-d-strategie-associant-vaccin-et-antibiotique-pour-prevenir-plusieurs-ist/article

Tregouet.org ()

Une étude promue et financée par l'ANRS | Maladies infectieuses émergentes, en partenariat avec le laboratoire Roche, démontre l'efficacité d'une stratégie de prévention de plusieurs Infections sexuellement transmissibles (IST) en associant un vaccin et un antibiotique courant. en lire plus


35: How to setup Scrapy for web scraping in python

https://azeemwaqar.hashnode.dev/how-to-setup-scrapy-for-web-scraping-in-python

Hashnode - python (python)

Scrapy is an open-source web crawling framework written in Python. It is designed to help developers scrape and extract data from websites in a structured and organized way. Scrapy allows developers to write code that automates the process of navigat...


36: SIDA : un candidat vaccin induit des réponses immunes précoces, fortes et durables

https://www.rtflash.fr/sida-candidat-vaccin-induit-reponses-immunes-precoces-fortes-et-durables/article

Tregouet.org ()

C'est une avancée majeure dans la longue et difficile lutte contre le virus du SIDA : les premiers résultats de la phase 1 de l'essai ANRS VRI06 visant à évaluer un vaccin préventif contre le VIH montrent que le candidat, "CD40.HIVRI.Env", induit des réponses immunes précoces, fortes et durables. Il est néanmoins important de noter que l'efficacité du vaccin reste encore à démontrer, ma [...]


37: Rate limiting your Go application

https://blog.logrocket.com/rate-limiting-go-application/

Log Rocket blog (Web 2)

Explore the fundamentals of rate limiting, different types of rate limiting algorithms, and several techniques and libraries for implementing rate limiting in Go applications. The post Rate limiting your Go application appeared first on LogRocket Blog.


38: La première loi de la thermodynamique poussée dans ses derniers retranchements'

https://www.rtflash.fr/premiere-loi-thermodynamique-poussee-dans-ses-derniers-retranchements/article

Tregouet.org ()

Le premier principe de la thermodynamique stipule que lors de toute transformation dans un système en équilibre, il y a conservation de l'énergie. En d'autres termes, dans un système donné, l'énergie ne peut être ni créée ni détruite, mais peut être convertie en différentes formes. « Supposons que vous chauffiez un ballon. La première loi de la thermodynamique vous indique à qu [...]


39: Envoyer un SMS anonyme sur un téléphone Android : comment faire '

https://www.lebigdata.fr/sms-anonyme-sur-telephone-android

Le Big Data (dataviz)

Il est parfaitement possible d'envoyer un SMS anonyme et sans permettre à son destinataire de retracer sa provenance. Il suffit … Cet article <strong>Envoyer un SMS anonyme sur un téléphone Android : comment faire '</strong> a été publié sur LeBigData.fr.


40 / 140

40: Le FBI arrête le créateur d'un des plus gros forums de hackers

https://www.usine-digitale.fr/article/le-fbi-arrete-le-createur-d-un-des-plus-gros-forums-de-hackers.N2112936

L'usine-digitale (Informatique)

Lancé il y a un an, BreachForums a permis la vente ou l'échange de plus d'un millier de bases de données volées. Le forum est désormais inaccessible, mais peut-être seulement temporairement.


41: Grâce à cet affichage AR, les motards ont des yeux derrière la tête

https://www.realite-virtuelle.com/vision-180-kit-camera-bord-casques/

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

Vision 180, un kit de caméra de bord pour casques de moto, permet d'avoir des […] Cet article Grâce à cet affichage AR, les motards ont des yeux derrière la tête a été publié sur Réalité-Virtuelle.com.


42: La découverte de deux protéines pourrait révolutionner la recherche sur le vieillissement

https://www.rtflash.fr/decouverte-deux-proteines-pourrait-revolutionner-recherche-sur-vieillissement/article

Tregouet.org ()

Les télomères, ces régions qui se trouvent à l'extrémité des chromosomes, et auxquelles on n'attribuait qu'une fonction protectrice du génome, viennent de voir leur statut changer. Une étude américaine relate en effet « la découverte de deux protéines qui seraient codées par des séquences se trouvant dans les télomères, dont l'une retrouvée en grande quantité dans certa [...]


43: LinkedIn veut simplifier au plus les recrutements avec l'IA

https://www.lebigdata.fr/linkedin-simplifie-recrutements-avec-lia

Le Big Data (dataviz)

LinkedIn s'approprie aussi les capacités de l'IA en l'utilisant pour dépasser les difficultés du recrutement sur sa plateforme. LinkedIn semble … Cet article LinkedIn veut simplifier au plus les recrutements avec l'IA a été publié sur LeBigData.fr.


44: Top des sites les plus dangereux à éviter en ligne

https://www.lebigdata.fr/site-dangeureux-a-eviter

Le Big Data (dataviz)

Lorsque vous naviguez sur Internet, vous devez toujours être conscient des risques liés à l’accès à certains types de sites. … Cet article Top des sites les plus dangereux à éviter en ligne a été publié sur LeBigData.fr.


45: Exploring .append() and .extend() methods for 'list' datatype in Python.

https://bhushanhn.hashnode.dev/exploring-append-and-extend-methods-for-list-datatype-in-python

Hashnode - python (python)

.append(x): If we want to update a list in python by populating elements after the last existing element then the .append(x) method is useful. Here, x is the element which is passed as an argument to the append method which will get appende...


46: Ce célèbre jeu de tir tactique inspiré de « Rainbow Six Siege » sort en avril

https://www.realite-virtuelle.com/jeu-de-tir-tactique-breachers-sort-en-avril/

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

Triangle Factory, le développeur derrière le très connu jeu VR Hyper Dash, a annoncé la […] Cet article Ce célèbre jeu de tir tactique inspiré de « Rainbow Six Siege » sort en avril a été publié sur Réalité-Virtuelle.com.


47: Template Strings: Some Risks and How to Fix 'em

https://jcdev.com/template-strings-some-risks-and-how-to-fix-em

Hashnode - javascript (Javascript)

Template strings are a useful feature in JavaScript that allows you to generate strings with dynamic content. However, when generating HTML code dynamically using template strings, there is a risk of introducing security vulnerabilities such as cross...


48: Un plan de départ de 700 personnes attendu chez Orange Business

https://www.lemondeinformatique.fr/actualites/lire-un-plan-de-depart-de-700-personnes-attendu-chez-orange-business-89885.html

Le monde informatique (Internet / Informatique)

Plombée par des résultats financiers décevants, Orange Business, ex-Orange Business Services, envisage de supprimer près de (...)


49: Write Readable Tests for Your Machine Learning Models with Behave

https://mathdatasimplified.com/2023/03/20/write-readable-tests-for-your-machine-learning-models-with-behave/

Math Data Simplified (data)

An accurate machine learning model can still cause problems if it exhibits unexpected behaviors not identified during testing. For example, a sentiment analysis model may perform well during training, but upon deploying it, the model incorrectly labels certain positive reviews as negative when rephrasing using negative words.  Testing the behaviors of an ML model can ... Read more The post Wr [...]


50 / 140

50: Python Programming: The Perfect Solution for the Anagram Problem

https://brainzcode.hashnode.dev/python-programming-the-perfect-solution-for-the-anagram-problem

Hashnode - python (python)

Introduction Anagrams are words or phrases that are formed by rearranging the letters of another word or phrase. In other words, they are two or more words made up of the same letters, but in a different order. For example, the word 'listen' is an an...


51: Front-end interview experience with zepto

https://shbhuvnesh.hashnode.dev/front-end-interview-experience-with-zepto

Hashnode - javascript (Javascript)

Recently I gave an interview at Zepto for front end developer role and Interviewer asked me questions related to coding, an In-depth discussion on core javascript concepts, and then a question related to React and optimizations. So Let's discuss the ...


52: Bing adds Bing Chat answers to search results

https://searchengineland.com/bing-adds-bing-chat-answers-to-search-results-394524

Search engine land (Référencement)

We are now seeing Bing Chat answers in the Bing Search results, in place of Bing Search Answers. The post Bing adds Bing Chat answers to search results appeared first on Search Engine Land.


53: Which is more worthwhile, TypeScript or JavaScript' (2023)'

https://makerspace.hashnode.dev/typescript-vs-javascript

Hashnode - javascript (Javascript)

JavaScript and TypeScript are two scripting languages that can put you in a bind because of their compact differences. Originally developed as a client-side programming language, JavaScript eventually became a server-side programming language. IT ser...


54: ChatGPT : les investissements IT hors normes de Microsoft dans Azure

https://www.lemondeinformatique.fr/actualites/lire-chatgpt-les-investissements-it-hors-normes-de-microsoft-dans-azure-89886.html

Le monde informatique (Internet / Informatique)

Les investissements de Microsoft dans ChatGPT ne concernent pas seulement OpenAI. La firme américaine a aussi dépensé énormément (...)


55: How to Recover from Merge Conflicts and Avoid Data Loss in Git

https://www.rahulbagal.software/how-to-recover-from-merge-conflicts-and-avoid-data-loss-in-git

Hashnode - javascript (Javascript)

Git is a popular version control system used by developers to manage their code. When working collaboratively on a project, it is common for multiple developers to work on the same files simultaneously. This can lead to merge conflicts, where Git is ...


56: Day 24 - Introduction to Tuples

https://codewithjain.hashnode.dev/day-24-introduction-to-tuples

Hashnode - python (python)

Introduction Welcome to my 24th blog post. Today I learned about 'Tuples' in python. Tuple is an interesting datatype that is unmutable but performs similar functions to lists. Now let's dive deep into the details of tuples and its methods for a bett...


57: La suite Microsoft 365 menacée par une vulnérabilité. Comment s'en protéger '

https://www.lebigdata.fr/vulnerabilite-microsoft-36

Le Big Data (dataviz)

Les chercheurs du CERT ukrainien, de Microsoft Incident Response et de Microsoft Threat Intelligence ont découverts une grave vulnérabilité dans … Cet article La suite Microsoft 365 menacée par une vulnérabilité. Comment s’en protéger ' a été publié sur LeBigData.fr.


58: Kotlin is `fun` - extension functions

https://blog.derlin.ch/kotlin-is-fun-extension-functions

Hashnode - Kotlin (Mobiles)

Kotlin provides the ability to extend a class or an interface with new functionality without having to inherit from the class or use design patterns such as Decorator. This is done via special declarations called extensions. For example, it is possib...


59: What is affinity grouping' Definition, examples, and how-to

https://blog.logrocket.com/product-management/affinity-grouping-definition-examples/

Log Rocket blog (Web 2)

In this article, we introduce the affinity grouping method. We share tools and best practices and examine how you can integrate analytics. The post What is affinity grouping' Definition, examples, and how-to appeared first on LogRocket Blog.


60 / 140

60: Debugging GraphQL APIs with Insomnia

https://blog.logrocket.com/debugging-graphql-apis-insomnia/

Log Rocket blog (Web 2)

Insomnia is an API client for designing, debugging, and testing APIs. In this article, we'll learn how to debug GraphQL APIs using Insomnia. The post Debugging GraphQL APIs with Insomnia appeared first on LogRocket Blog.


61: What are sprint goals' Why you need them and how to write them

https://blog.logrocket.com/product-management/sprint-goal-definition-purpose-how-to/

Log Rocket blog (Web 2)

Although selecting tickets for the next sprint constitutes a vast majority of planning, there are a few ways framing sprint goals brings value to the team. The post What are sprint goals' Why you need them and how to write them appeared first on LogRocket Blog.


62: PPC is a tough game ' you have to accept it

https://searchengineland.com/ppc-tough-game-394477

Search engine land (Référencement)

Understanding how diminishing returns apply to paid search will help you set better expectations when assessing your PPC performance. The post PPC is a tough game ' you have to accept it appeared first on Search Engine Land.


63: Top des meilleurs mangas sur le VR MMO

https://www.realite-virtuelle.com/top-mangas-vr-mmo/

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

Cet article vous fait découvrir une sélection des meilleurs mangas sur le thème des jeux […] Cet article Top des meilleurs mangas sur le VR MMO a été publié sur Réalité-Virtuelle.com.


64: Passwordless authentication : tout savoir sur cette méthode de sécurisation innovante

https://www.lebigdata.fr/passwordless-authentification-tout-savoir

Le Big Data (dataviz)

Finis les mots de passe fastidieux et difficiles à retenir grâce à la Passwordless authentification ! Ce système révolutionnaire réduit … Cet article Passwordless authentication : tout savoir sur cette méthode de sécurisation innovante a été publié sur LeBigData.fr.


65: Python and Polars an Introduction

https://lucasbarret.hashnode.dev/python-and-polars-an-introduction

Hashnode - python (python)

Introduction Sometimes you reach a point where you connect dots between different things. Indeed I am currently digging into SQL, and for each new concept that I learned I tried to illustrate it with a ruby project. Here is the thing, I love ruby it ...


66: Meta : le géant de la technologie se rétrécit

https://www.realite-virtuelle.com/meta-se-retrecit/

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

Le géant de la technologie Meta est actuellement en train de se rétrécir. Il vient […] Cet article Meta : le géant de la technologie se rétrécit a été publié sur Réalité-Virtuelle.com.


67: Say Hi to Guillermina

https://blog.datawrapper.de/guillermina-sutter-schneider-datawrapper-new-hire/

Data Wrapper ()

At Datawrapper, we’re always looking for new ways to help you create better data visualizations....


68: The Importance of Data Mutability in Flutter Development

https://gayathridevisrinivasan.hashnode.dev/the-importance-of-data-mutability-in-flutter-development

Hashnode - Flutter (Flutter)

What is Data Mutable' Data mutable refers to the ability to change the state of an object. In Flutter, a data class is considered mutable if it allows for changes to its properties after it has been initialized. A mutable data class is used when the ...


69: Quelle application pour suivre une personne '

https://www.lebigdata.fr/application-suivre-personne

Le Big Data (dataviz)

Utiliser une application de géolocalisation d'un téléphone est certainement la meilleure réponse à la question : « comment suivre une … Cet article Quelle application pour suivre une personne ' a été publié sur LeBigData.fr.


70 / 140

70: 8 important content strategy goals to consider

https://searchengineland.com/content-strategy-goals-394472

Search engine land (Référencement)

Want to grow your brand with content marketing' Consider a variety of audience-building and action-oriented goals in your content strategy. The post 8 important content strategy goals to consider appeared first on Search Engine Land.


71: Safer Onboarding Doesn't Have to Involve Friction

https://www.noupe.com/business-online/safer-onboarding-doesnt-have-to-involve-friction.html

Noupe (conception)

Signup and onboarding are important to get right whether you're a SaaS or online business ' while many of your customers registering with you will be genuine, some accounts will be made by fraudsters. While you want to stop these users from registering with you, deep customer vetting during the onboarding process can cause user... The post Safer Onboarding Doesn’t Have to Involve [...]


72: Locomotion: First Week

https://blog.illestpreacha.com/locomotion-first-week

Hashnode - javascript (Javascript)

After taking in information from the gathering: Ready Avatar One, Coding with Locomotion was on my list and thinking about how I can integrate this with my current workflows. The results are shown below as I managed to combine Locomotion with other l...


73: Microsoft voit le Digital Markets Act comme un appui pour son projet d'app store Xbox

https://www.usine-digitale.fr/article/microsoft-voit-le-digital-markets-act-comme-une-opportunite-pour-appuyer-son-projet-d-app-store-xbox.N2112876

L'usine-digitale (Informatique)

Microsoft compte sur le Digital Markets Act pour pousser son projet de création d'une boutique de jeux mobiles Xbox, qui pourrait constituer une alternative aux App Store et Play Store se partageant pour l'heure le marché.


74: Developer Productivity and The Definition of Developer Happiness

https://tympanus.net/codrops/2023/03/20/developer-productivity-and-the-definition-of-developer-happiness/

Codrops (Design / Internet)

This article provides tips to help developers increase productivity and explores the definition of developer happiness through a survey conducted by the Developer Nation community.


75: Top 10 Python Development Companies

https://mukeshram.hashnode.dev/top-10-python-development-companies

Hashnode - python (python)

Information Python is a high-level, interpreted programming language first released in 1991. Guido van Rossum created it, and its design philosophy emphasizes code readability and simplicity. Python supports multiple programming paradigms, including ...


76: JavaScript Basic Part-1

https://manape.hashnode.dev/javascript-basic-part-1

Hashnode - javascript (Javascript)

(this article series for new JavaScript learners) Article no ' 1 This article series depend with A Smarter Way to Learn JavaScript Book. /* You can use jsfiddle or codepen for practice javascript it is very easy way for it. */ 1 ' Alerts 1.1 picture...


77: Angular and Zone.js

https://blog.mihaioltean.com/angular-and-zonejs

Hashnode - javascript (Javascript)

If you're a fan of Andrey Tarkovsky's movie, Stalker, you'll probably know that The Zone could be a fortune but also a terror. The funny thing, the same happens with Zone.js and Angular. The motivation behind this article The motivation for this arti...


78: Le FBI arrête l'administrateur présumé de BreachForum

https://www.lemondeinformatique.fr/actualites/lire-le-fbi-arrete-l-administrateur-presume-de-breachforum-89881.html

Le monde informatique (Internet / Informatique)

Un an après l'action coordonnée entre Europol et le FBI pour faire tomber le site de ventes de données piratées RaidForums, (...)


79: Amazon May Be Working On An AI-Powered Web Browser

https://www.webpronews.com/amazon-may-be-working-on-an-ai-powered-web-browser/

WebProNews SEO (Développement)

Amazon may be looking to disrupt the web browser market with an AI-powered entry in what could be a major threat to established players.


80 / 140

80: Week 1: Setup and LEDs

https://embedded-notes.hashnode.dev/week-1-setup-and-leds

Hashnode - python (python)

Introduction This week, I read the first 80 pages of Practical Python Programming for IoT while programming along. The following is a journal summarizing what I learned, without going into much detail. Setting Up and Getting Started Practical Python ...


81: Python's Debugger: Python's Most Powerful Bug-Identifying Tool.

https://chizobaonorh.hashnode.dev/pythons-debugger-pythons-most-powerful-bug-identifying-tool

Hashnode - javascript (Javascript)

"It is every programmer's nightmare and hidden guilty pleasure; the bug that lies in our code, lurking and chipping away at the expected output of our program." excerpts from ermmm'.me! https://media.giphy.com/media/jShr8wkP38XTO/giphy.gif Oh, Damn...


82: Understanding Ellipsis in Python

https://julienawon.hashnode.dev/understanding-ellipsis-in-python

Hashnode - python (python)

As a Python developer, you may have come across the ellipsis (...) symbol and wondered what it means. In Python, an ellipsis is a built-in constant that represents a placeholder for code that you will add later. This constant is used in a variety of ...


83: Bpifrance lance un diagnostic de cybersécurité pour les PME

https://www.usine-digitale.fr/article/bpifrance-lance-un-diagnostic-sur-la-cybersecurite-pour-les-pme.N2112861

L'usine-digitale (Informatique)

Ce diagnostic, dont le coût est pris en charge à 50% par la banque publique d'investissement, doit permettre aux petites entreprises d'identifier leurs vulnérabilités face aux attaques.


84: How to create a password generator using JavaScript(Node.js)'

https://blog.bigyandahal.com/how-to-create-a-password-generator-using-javascriptnodejs

Hashnode - javascript (Javascript)

Security is the most important thing these days. Even though the applications have been more secure than ever before, the passwords being used are mostly the same, and easily guessable. Like, password, 12345678, joe1996 and so on. So, here is the way...


85: Signature Bank trouve un repreneur, mais pas pour les dépôts en cryptomonnaies

https://www.usine-digitale.fr/article/signature-bank-trouve-un-repreneur-mais-pas-pour-les-depots-en-cryptomonnaies.N2112846

L'usine-digitale (Informatique)

Flagstar Bank va reprendre une partie des dépôts et des actifs de la banque new yorkaise Signature Bank, fermée par les autorités américaines le 12 mars. 4 milliards de dollars de cryptomonnaies seront en revanche restitués directement à leurs propriétaires.


86: Bing GPT-4 : une nouvelle option pour partager les réponses du chatbot

https://www.blogdumoderateur.com/bing-gpt-4-nouvelle-option-partager-reponses-chatbot/

Blog du Moderateur ()

Les réponses du nouveau Bing pourront être partagées sur Facebook, Twitter et Pinterest, ou par mail.


87: Day 8 : Basic Git & GitHub for DevOps Engineers.

https://devops-rohit.hashnode.dev/day-8-basic-git-github-for-devops-engineers

Hashnode - python (python)

It's #day8 of the #90daysofdevops Challenge under the guidance of Shubham Londhe Sir.Here I have completed the task related to Git & GitHub. Day 8 Tasks : What is Git' Git is a version control system that allows you to track changes to files and co...


88: Dell pousse une offre bare metal avec Cyxtera

https://www.lemondeinformatique.fr/actualites/lire-dell-pousse-une-offre-bare-metal-avec-cyxtera-89882.html

Le monde informatique (Internet / Informatique)

Un accord entre Dell et Cyxtera permettra aux entreprises d'accéder aux serveurs PowerEdge pour des déploiements bare metal dans les datacenters (...)


89: Twitter : fin de la double authentification gratuite par SMS, comment sécuriser son compte '

https://www.blogdumoderateur.com/twitter-fin-double-authentification-gratuite-par-sms/

Blog du Moderateur ()

Sur Twitter, vous ne pourrez plus utiliser gratuitement l'authentification à deux facteurs par SMS. Alors que faire ' On fait le point !


90 / 140

90: Face à la gronde, Docker justifie la fin de Free Teams

https://www.lemondeinformatique.fr/actualites/lire-face-a-la-gronde-docker-justifie-la-fin-de-free-teams-89884.html

Le monde informatique (Internet / Informatique)

Explication de texte pour Docker qui s'est retrouvé en fin de semaine dernière au c'ur d'une polémique suite à (...)


91: Ancien client de SVB, Rippling boucle un tour de table express à 500 M$

https://www.lemondeinformatique.fr/actualites/lire-ancien-client-de-svb-rippling-boucle-un-tour-de-table-express-a-500-m%24-89883.html

Le monde informatique (Internet / Informatique)

Rippling revient de loin. La jeune pousse californienne a en effet subi l'effondrement de la Silicon Valley Bank de plein fouet. « Il (...)


92: Pass by Value vs Pass by Reference

https://blog.musfiqdehan.me/pass-by-value-vs-pass-by-reference

Hashnode - javascript (Javascript)

In computer programming, when a piece of data is passed to a function or method, there are two main ways in which it can be passed: pass by value and pass by reference. Pass by Value In pass by value, the value of the argument is passed to the functi...


93: From Dagger & Hilt into the multiplatform world with kotlin-inject

https://klima.hashnode.dev/from-dagger-hilt-into-the-multiplatform-world-with-kotlin-inject

Hashnode - Kotlin (Mobiles)

We've been taking advantage of Kotlin Multiplatform at Klima for a while, but it's the first time we're embracing KMM as much as we are right now while we build our brand new app: ' Planet Wild. We went with a monorepo from the start for our apps (A...


94: JavaScript Engines Performance

https://kogoshvili.hashnode.dev/javascript-engines-performance

Hashnode - javascript (Javascript)

As you may already know Javascript is a Just-In-Time (JIT) compiled language, which means that the code is compiled at runtime, rather than being compiled ahead of time. This makes JavaScript highly flexible. However, this has the side effect of plac...


95: Understanding the Differences: Object Dot Notation vs Bracket Notation in JavaScript

https://himanshusingla.hashnode.dev/dot-notation-vs-bracket-notation-in-javascript

Hashnode - javascript (Javascript)

Introduction In JavaScript, objects are a critical aspect of the language as they allow for the creation of complex data structures. Accessing and manipulating properties of objects is essential, and there are two ways to do this - dot notation and b...


96: Orange Business tablerait sur 700 suppressions de postes

https://www.usine-digitale.fr/article/orange-business-tablerait-sur-700-suppressions-de-postes.N2112806

L'usine-digitale (Informatique)

Dans le cadre de sa restructuration, qui doit l'amener à retrouver le chemin de la rentabilité en 2025, la branche entreprises d'Orange s'apprêterait à présenter un projet de rupture conventionnelle collective concernant 700 emplois.


97: How to load different .env files with dotenv

https://hashnode.devist.xyz/how-to-load-different-env-files-with-dotenv

Hashnode - javascript (Javascript)

Introduction An Environment file (.env file) is a sustainable way to store environment variables while in development. With the help of the dotenv package, we can easily load those environment variables into our app which need them. But sometimes we ...


98: How to load different .env files with dotenv the correct way

https://hashnode.devist.xyz/how-to-load-different-env-files-with-dotenv-the-correct-way

Hashnode - javascript (Javascript)

Introduction An Environment file (.env file) is a sustainable way to store environment variables while in development. With the help of the dotenv package, we can easily load those environment variables into our app which need them. But sometimes we ...


99: Variables in Postman

https://aljozy.hashnode.dev/variables-in-postman

Hashnode - javascript (Javascript)

A variable is a memory space in which we can store data and used it at any point in time when needed. In Postman, a variable can be declared by the following scopes: Global variables enable you to access data between collections, requests, test scri...


100 / 140

100: Intelligence artificielle : Nous n'avons pas besoin de plus de contenus, mais de meilleures analyses

https://fredcavazza.net/2023/03/20/intelligence-artificielle-nous-navons-pas-besoin-de-plus-de-contenus-mais-de-meilleures-analyses/

Cavazza, Fred (Internet / Web 2)

Avec la sortie de GPT-4, la ferveur médiatique autour des IA génératives atteint des sommets. Présentés comme la solution miracle à tous nos problèmes, les modèles génératifs nourrissent tous les fantasmes des techno-utopistes et “experts en IA” de Twitter. Pourtant ils ne résolvent en rien les problèmes des entreprises (cloisonnement des données et connaissances, système [...]


101: This keyword in javascript'

https://hiteshmishra.hashnode.dev/this-keyword-in-javascript

Hashnode - javascript (Javascript)

The this keyword in JavaScript refers to the context in which a function is executed. The value of this can be different in different situations, such as global context, object context, constructor context, explicit binding, and arrow functions. Unde...


102: Webinar : se former en marketing et communication dans l'art et la culture

https://www.blogdumoderateur.com/webinar-se-former-marketing-communication-art-culture/

Blog du Moderateur ()

Participez au prochain webinar de l'EFAP, lundi 27 mars à 12h30, pour tout savoir sur l'écosystème digital dans le secteur de l'art et de la culture, et les opportunités d'emploi !


103: Free Fonts For Interface Designers

https://smashingmagazine.com/2023/03/free-fonts-interface-designers/

Smashing magazine (CSS / Web 2)

Just a few beautiful, well-crafted fonts for headings and body text that you probably haven't spotted before. Free for personal and commercial use. Enjoy!


104: Comment activer la double authentification sur tous vos réseaux sociaux

https://www.blogdumoderateur.com/comment-activer-double-authentification-sur-reseaux-sociaux/

Blog du Moderateur ()

Découvrez comment sécuriser vos comptes facilement sur Instagram, Facebook, Twitter, TikTok, YouTube et Snapchat.


105: JavaScript Arithmetic Operators

https://lukechidubem.hashnode.dev/javascript-arithmetic-operators

Hashnode - javascript (Javascript)

Arithmetic operators are used in JavaScript to perform arithmetic operations on values, such as addition, subtraction, multiplication, and division. Here are some examples: 1) Addition (+): This operator is used to add two or more values together. Fo...


106: Customer Effort Score : définition, avantages et méthodes de calcul du CES

https://www.blogdumoderateur.com/customer-effort-score-definition-avantages-calcul/

Blog du Moderateur ()

Tout savoir sur le CES, un indicateur indispensable de la satisfaction client.


107: Avant les Jeux olympiques, la Cnil va contrôler l'utilisation de caméras "augmentées"

https://www.usine-digitale.fr/article/avec-les-jeux-olympiques-la-cnil-va-controler-l-utilisation-des-cameras-augmentees.N2112791

L'usine-digitale (Informatique)

Ces caméras "intelligentes", capables d'analyser des flux d'images pour détecter des mouvements suspects, font partie des priorités de contrôle de la Cnil pour 2023. Les données de santé et le traçage publicitaire sur les applications mobiles figurent également au menu.


108: jQuery

https://dithnim63.hashnode.dev/jquery

Hashnode - javascript (Javascript)

Recently I started to learn jQuery.jQuery is a lightweight javascript library. You can use it online or offline. I used Google CDN for my projects. Many users already have downloaded jQuery from Google when visiting another site. As a result, it will...


109: 10 Ways Cloud HR Software Can Improve the Workplace

https://www.noupe.com/business-online/ways-cloud-hr-software-can-improve-the-workplace.html

Noupe (conception)

Human Resources are no longer restricted to the back-office, juggling piles upon piles of paperwork. The internet and modern technology have made HR a tech-savvy department. They can use cloud-based HR Software to manage time, hire, offboard, and manage time. Human resources departments are often a hub of activity. Cloud HR software has made it... The post 10 Ways Cloud HR Software Can [...]


110 / 140

110: When spring is coming where you live

https://flowingdata.com/2023/03/20/when-spring-is-coming-where-you-live/

Flowing data (dataviz)

Going off the calendar, today is the first day of spring, but nature…Tags: spring, Washington Post, weather


111: Comment le Miracle Morning a changé ma vie : ma routine matinale pour une journée réussie ' ' '

https://freelanceboost.fr/comment-le-miracle-morning-a-change-ma-vie-ma-routine-matinale-pour-une-journee-reussie/

Freelance Boost (Entreprise)

J’ai longtemps cherché un moment dans la journée pour accomplir toutes les activités que je voulais pour moi-même. Pendant des mois, j’ai essayé différentes méthodes pour faire du sport, prier, méditer et lire. Cependant, je n’arrivais jamais à trouver un horaire qui conviendrait à toutes mes activités.Comme rien n'était fixe, j’ai souvent sauté des activités, [...]


112: Sous pression, les professionnels de la cybersécurité envisagent une reconversion

https://www.lemondeinformatique.fr/actualites/lire-sous-pression-les-professionnels-de-la-cybersecurite-envisagent-une-reconversion-89870.html

Le monde informatique (Internet / Informatique)

Selon une récente prévision du Gartner, près d'un responsable de la cybersécurité sur deux pourrait changer de poste (...)


113: Les meilleures pratiques pour négocier efficacement avec les fournisseurs

https://www.lemondeinformatique.fr/actualites/lire-les-meilleures-pratiques-pour-negocier-efficacement-avec-les-fournisseurs-89871.html

Le monde informatique (Internet / Informatique)

Dans un marché IT marqué par les turbulences, l'inflation et l'incertitude économique, le processus de contractualisation avec les (...)


114: La start-up Electra s'appuie sur son SI pour assurer sa croissance

https://www.lemondeinformatique.fr/actualites/lire-la-start-up-electra-s-appuie-sur-son-si-pour-assurer-sa-croissance-89869.html

Le monde informatique (Internet / Informatique)

En février 2023, Electra, opérateur de stations de recharge rapide pour les véhicules électriques qui a levé 160 M' (...)


115: Palo Alto renforce la prise en charge de l'IA dans les produits SASE et SD-WAN

https://www.lemondeinformatique.fr/actualites/lire-palo-alto-renforce-la-prise-en-charge-de-l-ia-dans-les-produits-sase-et-sd-wan-89880.html

Le monde informatique (Internet / Informatique)

Afin d'aider les entreprises à rationaliser les opérations réseau et à mieux sécuriser les ressources WAN distribuées, (...)


116: Set in JavaScript,

https://sbsidd17.hashnode.dev/set-in-javascript

Hashnode - javascript (Javascript)

In JavaScript, a set is a built-in object that allows you to store a collection of unique values. The Set object is similar to an array, but unlike an array, it can only contain unique values. In other words, you can't have two elements with the same...


117: 5 Proven Methods to Optimize Retail Store Operations

https://www.noupe.com/business-online/proven-methods-to-optimize-retail-store-operations.html

Noupe (conception)

Ensuring the store is functioning is essential, but more is needed to remain competitive in today’s market. Therefore, you should optimize every aspect of your business to stay ahead of the competition. One key area to focus on is optimizing retail store operations.  By streamlining processes and fine-tuning strategies, you can save time and money.... The post 5 Proven Metho [...]


118: Freeform la nouvelle application made in Apple

https://macternelle.fr/2023/03/20/freeform-la-nouvelle-application-made-in-apple/

Macternelle (enfant / Formation)

Apple a lancé une toute nouvelle récemment une nouvelle application : Freeform disponible sur iOS 16.2, iPadOS 16.2 et macOS 13.1. Il s'agit d'une 'toile flexible' que vous pouvez utiliser pour faire à peu près tout ce que vous voulez. L'accent est mis sur le partage et la collaboration, mais vous pouvez utiliser Freeform, un tableau … Lire la suite Freeform la nouvelle application made [...]


119: Introduction to CSS

https://mojtabamaleki.hashnode.dev/introduction-to-css

Hashnode - javascript (Javascript)

Welcome to my weekly blog about Cascading Style Sheets (CSS). I know, I know, it's not the most exciting topic, but I'm here to make it fun! So grab a cup of coffee and get ready to learn some CSS -- and hopefully have a few laughs along the way! Wha...


120 / 140

120: Microsoft Bing utilise GPT-4 d'Open AI (depuis plusieurs semaines)

https://www.abondance.com/20230320-52310-microsoft-bing-utilise-gpt-4-dopen-ai-depuis-plusieurs-semaines.html

Abondance (Référencement)

La révélation est tombée le 14 mars dernier. En toute décontraction, le vice-président de Microsoft Yusuf Mehdi a annoncé sur le blog de Bing que la nouvelle version du moteur de recherche du géant de Redmond tournait sur GPT-4' depuis 5 semaines. Les 3 principales infos à retenir : Une annonce qui en cachait une autre […] L'article "Microsoft Bing utilise GPT-4 d'Open AI (depuis pl [...]


121: Comment créer un fil d'Ariane sur WordPress '

https://wpmarmite.com/fil-ariane-wordpress/

WP Marmite (wordpress)

Lorsqu'on navigue sur un site web, il arrive de se sentir comme le Petit Poucet et ses frères : complètement perdu. On arrive sur une page, depuis un moteur de recherche ou un réseau social et il nous est impossible de... Comment créer un fil d'Ariane sur WordPress ' est un article de WPMarmite, le blog qui vous aide à tirer le meilleur de WordPress.


122: 4 Best LinkedIn Productivity Tools in 2023

https://www.noupe.com/business-online/best-linkedin-productivity-tools.html

Noupe (conception)

In today’s highly competitive job market, being productive on LinkedIn is more important than ever. Whether you’re looking for new job opportunities, networking with other professionals, or building your personal brand, using LinkedIn productively can help you achieve your career goals. In this article, we will explore the four best LinkedIn productivity tools that you... T [...]


123: Top 15 AWS Services that Every DevOps Engineers should learn

https://sumanprasad.hashnode.dev/top-15-aws-services-that-every-devops-engineers-should-learn

Hashnode - python (python)

' Introduction: As cloud computing continues to dominate the technology landscape, AWS has become one of the most popular cloud providers in the world. DevOps engineers play a crucial role in managing and deploying applications on AWS, and there are...


124: Understanding the Different Variable Declarations in JavaScript: var, let, and const

https://manishsahani.hashnode.dev/understanding-the-different-variable-declarations-in-javascript-var-let-and-const

Hashnode - javascript (Javascript)

In JavaScript, variables are declared using the var, let, and const keywords. Each of these keywords has its own unique characteristics that determine how the variable can be used in the code. One of the main differences between these three keywords ...


125: Firebase OTP Authentication with Flutter

https://solitrix02.hashnode.dev/firebase-otp-authentication-with-flutter

Hashnode - Flutter (Flutter)

Hello fellow developers, in this blog I am going through the steps on how to integrate Firebase Authentication with a Flutter app. Flutter is a cross-platform mobile application development framework that provides you with an easy syntax in the form ...


126: Trees Data Structures with Python

https://machinesintheclouds.com/trees-data-structures-with-python

Hashnode - python (python)

Overview of Tree Data Structures A tree is a collection of nodes connected by edges. Each node in the tree can have zero or more child nodes, and each child node can have zero or more child nodes of its own. The topmost node in the tree is called the...


127: The Async/await Guide to JavaScript Programming

https://devcentral.club/the-asyncawait-guide-to-javascript-programming

Hashnode - javascript (Javascript)

JavaScript is a versatile programming language that allows developers to create dynamic and interactive web applications. However, JavaScript has a well-known problem when it comes to asynchronous programming: callback hell. Writing asynchronous code...


128: "Building Cross-Platform Desktop Applications with Electron Framework in JavaScript"

https://scifi.com/building-cross-platform-desktop-applications-with-electron-framework-in-javascript

Hashnode - javascript (Javascript)

Electron is a framework for building desktop applications using web technologies like HTML, CSS, and JavaScript. It was created by GitHub and is now an open-source project maintained by a community of developers. Electron allows developers to create ...


129: React Drag and Drop - JavaScript Exercise 23

https://rajeshtomjoe.com/react-drag-and-drop-javascript-exercise-23

Hashnode - javascript (Javascript)

Overview In this exercise, you will create a simple drag and drop functionality in React without using any external libraries. You will implement this functionality by creating two containers, one for draggable items and the other for dropped items. ...


130 / 140

130: 3 Tips For Staging Your Home For Sales Photography

https://www.bestfreewebresources.com/3-tips-for-staging-your-home-for-sales-photography

Best Free Web Resources (Veille)

If you're going to be putting your home on the market soon in the hopes of selling it for the best possible price, you're going to want to be sure that you've taken quality photos that you can include with your listing. However, taking out your camera phone and snapping some shots of your home […] The post 3 Tips For Staging Your Home For Sales Photography appeared first on Free Web Resource [...]


131: Introduction to Vite: A Fast and Lightweight Build Tool for Modern Web Development

https://idevtechie.com/introduction-to-vite-a-fast-and-lightweight-build-tool-for-modern-web-development

Hashnode - javascript (Javascript)

Hey there! Are you tired of slow build times when developing web applications' Well, have you heard of Vite' It's a fast and lightweight build tool designed to make modern web development easier and faster. So, what makes Vite stand out from other bu...


132: Introduction to Flutter: Getting Started with Cross-Platform Development

https://dexter.hashnode.dev/introduction-to-flutter-getting-started-with-cross-platform-development-clfg8u20h00gzopnv7cu03qdl

Hashnode - Flutter (Flutter)

Introduction A strong open-source framework for building powerful, platform-independent mobile apps. This is Flutter. This indicates that it enables programmers to quickly and easily construct mobile apps that are visually appealing for both the Andr...


133: What you didn't know about Float'

https://aayushsinha.hashnode.dev/what-you-didnt-know-about-float

Hashnode - python (python)

Although floats are typically a reliable representation of real numbers, there are instances when they fall short, resulting in unexpected outcomes. While they usually provide a satisfactory approximation, it's important to note that they are not inf...


134: How to Fetch Your Hashnode Articles for Your Portfolio with React, Vue, and Next.js

https://stephengade.hashnode.dev/how-to-fetch-your-hashnode-articles-for-your-portfolio-with-react-vue-and-nextjs

Hashnode - vuejs (Javascript)

Are you building a portfolio and looking to showcase your Hashnode articles' Whether you're using React, Vue, or Next.js, there are a few simple steps to follow. In this article, I'll guide you through the process. If you write on Dev.to platform as...


135: Converting our Backbone.js Admin Dashboard to Vue, and how great it was.

https://aaron-bush.hashnode.dev/converting-our-backbonejs-admin-dashboard-to-vue-and-how-great-it-was

Hashnode - javascript (Javascript)

As our web application grew in complexity, we recognized the importance of using modern and efficient frameworks to improve the user experience and overall performance. Vue.js, a progressive JavaScript framework that allows developers to build scalab...




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