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


Vendredi 31 Mars 2023 (162)

1: Client-Side Scripting with JavaScript: An Overview

https://devianinfo.wordpress.com//client-side-scripting-with-javascript-an-overview

Hashnode - javascript (Javascript)

Client-side scripting is a powerful way to add dynamic behavior to web pages. It involves writing JavaScript code that runs in a user's web browser to modify the content and behavior of a web page. In this blog post, we'll explore what client-side sc...


2: LeetCode - Count of Smaller Numbers After Self

https://alkesh26.hashnode.dev/leetcode-count-of-smaller-numbers-after-self

Hashnode - javascript (Javascript)

Problem statement Given an integer array nums, return an integer array counts where counts[i] is the number of smaller elements to the right of nums[i]. Problem statement taken from: https://leetcode.com/problems/count-of-smaller-numbers-after-self E...


3: Clear screen with Python

https://felipelealol.com/clear-screen-with-python

Hashnode - python (python)

This is a very useful and simple approach on a clear screen using python. Acctually I am using this version Python 3.11.1, on Windows 10. pip install clear After install, this library go to python's prompt from clear import clear And finally run th...


4: Woaaahhh... three.js, Amazing!!

https://rizzsid.hashnode.dev/threejs-tech

Hashnode - javascript (Javascript)

Three.js is a popular and powerful JavaScript library that makes it easy to create and display 3D animations and graphics in a web browser. Three.js was created by Ricardo Cabello (also known as "Mr. doob") and was first released in April 2010. It i...


5: Day 3(Input form)

https://youngclick.hashnode.dev/day-3input-form

Hashnode - javascript (Javascript)

Input tag: Input tags are used to take various types of inputs on our web page. Following are the input tags that can be used.


6: Python & SQL ft. Azure, DataGrip

https://ankuraxz.hashnode.dev/python-sql-ft-azure-datagrip

Hashnode - python (python)

For a start, many different databases are available, and they can be classified based on their scale or type of data they store or where they are hosted. In this example we are looking at a Relational SQL-based Database called PostgreSQL, and how to ...


7: Top 10 Best Laptops for Business Owners in 2023

https://www.smashingapps.com/top-10-best-laptops-for-business-owners/

Smashing apps (Design / Internet)

In 2023, business owners will have a plethora of laptop options to choose from. Here are the top 10 laptops that will provide the best performance, reliability, and security for any business.


8: All About Javascript Event Loop

https://subhra.hashnode.dev/all-about-javascript-event-loop

Hashnode - javascript (Javascript)

This blog is all about JS event loop: The JavaScript event loop is a key part of how JavaScript handles asynchronous code. In JavaScript, asynchronous code is often handled using callbacks, promises, and async/await. When you write asynchronous code,...


9: Flutter Dependencies.

https://pambo.hashnode.dev/flutter-dependencies

Hashnode - Flutter (Flutter)

Flutter dependencies are a great way to add functionality to your Flutter apps. There are thousands of dependencies available, covering everything from basic UI components to complex functionality like machine learning and augmented reality. In this ...


10 / 162

10: Understanding Hoisting in JavaScript: A Beginner's Guide

https://shivposted.hashnode.dev/understanding-hoisting-in-javascript-a-beginners-guide

Hashnode - javascript (Javascript)

Introduction: As a beginner learning JavaScript, you may have heard of the term "hoisting". At first, it can seem confusing and difficult to understand, but in this article, we'll break it down for you and explain what hoisting is and how it works in...


11: How to setup your MicroFrontend Application

https://imohanwrites.com/how-to-setup-your-microfrontend-application

Hashnode - javascript (Javascript)

When building large scale applications, having a monolith structure is quite cumbersome, with so many developers working simultaneously, it is hard to maintain it as well. To counter this, we have different implementations like microservices which di...


12: Async-Await in JavaScript

https://jps27cse.hashnode.dev/async-await-in-javascript

Hashnode - javascript (Javascript)

In JavaScript, async/await is an extension of promises which makes it easier to write promises. The keyword async before a function makes the function return a promise, always. And keyword await is used inside async functions, which makes the program...


13: Day 36 - Exception Handling in Python

https://codewithjain.hashnode.dev/day-36-exception-handling-in-python

Hashnode - python (python)

Introduction Welcome to my 36th blog post. Human error is common while writing the code of any program. Mistakes can also be made at the server's end as well, for example, we asked for some records from the server and the records could not be fetched...


14: Advanced JavaScript Concepts Simplified

https://shedranifico.hashnode.dev/advanced-javascript-concepts-simplified

Hashnode - javascript (Javascript)

Table of content Introduction to Advanced JavaScript and some of its concepts Nested function Scope Function closure Function currying JavaScript this keyword Implicit binding Explicit binding New binding Global binding JavaScript classes...


15: Your Friendly Neighbourhood Recursion.

https://startagain.hashnode.dev/your-friendly-neighbourhood-recursion

Hashnode - python (python)

Your Friendly Neighbourhood Recursion. What is Recursion' To learn about Recursion let's first recall what is a function. Python function is created using the def keyword. For example: def func(): print("hello world.") func() #function call ...


16: State Management. But WHY and WHEN '

https://saurabhdhingraa.hashnode.dev/state-management-but-why-and-when

Hashnode - Flutter (Flutter)

When it comes to discussing the architecture of any software project state management is mostly at the centre of the design process. From a broad perspective, an app's state is concerned with all the memory it requires while it's running. As an app g...


17: L'Italie interdit ChatGPT : faut-il faire pareil en France '

https://www.lebigdata.fr/italie-interdit-chatgpt-rgpd

Le Big Data (dataviz)

L'Italie vient d'interdire ChatGPT ! L'autorité de protection des données accuse OpenAI de multiples manquements au RGPD en vigueur dans … Cet article L'Italie interdit ChatGPT : faut-il faire pareil en France ' a été publié sur LEBIGDATA.FR.


18: 10 Days of HackeRank's challenges- Day 6

https://beri28.hashnode.dev/10-days-of-hackeranks-challenges-day-6

Hashnode - javascript (Javascript)

Problem statement: Staircase. Staircase detail This is a staircase of size n=4: # ## ### #### Its base and height are both equal to n. It is drawn using # symbols and spaces. The last line is not preceded by any spaces. Write a program that prints a ...


19: The Link Between Entrepreneurship and Mental Health Conditions

https://www.visualcapitalist.com/entrepreneurship-and-mental-health/

Visual Capitalist (dataviz)

Research explores the link between entrepreneurship and mental health conditions such as ADHD and bipolar disorder The post The Link Between Entrepreneurship and Mental Health Conditions appeared first on Visual Capitalist.


20 / 162

20: this Keyword in JavaScript

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

Hashnode - javascript (Javascript)

Introduction this keyword is a special keyword that is created for execution purposes and can be used in a function. It takes the value of the owner of the function in which it is used however the value of this keyword is not static and doesn't remai...


21: Google says Bard was updated to improve math and logic responses

https://searchengineland.com/google-says-bard-was-updated-to-improve-math-and-logic-responses-395127

Search engine land (Référencement)

Google's head of Bard, Jack Krawczyk said they did this by incorporating its language model, PaLM. The post Google says Bard was updated to improve math and logic responses appeared first on Search Engine Land.


22: Microsoft Brings Collaborative Security to Teams

https://www.webpronews.com/microsoft-brings-collaborative-security-to-teams/

WebProNews SEO (Développement)

WebProNews Microsoft Brings Collaborative Security to Teams Microsoft is beefing up Teams' security features as the platform is increasingly used to share sensitive information. Microsoft Brings Collaborative Security to Teams Matt Milano


23: javascript in one minute

https://jadenmaxi.hashnode.dev/javascript-in-one-minute

Hashnode - javascript (Javascript)

JavaScript is a high-level, interpreted programming language that is widely used for creating dynamic and interactive web pages. It is one of the three core technologies of the World Wide Web, along with HTML and CSS. JavaScript can be used both on t...


25: Social Builder ouvre un Mooc pour renforcer l'emploi des femmes dans l'IT

https://www.lemondeinformatique.fr/actualites/lire-social-builder-ouvre-un-mooc-pour-renforcer-l-emploi-des-femmes-dans-l-it-89756.html

Le monde informatique (Informatique / Internet)

En France, les femmes ne représentent que 27,9% des employés du numérique, alors même que près de 82 000 projets de recrutements (...)


26: Day 18 : Docker Containerization for DevOps.

https://devops-rohit.hashnode.dev/day-18-docker-containerization-for-devops

Hashnode - python (python)

It's #day18 of the #90daysofdevops Challenge under the guidance of Shubham Londhe Sir. Today I have covered Docker-Compose where I have explained how to connect MongoDB and Mongo-Express using a YAML file. Till now you have created a Docker-Compose ...


27: Difference Between seek() & tell() And How To Use

https://geekpython.in/seek-and-tell-in-python

Hashnode - python (python)

Python provides methods and functions to handle files. Handling files includes operations like opening a file, after that reading the content, adding or overwriting the content and then finally closing the file. https://geekpython.in/handling-files-i...


28: Essential Skills for Data Engineers: Tools, Languages, and Frameworks

https://kbolinger.hashnode.dev/essential-skills-for-data-engineers-tools-languages-and-frameworks

Hashnode - python (python)

TLDR: This article explores the essential skills required for data engineers to succeed, including proficiency in tools, languages, and frameworks. It provides real-world examples of these skills used in the music streaming and financial services ind...


29: Styling webpages with Sakura CSS

https://blog.logrocket.com/styling-webpages-with-sakura-css/

Log Rocket blog (Web 2)

In this article, we will demonstrate how to use a classless framework like Sakura CSS to build a portfolio page. The post Styling webpages with Sakura CSS appeared first on LogRocket Blog.


30 / 162

30: How to draw BUNNY BUNS

https://feeds.feedblitz.com/~/733349816/0/tanglepatterns~How-to-draw-BUNNY-BUNS.html

TanglePatterns (Zentangle)

Online instructions for drawing Cyndi Knapp's Zentangle® pattern: Bunny Buns. With bonus vintage recipe download for making the real thing! Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


31: Streamlining Your Development with AWS DevOps: A Guide to CI/CD Pipelines

https://devopsknowledge.hashnode.dev/streamlining-your-development-with-aws-devops-a-guide-to-cicd-pipelines

Hashnode - python (python)

I. Introduction: What AWS DevOps is and why it's important for modern software development' AWS DevOps refers to the practice of using the Amazon Web Services (AWS) platform and tools to automate and streamline the software development process, fr...


32: Understanding Static Site Generation, Server-side and Client-side Rendering without Jargon.

https://adefisayo.hashnode.dev/understanding-static-site-generation-server-side-and-client-side-rendering-without-jargon

Hashnode - javascript (Javascript)

I am writing this article based on what I think would have helped me understand SSG, SSR and CSR better while I was trying to learn them. There are 3 other terms you need to understand for you to grasp the concepts of SSG, SSR and CSR. These terms ar...


33: Vulkan files : les dessous de l'organisation et des systèmes de la Russie pour sa cyberguerre

https://www.lemondeinformatique.fr/actualites/lire-vulkan-files-les-dessous-de-l-organisation-et-des-systemes-de-la-russie-pour-sa-cyberguerre-90028.html

Le monde informatique (Informatique / Internet)

Tous les acteurs et experts militaires s'accordent au moins sur un point : les guerres s'étendent bien au-delà du champ de bataille physique (...)


34: Bienfaits scientifiques du champagne

https://www.lebigdata.fr/bienfaits-scientifiques-du-champagne

Le Big Data (dataviz)

Contrairement à ce que l'on pourrait croire, le champagne ne contient pas que de l'alcool (12 %) et du sucre … Cet article <strong>Bienfaits scientifiques du champagne</strong> a été publié sur LEBIGDATA.FR.


35: Google Maps can detect fake phone numbers in photos and remove them

https://searchengineland.com/google-maps-can-detect-fake-phone-numbers-in-photos-and-remove-them-395098

Search engine land (Référencement)

Google also shared some states on how it fought fake reviews and content in local search. The post Google Maps can detect fake phone numbers in photos and remove them appeared first on Search Engine Land.


36: ChatGPT bloqué en Italie : pour quelles raisons '

https://www.blogdumoderateur.com/italie-bloque-chatgpt-raisons/

Blog du Moderateur ()

L'autorité nationale de protection des données personnelles d'Italie reproche notamment au chatbot de ne pas vérifier l'âge des utilisateurs.


37: La Cnil italienne et la FTC s'emparent du phénomène ChatGPT

https://www.lemondeinformatique.fr/actualites/lire-la-cnil-italienne-et-la-ftc-s-emparent-du-phenomene-chatgpt-90030.html

Le monde informatique (Informatique / Internet)

ChatGPT est-il conforme au RGDP ' Le GDDP (Garante Per la Protezione dei Dati Personali) en doute fortement au point d'annoncer dans un communiqué (...)


38: Google Drive impose une limite cachée au nombre de fichiers stockés

https://www.lemondeinformatique.fr/actualites/lire-google-drive-impose-une-limite-cachee-au-nombre-de-fichiers-stockes-90029.html

Le monde informatique (Informatique / Internet)

Si la phrase ''sky is no limit'' est souvent utilisée dans l'IT et bien il en existe une pour les fichiers contenus dans Google Drive. Il s'avère (...)


39: Usabilis, c'est fini !

https://www.usabilis.com/usabilis-c-est-fini/

Usabilis (ux)

Paris, le 31 mars 2023 Après des années de succès dans la conception d’interfaces utilisateur, Usabilis abandonne définitivement l'UX/UI Design et l'ergonomie des interfaces. Dans un marché devenu fortement concurrentiel,... Cet article Usabilis, c'est fini ! est apparu en premier sur USABILIS.


40 / 162

40: What is rapid application development (RAD)'

https://blog.logrocket.com/product-management/what-is-rapid-application-development-rad/

Log Rocket blog (Web 2)

Rapid application development (RAD) is an adaptive software development model based on feedback and prototyping. The post What is rapid application development (RAD)' appeared first on LogRocket Blog.


41: Get started with libSQL, a next-gen fork of SQLite

https://blog.logrocket.com/libsql-next-gen-fork-sqlite/

Log Rocket blog (Web 2)

Get to know libSQL, an open source,open contribution fork of SQLite, and see how to use it with Express and Vue to build a simple app. The post Get started with libSQL, a next-gen fork of SQLite appeared first on LogRocket Blog.


42: TailwindCss 3.3 new version

https://gautamvaishnav.hashnode.dev/tailwindcss-33-new-version

Hashnode - javascript (Javascript)

Hi Developers this is Gautam, and welcome to the blog. Today I have important news for you about the tailwind css new 3.30 version. let's talk about what is new in tailwind 3.3 and what they add in the newer version. let's go! how to install latest v...


43: The Difference Between Regular Functions and Arrow Functions in Javascript.

https://sonusahu.hashnode.dev/the-difference-between-regular-functions-and-arrow-functions-in-javascript

Hashnode - javascript (Javascript)

Functions is a block of code designed to perform a specific task. You can use the same code many times with different arguments, to produce different results. 1. Syntax The arrow function syntax is much shorter as compared to the regular function. In...


44: These 44 hilariously terrible BuzzFeed travel articles were AI-assisted

https://searchengineland.com/buzzfeed-ai-assisted-travel-articles-395112

Search engine land (Référencement)

Need 44 reasons why you need to be careful about publishing AI-assisted content, even if it is easy to do. Meet As Told to Buzzy. The post These 44 hilariously terrible BuzzFeed travel articles were AI-assisted appeared first on Search Engine Land.


45: Pourquoi Ikea utilise des drones pour contrôler les stocks de ses entrepôts

https://www.usine-digitale.fr/article/pourquoi-ikea-utilise-des-drones-pour-controler-les-stocks-de-ses-entrepots.N2117196

L'usine-digitale (Informatique)

Ikea compte désormais 100 drones répartis dans seize pays pour réaliser l'inventaire de ses stocks à la place des employés lorsque les entrepôts sont vides.


46: Day 35 - For loop with else

https://codewithjain.hashnode.dev/day-35-for-loop-with-else

Hashnode - python (python)

Introduction Welcome to my 35th blog post. In my python coding journey, I learned about using else statements with if and nested if statements. We can also make use of the else statement with for and while loops. Now Let's dive into more details. So...


47: Data type in JavaScript

https://ariz.hashnode.dev/data-type-in-javascript

Hashnode - javascript (Javascript)

data type in javascript is fun. to find out the maximum and minimum value of a number you should write as well as like this... here as you can see that i have took a nn variable & assigned its value. but you will get two different number of MAX_VALUE...


48: Series of developing react

https://sparkdev.hashnode.dev/series-of-developing-react

Hashnode - javascript (Javascript)

# Roadmap 1. Basics of JS(`Variables`,`Primitive types`,`Control flow`,`Loops`) 2. Advanced/Custom types(`Objects`,`Map`,`Set`,`Arrays`,`Functions`) 3. ES6 (`Modules`,`Classes`,`Const`/`Let`) # React 1. Intro to JSX 2. Components 3. `Props` vs `Stat...


49: Search marketing: Evolving roles, responsibilities, challenges

https://searchengineland.com/search-marketing-evolving-roles-responsibilities-challenges-395045

Search engine land (Référencement)

Despite increased churn within organizations, job satisfaction is high, a new Search Engine Land survey finds. The post Search marketing: Evolving roles, responsibilities, challenges appeared first on Search Engine Land.


50 / 162

50: Vodafone, EA, Logitech, Marvell' Notre récap des licenciements dans la Tech

https://www.usine-digitale.fr/article/vodafone-ea-logitech-marvell-notre-recap-des-licenciements-dans-la-tech.N2117181

L'usine-digitale (Informatique)

Télécoms, hardware, software, marchés grand public ou services aux entreprises' Les difficultés économiques touchent tous les secteurs de la Tech.


51: Remove Unwanted Objects From Your Pictures with AI

https://mathdatasimplified.com/2023/03/31/remove-unwanted-objects-from-your-pictures-with-ai/

Math Data Simplified (data)

If you want to remove unwanted objects or people from your pictures, use Lama Cleaner. Lama Cleaner is a free and open-source tool powered by the SOTA AI model. Link to Lama Cleaner. The post Remove Unwanted Objects From Your Pictures with AI appeared first on Data Science Simplified.


52: The Explosive Growth of Sports Betting

https://www.visualcapitalist.com/sp/the-explosive-growth-of-sports-betting/

Visual Capitalist (dataviz)

In 2022, the sports betting market showed 75% increase in revenue. This growth is driven by innovative technologies and the legalization of sports betting in most states across the U.S. How can investors get exposure to the market' The post The Explosive Growth of Sports Betting appeared first on Visual Capitalist.


53: Une faille de sécurité a permis de modifier les résultats de recherche sur Bing

https://www.usine-digitale.fr/article/une-faille-de-securite-a-permis-de-modifier-les-resultats-de-recherche-sur-bing.N2117166

L'usine-digitale (Informatique)

La faille de sécurité permettait aussi de collecter les e-mails, messages et documents des utilisateurs du moteur de recherche de Microsoft.


54: Understanding Object Destructuring in JavaScript: A Beginner's Guide

https://kingdavvid.hashnode.dev/understanding-object-destructuring-in-javascript-a-beginners-guide

Hashnode - javascript (Javascript)

Introduction Object destructuring is an important technique in JavaScript that enables developers to easily extract specific properties from an object and assign them to variables with a single line of code. This not only simplifies the code but also...


55: Searching with Binary Search in JavaScript

https://dhawalpandya01.hashnode.dev/searching-with-binary-search-in-javascript

Hashnode - javascript (Javascript)

Binary Search is a search algorithm that works by repeatedly dividing the search interval in half. It is a very efficient algorithm for searching sorted arrays or lists. Binary Search has a time complexity of O(log n), which means that the time it ta...


56: Link Slot Pulsa All Operator Maxwin Auto Cuan

https://racun88.hashnode.dev/link-slot-pulsa-all-operator-maxwin-auto-cuan

Hashnode - python (python)

Link Slot Pulsa All Operator Maxwin Auto Cuan sementara ini jadi slot online yang ramai dimainkan yang terlalu enteng sanggup cuan banyak sementara bermain RACUN88, untuk bermain slot gacor kamu mesti daftar di web site slot online terpercaya 2023. S...


57: Understand Looping For Mastery: A Comprehensive Guide to JavaScript Loops

https://vaibhavwrites.hashnode.dev/understand-looping-for-mastery-a-comprehensive-guide-to-javascript-loops

Hashnode - javascript (Javascript)

Loops are one of the fundamental building blocks of programming, and they play a vital role in making code more efficient and manageable. In JavaScript, loops are used to iterate over arrays, objects, and other data structures, executing a set of ins...


58: Keeping an eye on competition: TikTok vs. Instagram case study

https://blog.logrocket.com/product-management/keeping-an-eye-on-competition-tiktok-vs-instagram-case-study/

Log Rocket blog (Web 2)

TikTok first launched in 2017 and Instagram released a reels component to mimic it in 2020. The TikTok vs. Instagram war began. The post Keeping an eye on competition: TikTok vs. Instagram case study appeared first on LogRocket Blog.


59: Using task analysis to improve your UX design

https://blog.logrocket.com/ux-design/using-task-analysis-improve-ux-design/

Log Rocket blog (Web 2)

Here's how conducting a task analysis works, as well as the best practices and benefits of using the process to inform design decisions. The post Using task analysis to improve your UX design appeared first on LogRocket Blog.


60 / 162

60: How paid placements will evolve alongside AI-powered search

https://searchengineland.com/ai-powered-search-paid-placements-395084

Search engine land (Référencement)

Paid search will remain relevant, but advertisers must adjust their strategies to reach their targets in this new era of search. Here's how. The post How paid placements will evolve alongside AI-powered search appeared first on Search Engine Land.


61: Amazon décentralise son programme de formation d'entrepreneurs au numérique

https://www.usine-digitale.fr/article/amazon-decentralise-son-programme-de-formation-d-entrepreneurs-au-numerique.N2117031

L'usine-digitale (Informatique)

La première réunion régionale du programme de formation des entrepreneurs au numérique s'est déroulée le 30 mars à Marseille avec 70 participants. Sur les 13 000 entreprises qui vendent leurs produits sur Amazon, 1 400 résident en Provence-Alpes-Côte d'Azur.


62: L'application sociale VR la plus populaire va obtenir une version mobile

https://www.realite-virtuelle.com/vrchat-obtenir-une-version-mobile/

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

Ça y est, VRChat, la célèbre application sociale de réalité virtuelle aux millions de joueurs […] Cet article L'application sociale VR la plus populaire va obtenir une version mobile a été publié sur REALITE-VIRTUELLE.COM.


63: How to convert a PDF to Base64 in Flutter

https://lianda.hashnode.dev/how-to-convert-a-pdf-to-base64-in-flutter

Hashnode - Flutter (Flutter)

In this blog post, we will walk you through the process of converting a pdf to base64, which is a format that is sometimes required to transmit PDF files to the backend. Steps Add required Dependencies Pick a pdf file from the storage Convert the ...


64: Le PSVR 2, un échec commercial '

https://www.realite-virtuelle.com/le-psvr-vente-lancement-decevante/

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

Sans l'ombre d'un doute, le PSVR 2 est un matériel impressionnant. Cependant, un cabinet d'analystes […] Cet article Le PSVR 2, un échec commercial ' a été publié sur REALITE-VIRTUELLE.COM.


65: The Art of Creating Component Collections: Your Guide to Rendering Lists in React

https://blog.thesshguy.com/render-react-lists

Hashnode - javascript (Javascript)

If you've done any UI development, you've probably had to build a list or two. What do I mean by a list' Let's take Twitter as an example. When you log onto Twitter, you're presented with a feed that contains an endless list of Tweets. In other words...


66: L'offre VoIP de 3CX victime d'une attaque supply chain redoutable

https://www.lemondeinformatique.fr/actualites/lire-l-offre-voip-de-3cx-victime-d-une-attaque-supply-chain-redoutable-90023.html

Le monde informatique (Informatique / Internet)

Plusieurs versions légitimes des applications de VoIP 3CX DesktopApp Electron ont été compromises et sont activement exploitées. (...)


67: Local Storage - Session Storage - Cookies

https://deeevv.hashnode.dev/local-storage-session-storage-cookies

Hashnode - javascript (Javascript)

Local Storage - the longer game localStorage is a property that allows JavaScript sites and apps to save key-value pairs in a web browser with no expiration date. This means the data stored in the browser will persist even after the browser window is...


68: Array methods you should know before getting started with React

https://priteshkiri.hashnode.dev/array-methods-you-should-know-before-getting-started-with-react

Hashnode - javascript (Javascript)

What is an array' Arrays enable us to store multiple elements within a single variable. Each element in an array is assigned a unique number called an index. The initial element in an array has an index of 0 , the second element has an index of 1 , a...


69: Collective 758

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

Codrops (Design / Internet)

Bicycle * Improving CSS Shapes with Trigonometric Functions * PyVibe * CodeQuest * Chatblade


70 / 162

70: How to write a content marketing mission statement

https://searchengineland.com/content-marketing-mission-statement-395089

Search engine land (Référencement)

Give your content marketing efforts a greater purpose with a mission statement. Learn how to create one in three steps. The post How to write a content marketing mission statement appeared first on Search Engine Land.


71: Top 7 des meilleurs jeux de simulation sur Roblox

https://www.realite-virtuelle.com/meilleurs-jeux-simulation-roblox/

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

Sur Roblox, on compte de nombreux jeux de simulation, recréant différentes expériences, telles que la […] Cet article Top 7 des meilleurs jeux de simulation sur Roblox a été publié sur REALITE-VIRTUELLE.COM.


72: LastPass : tout savoir sur l'un des meilleurs gestionnaires de mots de passe

https://www.lebigdata.fr/lastpass-gestionnaire-mots-de-passe

Le Big Data (dataviz)

Avec LastPass, gérez tous vos identifiants en toute sécurité et avec simplicité. Ce gestionnaire de mots de passe est un … Cet article LastPass : tout savoir sur l’un des meilleurs gestionnaires de mots de passe a été publié sur LEBIGDATA.FR.


73: 20 Must-Know NumPy Functions for Data Analysis and Machine Learning in Python

https://rhythmblogs.hashnode.dev/20-must-know-numpy-functions-for-data-analysis-and-machine-learning-in-python

Hashnode - python (python)

NumPy is a powerful library for data analysis and machine learning in Python. It provides a wide range of mathematical functions for performing complex operations on large datasets. In this blog, we will discuss 20 important NumPy functions that are ...


74: L'Italie bloque l'accès à ChatGPT, accusé de ne pas respecter la législation sur les données personnelles

https://www.usine-digitale.fr/article/chatgpt.N2117121

L'usine-digitale (Informatique)

La start-up OpenAI dispose de 20 jours pour répondre aux inquiétudes des autorités italiennes, sous peine d'une amende.


75: Troubleshooting PIP Installation on Ubuntu 20.04 LTS (Focal Fossa)

https://smartshock.hashnode.dev/troubleshooting-pip-installation-on-ubuntu-2004-lts-focal-fossa

Hashnode - python (python)

As a software developer, I had been working on a new project that involved using the FastAPI framework. However, I ran into a problem when trying to install the FastAPI using pip. It was a frustrating experience that required some troubleshooting, bu...


76: Developer Company Touca Is Shutting Down

https://www.webpronews.com/developer-company-touca-is-shutting-down/

WebProNews SEO (Développement)

WebProNews Developer Company Touca Is Shutting Down Touca, the tool that helps developers avoid regressions in their code, has announced it is shutting down after two years. Developer Company Touca Is Shutting Down Staff


77: 3 new JavaScript features and their syntax.

https://arsalanmalik.hashnode.dev/3-new-javascript-features-and-their-syntax

Hashnode - javascript (Javascript)

As a language, JavaScript is constantly evolving and improving, with new features and syntax being added all the time. These new developments offer exciting opportunities for developers to create more efficient, powerful, and streamlined code. In thi...


78: Disney, Microsoft, Facebook' le métavers termine comme la Tecktonik

https://www.lebigdata.fr/metavers-tecktonic-disney-microsoft

Le Big Data (dataviz)

Après Meta, plusieurs géants de la technologie et du divertissement abandonnent leurs projets de métavers initiés il y a moins … Cet article Disney, Microsoft, Facebook' le métavers termine comme la Tecktonik a été publié sur LEBIGDATA.FR.


79: How to Automate Your Trello Board with GitHub

https://codeyourfuture.hashnode.dev/how-to-automate-your-trello-board-with-github

Hashnode - python (python)

SOURCE CODE: CLICK HERE... If you use Trello to manage your projects and tasks, you know how useful it is to have a visual overview of your progress. But did you know that you can also automate your Trello board by only pushing commits to GitHub' In ...


80 / 162

80: [ PART 2 ] Creating a Twitter clone with GraphQL, Knex, Typescript, and React ( Setup Tests )

https://ipscodingchallenge.hashnode.dev/part-2-creating-a-twitter-clone-with-graphql-knex-typescript-and-react-setup-tests

Hashnode - javascript (Javascript)

Github Repository Setting up the tests I will use jest for testing and this will be a first for me being more used to mocha + chai. I could change to ava eventually if I don't like jest ;). The jest library is already installed, I'm going to install ...


81: [ PART 2 ] Create a Twitter clone with GraphQL, Knex, Typescript, and React ( Setup Tests )

https://ipscodingchallenge.hashnode.dev/part-2-create-a-twitter-clone-with-graphql-knex-typescript-and-react-setup-tests

Hashnode - javascript (Javascript)

Github Repository Setting up the tests I will use jest for testing and this will be a first for me being more used to mocha + chai. I could change to ava eventually if I don't like jest ;). The jest library is already installed, I'm going to install ...


82: Winter Vivern exploite une faille Zimbra pour cibler des entités gouvernementales

https://www.lemondeinformatique.fr/actualites/lire-winter-vivern-exploite-une-faille-zimbra-pour-cibler-des-entites-gouvernementales-90026.html

Le monde informatique (Informatique / Internet)

Un groupe APT connu dans le secteur de la sécurité sous le nom de Winter Vivern a exploité une vulnérabilité dans le (...)


83: TypeScript vs. JavaScript: Which is best in 2023

https://quokkalabs.hashnode.dev/typescript-vs-javascript-which-is-best-in-2023

Hashnode - javascript (Javascript)

Regardless of various similarities, whether JavaScript (JS) is truly better compared to TypeScript (TS) - or the other way around - lies in their disparities. This blog explains the fundamental differences between the two dialects and provides an ide...


84: Actions, Reducer and Store in Redux

https://prashanthandel.hashnode.dev/actions-reducer-and-store-in-redux

Hashnode - javascript (Javascript)

Actions Action is the only way for the interaction between the store and the application. It carries some information from the application to the Redux store. Actions are plain JavaScript objects. It must have a 'type' property that informs about the...


85: United Airlines adapte ses outils pour améliorer le service client

https://www.lemondeinformatique.fr/actualites/lire-united-airlines-adapte-ses-outils-pour-ameliorer-le-service-client-89385.html

Le monde informatique (Informatique / Internet)

En tant que DSI d'United Airlines, Jason Birnbaum se concentre sur l'utilisation de la technologie et des données pour permettre aux 86 000 employés (...)


86: Developing a Natural Language Processing Application with Python and transformers

https://coderbible.io/developing-a-natural-language-processing-application-with-python-and-transformers

Hashnode - python (python)

Natural Language Processing (NLP) is a rapidly growing field of computer science that focuses on the interaction between computers and human languages. NLP techniques are used to analyze, understand, and generate natural language text, making it poss...


87: LMI Mag 17 : retour sur la personnalité IT de l'année Frédéric Bardeau

https://www.lemondeinformatique.fr/actualites/lire-lmi-mag-17-retour-sur-la-personnalite-it-de-l-annee-frederic-bardeau-90024.html

Le monde informatique (Informatique / Internet)

Dans ce nume'ro 17 du Monde Informatique, nous vous proposons des retours d'expe'rience de RSSI et de décideurs IT autour (...)


88: Vote for Site of the Month March 2023!

https://www.awwwards.com/vote-for-site-of-the-month-march-2023.html

awwwards (Internet)

Meet the nominees for Site of the Month March, vote and tweet for your favorite, to win a free PRO Plan in our Directory.' Vote for SOTM March'The...


89: Semi-conducteurs: le Japon limite à son tour les exportations d'équipements vers la Chine

https://www.usine-digitale.fr/article/semi-conducteurs-le-japon-limite-a-son-tour-les-exportations-d-equipements-vers-la-chine.N2117086

L'usine-digitale (Informatique)

Tokyo s'aligne sur les lourdes sanctions imposées à l'automne dernier par les Etats-Unis. Un accord du gouvernement sera désormais nécessaire pour vendre en Chine et les machines nécessaires à leur production de puces.


90 / 162

90: Midjourney arrête les essais gratuits pour son service de génération automatique d'images

https://www.usine-digitale.fr/article/midjourney-arrete-les-essais-gratuits-pour-son-service-de-generation-automatique-d-images.N2117081

L'usine-digitale (Informatique)

Midjourney, qui fait les gros titres ces derniers jours à la suite de la diffusion de montages très réalistes créés par son logiciel sur les réseaux sociaux, a annoncé la suspension de ses essais gratuits car il s'est fait déborder par la demande.


91: Avec ses puces, Cerebras s'invite dans la course à l'IA générative

https://www.lemondeinformatique.fr/actualites/lire-avec-ses-puces-cerebras-s-invite-dans-la-course-a-l-ia-generative-89992.html

Le monde informatique (Informatique / Internet)

Start-up prometteuse fondée en 2015 et historiquement spécialisée dans les puces et systèmes IA, Cerebras Systems (...)


92: Avec AlloyDB Omni sur site, Google élargit son offre PostgreSQL

https://www.lemondeinformatique.fr/actualites/lire-avec-alloydb-omni-sur-site-google-elargit-son-offre-postgresql-90013.html

Le monde informatique (Informatique / Internet)

Afin d'aider les entreprises à moderniser leurs bases de données, Google développe une version on prem de sa base de données (...)


93: Lenovo lance le Slim Pro 9i et le Yoga 7i

https://www.lemondeinformatique.fr/actualites/lire-lenovo-lance-le-slim-pro-9i-et-le-yoga-7i-90022.html

Le monde informatique (Informatique / Internet)

Annoncés récemment par Lenovo, les derniers portables Slim Pro et Yoga sont équipés des derniers processeurs Intel Core de (...)


94: 5 Reasons to Choose Bold Reports' Report Viewer for SSRS Reports in Your Web Applications

https://www.boldreports.com/blog/5-reasons-to-choose-bold-reports-report-viewer-for-ssrs-reports-in-your-web-applications/5-reasons-to-choose-bold-reports-report-viewer-for-ssrs-reports

Hashnode - javascript (Javascript)

As web technologies continue to evolve, it is increasingly important to have a reporting solution that can keep up. Bold Reports Report Viewer is one such solution, offering a range of powerful features that can elevate your SSRS reporting to the nex...


95: RGPD : un nouveau formulaire pour refuser le tracking sur Instagram et Facebook

https://www.blogdumoderateur.com/rgpd-nouveau-formulaire-refuser-tracking-instagram-facebook/

Blog du Moderateur ()

Dès la semaine prochaine, les utilisateurs européens des réseaux sociaux de Meta pourront modérer le niveau de ciblage des publicités.


96: KillBills lève 4 millions d'euros pour dématerialiser les tickets de caisse

https://www.usine-digitale.fr/article/killbills-leve-4-millions-d-euros-pour-dematerialiser-les-tickets-de-caisse.N2117051

L'usine-digitale (Informatique)

La fin de l'impression automatique des tickets de caisse approche et la start-up française KillBills, qui les dématérialise en les envoyant directement sur l'espace bancaire du consommateur, a bouclé son premier tour de table. 4 millions d'euros qui lui permettront de trouver davantage de partenaires (commerçants et banques) et de renforcer ses effectifs.


97: A Beginner's Guide to Building React Projects

https://indrajeetcodes.hashnode.dev/a-beginners-guide-to-building-react-projects

Hashnode - javascript (Javascript)

Welcome, if you're interested in becoming proficient in React, building projects can be a great way to achieve that. I've compiled a list of eight different projects that not only showcase what you can create with React but also provide some ideas fo...


98: Logical Operators'

https://vikas360.hashnode.dev/logical-operators

Hashnode - javascript (Javascript)

What are Logical Operators' Logical operators are used to combining two or more boolean expressions and evaluate them as a single boolean value. JavaScript has three logical operators: && (logical AND), || (logical OR), and ! (logical NOT). && (logi...


99: JavaScript Nullish Coalescing Operator

https://lukechidubem.hashnode.dev/javascript-nullish-coalescing-operator

Hashnode - javascript (Javascript)

The Nullish Coalescing Operator ('') is a relatively new addition to JavaScript, introduced in ECMAScript 2020. It provides a shorthand way of checking whether a value is null or undefined, and providing a default value if it is. The syntax of the Nu...


100 / 162

100: Owkin lance un consortium pour améliorer le traitement contre les cancers grâce à l'IA

https://www.usine-digitale.fr/article/owkin-lance-un-consortium-pour-ameliorer-le-traitement-contre-les-cancers-grace-a-l-ia.N2116756

L'usine-digitale (Informatique)

L'objectif est de concevoir quinze outils de pathologie alimentés par des algorithmes de machine learning au cours des cinq prochaines années. L'initiative est dotée d'une enveloppe de 33 millions d'euros.


101: While seeking for a job, having a portfolio website is helpful for showcasing your abilities.

https://chidiebereomasi.hashnode.dev/while-seeking-for-a-job-having-a-portfolio-website-is-helpful-for-showcasing-your-abilities

Hashnode - javascript (Javascript)

Although while a website for your portfolio can be a great tool to highlight your abilities and experience, it's crucial to keep in mind that it's only one step in the overall job search procedure. You'll need to do a more thorough job search if you'...


102: Cloud : Google attaque Microsoft et porte de lourdes accusations

https://www.lebigdata.fr/cloud-google-microsoft

Le Big Data (dataviz)

Le duel entre les géants de la tech, Google et Microsoft, s’intensifie dans le domaine du Cloud. Google n’hésite pas … Cet article Cloud : Google attaque Microsoft et porte de lourdes accusations a été publié sur LEBIGDATA.FR.


103: PROGRAMME DE LA JOURNÉE DE CONTRIBUTION ORGANISÉE À PARIS LE 20/04/2023

https://wpfr.net/programme-de-la-journee-de-contribution-organisee-a-paris-le-20-04-2023/

Wordpress-fr (wordpress)

La journée de contribution à WordPress organisée par WPFR se déroulera le 20 avril 2023 à partir de 09h30. Voici le programme de cette belle journée. Si vous souhaitez en savoir plus sur une journée de contribution, vous pouvez relire notre précédent article. Programme et informations utiles L'équipe WPFR vous accueillera en compagnie des bénévoles quiLire la suite


104: Cisco croque la start-up Lightspin pour accroître sa sécurité cloud

https://www.lemondeinformatique.fr/actualites/lire-cisco-croque-la-start-up-lightspin-pour-accroitre-sa-securite-cloud-90017.html

Le monde informatique (Informatique / Internet)

Proposant une plateforme de protection des applications cloud native servant à identifier, hiérarchiser et corriger les chemins d'attaque (...)


105: What is Linux'

https://satishsutar-cloud-and-devops.hashnode.dev/what-is-linux

Hashnode - javascript (Javascript)

Linux is an operating system that has been around for over 30 years, and yet many people still aren't familiar with it. In this article, we will introduce Linux to those who are unfamiliar with it and educate them on its capabilities and benefits. Wh...


106: Arrays In Javascript

https://charityjelimo.com/arrays-in-javascript

Hashnode - javascript (Javascript)

What is an Array' Arrays are objects or special type of variables that can store multiple values at once. The multiple items are stored under a single variable name. Creating Arrays. There are two ways of creating arrays; Using array literal [ ] Fo...


107: L'entreprise biopharmaceutique Idorsia opte pour un cloud vertical

https://www.lemondeinformatique.fr/actualites/lire-l-entreprise-biopharmaceutique-idorsia-opte-pour-un-cloud-vertical-90021.html

Le monde informatique (Informatique / Internet)

Accélérer la transformation de l'entreprise via le recours à un cloud pensé pour son secteur d'activité. Une piste notamment (...)


108: Introduction to Linux Diaries

https://satishsutar-cloud-and-devops.hashnode.dev/introduction-to-linux-diaries

Hashnode - javascript (Javascript)

Welcome to the world of Linux, where possibilities are endless and creativity knows no bounds! This series, "Linux Diaries," is dedicated to exploring the vast and exciting world of Linux and everything it has to offer. Linux is an open-source operat...


109: Breaking into Typescript: the basics that you need to start using Typescript - Part I

https://deprof.hashnode.dev/breaking-into-typescript-the-basics-that-you-need-to-start-using-typescript

Hashnode - javascript (Javascript)

Hello guys, welcome to another one of my interesting reads on here. It's been a while, hasn't it' Today, we're going to be discussing and as well be getting you up and running writing Typescript with the basics of Typescript. Oh, don't give me that f...


110 / 162

110: Mapping where Taylor Swift performs on stage during a show

https://flowingdata.com/2023/03/31/mapping-where-taylor-swift-performs-on-stage-during-a-show/

Flowing data (dataviz)

Taylor Swift is currently on tour. During a show, she sings 44 songs…Tags: concert, Taylor Swift


111: Les collectivités progressent en matière de numérique

https://www.lemondeinformatique.fr/actualites/lire-les-collectivites-progressent-en-matiere-de-numerique-90019.html

Le monde informatique (Informatique / Internet)

EY a récemment publié les résultats du troisième baromètre de la maturité numérique des territoires français, (...)


112: Swing Into April (2023 Wallpapers Edition)

https://smashingmagazine.com/2023/03/desktop-wallpaper-calendars-april-2023/

Smashing magazine (Web 2 / CSS)

With April just around the corner, we have a new collection of desktop and mobile wallpapers waiting for you to celebrate the beginning of the new month. Designed by creatives from all across the globe, the wallpapers come in versions with and without a calendar. Enjoy!


113: Incendie d'un Data Center Maxnod en France : que s'est-il passé

https://www.lebigdata.fr/incendie-data-center-maxnod-france

Le Big Data (dataviz)

Le Data Center Maxnod en France a été ravagé par un incendie majeur, obligeant la société à cesser ses activités … Cet article Incendie d’un Data Center Maxnod en France : que s’est-il passé a été publié sur LEBIGDATA.FR.


114: Data Pipeline Architecture Explained

https://www.noupe.com/business-online/data-pipeline-architecture-explained.html

Noupe (conception)

A data pipeline is a set of steps that are used to process data. The data is ingested at the beginning of the pipeline if it is not currently loaded on the data platform. Each step delivers an output that serves as an input to the next step in a series of steps. This process... The post Data Pipeline Architecture Explained appeared first on noupe.


115: Mastering React Router: The Ultimate Guide to Navigation and Routing in React Apps!

https://clericcoder.hashnode.dev/mastering-react-router-the-ultimate-guide-to-navigation-and-routing-in-react-apps

Hashnode - javascript (Javascript)

Definition of React Router: React Router is a popular routing library for React applications that allows you to manage navigation and URL routing in a single-page application (SPA) or a multi-page application. It provides a set of components and APIs...


116: 5 Shocking Things About Node.js That You Thought You Knew But Didn't!

https://blog.erickwendel.com.br/5-shocking-things-about-nodejs-that-you-thought-you-knew-but-didnt

Hashnode - javascript (Javascript)

Introduction Are you ready to have your mind blown' I'm Erick Wendel, and I've recreated the Node.js project from scratch, uncovering some shocking truths along the way, and published it on my Youtube channel. Think you know everything about Node.js ...


117: De-Dollarization: Countries Seeking Alternatives to the U.S. Dollar

https://www.visualcapitalist.com/de-dollarization-countries-seeking-alternatives-to-the-u-s-dollar/

Visual Capitalist (dataviz)

The U.S. dollar is the dominant currency in the global financial system, but some countries are following the trend of de-dollarization. The post De-Dollarization: Countries Seeking Alternatives to the U.S. Dollar appeared first on Visual Capitalist.


118: Why You Should Use Flutter for Your Projects

https://ravipatel.hashnode.dev/why-you-should-use-flutter-for-your-projects

Hashnode - Flutter (Flutter)

Flutter is a UI toolkit and SDK which you can use to build applications. Flutter is open source and you can use it to build highly performant mobile and desktop apps. In this article, I'll explain in detail the various benefits of using Flutter so yo...


119: The Newbie Framework: SvelteKit'

https://blog.ahmedsuliman.com/the-newbie-framework-sveltekit

Hashnode - javascript (Javascript)

SvelteKit is a new framework built on top of Svelte, a popular front-end framework, that provides an integrated solution for building web applications. SvelteKit aims to simplify the development process and increase productivity by leveraging the pow...


120 / 162

120: Optimizing Formik in React Native: Best Coding Practices

https://ankushsrj.hashnode.dev/optimizing-formik-in-react-native-best-coding-practices

Hashnode - javascript (Javascript)

Here are some best coding practices to follow when using Formik in React Native: Use props to pass initialValues and onSubmit function to the Formik component, and extract the validate function and other configuration options to the component that r...


121: Notion: The Ultimate Productivity Space for Developers

https://blog.ahmedsuliman.com/notion-the-ultimate-productivity-space-for-developers

Hashnode - javascript (Javascript)

Notion is all-in-one workspace developers and other professionals can use to stay productive and organized. As a developer, you need to be able to manage your projects, collaborate with your team, track your time, and stay up-to-date on your tasks. N...


122: This Keyword in JS

https://aniketnov.hashnode.dev/this-keyword-in-js

Hashnode - javascript (Javascript)

this keyword/variable: is a special variable that is created for every execution context and therefore any function.' this keyword => will always take the value of the owner of the function in which, this keyword is used.'We also say that it points t...


123: Introduction to JavaScript

https://tech-notes.hashnode.dev/introduction-to-javascript

Hashnode - javascript (Javascript)

What is JavaScript' JavaScript is a high-level, object-oriented programming language used primarily for creating dynamic and interactive web pages. It is a client-side scripting language that is executed by web browsers. JavaScript can manipulate the...


124: 30 blagues du 1er avril à faire selon ChatGPT

https://www.blogdumoderateur.com/blagues-premier-avril-chatgpt/

Blog du Moderateur ()

Découvrez les idées de poissons d'avril proposées par ChatGPT à faire au bureau, à la maison ou sur les réseaux sociaux !


125: Étude : les critères de positionnement les plus importants pour les recherches locales

https://www.abondance.com/20230331-52626-etude-les-criteres-de-positionnement-les-plus-importants-pour-les-recherches-locales.html

Abondance (Référencement)

Quels sont les critères qu'il convient de privilégier pour bien se positionner dans les résultats locaux ' C'est la question que Whitespark a posée à 44 experts SEO spécialisés sur ces questions dans le cadre d'une grande étude annuelle, dont la première édition remonte à 2008. Outre les facteurs de positionnement, l'étude s'intéresse également à d'autres […] L'article "à [...]


126: How To Use Java In Web 3 Development'

https://animeshtripathi.hashnode.dev/how-to-use-java-in-web-3-development

Hashnode - javascript (Javascript)

Nowadays, we all are talking about cryptocurrencies, bitcoin etc. All these things come under web 3. In Web 3 we build different projects using different programming languages like JavaScript, Python, Solidity, C++, Java, HTML, Rust etc. In this arti...


127: Python2 vs Python3 in a small and concise way!

https://techwasti.com/python2-vs-python3-in-a-small-and-concise-way

Hashnode - python (python)

Python is one of the most popular programming languages, and it has evolved over time to meet the changing needs of developers. Python 2 and Python 3 are two major versions of Python that are currently in use. In this article, we will compare Python ...


128: Records and Patterns in Dart ' Flutter Forward Extended, Bangalore @ GeekyAnts

https://techblog.geekyants.com/records-and-patterns-in-dart-flutter-forward-extended-bangalore-geekyants

Geek y Ants ()

Speaker: Vivek Yadav, Mobile Team Lead at ZestMoney, Google Developer Expert, Flutter community leader. This article covers Vivek Yadavs recent talk at the Flutter Forward Extended Bangalore meetup at GeekyAnts. The talk discusses everything new and experimental in Dart 3, with a detailed focus on the latest language feature, Records and Patterns. Introduction We all know Flutter is an open-sour [...]


129: Difference between list, tuple and set in python

https://adityakadam.hashnode.dev/difference-between-list-tuple-and-set-in-python

Hashnode - python (python)

List:- Lists are just like dynamic-sized arrays, declared in other languages (vector in C++ and ArrayList in Java). Lists need not be homogeneous always which makes it the most powerful tool in Python. The main characteristics of lists are ': i)The...


130 / 162

130: Comprehensive Interview questions for Terraform

https://sumanprasad.hashnode.dev/comprehensive-interview-questions-for-terraform

Hashnode - python (python)

' Introduction: In today's fast-paced digital world, Infrastructure as Code (IaC) has become an essential tool for developers and system administrators to create and manage their infrastructure using code. Terraform is a popular, cloud-independent I...


131: Introduction to Dapr Part-2

https://techblog.geekyants.com/introduction-to-dapr-part-2

Geek y Ants ()

Introduction Please read part 1 of the Introduction to Dapr series before reading this one to learn about the benefits and setup of Dapr. Microservice Based Applications should have the ability to communicate with other services, which is called as inter Service communication. This can happen in two ways Synchronous communication Asynchronous communication Synchronous communication Synchronous [...]


132: Functional Programming in Kotlin: Immutability

https://blog.giolaq.dev/functional-programming-in-kotlin-immutability-clfw2tm6a0588jtnvgpwjes14

Hashnode - Kotlin (Mobiles)

Immutability is an important concept in functional programming. In an immutable programming paradigm, data cannot be changed once it is created. This is in contrast to a mutable programming paradigm, where data can be modified in-place. In Kotlin, th...


133: Solving Common Performance Issues in Django REST Framework

https://ahmadsalah.com/solving-common-performance-issues-in-django-rest-framework

Hashnode - python (python)

Are you experiencing sluggish load times or inefficient database queries in your Django REST Framework (DRF) application' These performance hitches can hinder your app's scalability and impede your development momentum. Fortunately, with the right to...


134: Ledger, DataDome, Effy' Les levées de fonds de la French Tech cette semaine

https://www.usine-digitale.fr/article/ledger-datadome-effy-les-levees-de-fonds-de-la-french-tech-cette-semaine.N2116676

L'usine-digitale (Informatique)

Les start-up de la French Tech ont levé plud de 225 millions d'euros cette semaine, d'après le décompte hebdomadaire d'eCAP PARTNER pour L'Usine Digitale.


135: Hoisting In Javascript ( Part - 1 ): How to stay on Top of Your Code.

https://easily-explain.hashnode.dev/hoisting-in-javascript-part-1-how-to-stay-on-top-of-your-code

Hashnode - javascript (Javascript)

Hoisting is a behavior in JavaScript where variable and function declarations are moved to the top of their respective scopes (global or local) before the code is executed. This means that even if a variable or function is declared later in the code,...


136: Java Interview Series - Question 10

https://shivaprasadgurram.hashnode.dev/java-interview-series-question-10

Hashnode - javascript (Javascript)

Please head over to below LinkedIn post to know more about this question. SQL Question 2 If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG


137: Next JS - CRUD Operations Part - 4

https://manaskrishnajaiswaltechblogs.hashnode.dev/next-js-crud-operations-part-4

Hashnode - javascript (Javascript)

In this four-part blog series, we are going to learn CRUD operations and how to handle them in our next JS application. CRUD stands for Create, Read, Update and Delete, we will code all the CRUD operation handlers. In this part, we are going to study...


138: Slice vs Splice: Understanding the Difference Between Two Essential JavaScript Array Methods

https://ajay020.hashnode.dev/slice-vs-splice-understanding-the-difference-between-two-essential-javascript-array-methods

Hashnode - javascript (Javascript)

In this article, You will understand when and how to use Slice and Splice methods in JavaScript. Both methods are often used to extract, remove or replace and add items to an array. Slice method: Syntex: arr.slice(start_index, end_index) The Slice me...


139: Mastering Closure in Javascript: A Comprehensive Guide

https://taiwoadefowope.hashnode.dev/mastering-closure-in-javascript-a-comprehensive-guide

Hashnode - javascript (Javascript)

Closures are one of the most powerful and fundamental concepts in modern JavaScript development. They enable you to create functions with private variables, handle asynchronous code with callbacks, and more. However, closures can be tricky to master,...


140 / 162

140: My First Tailwind Experience

https://ellahcodes.hashnode.dev/my-first-tailwind-experience

Hashnode - javascript (Javascript)

TailwindCSS: An Efficient Alternative for Building Responsive Websites Intro... As a newcomer to web development, following the standard path of learning HTML, CSS, and JavaScript before moving on to a framework of your choice is ideal. However, for ...


141: Explaining Riverpod Concepts to a 5 y/o

https://carlosdev.hashnode.dev/explaining-riverpod-concepts-to-a-5-yo

Hashnode - Flutter (Flutter)

Hello there '', I got motivated to write this article because I started out the year with a 30 days challenge to learn something new related to my tech stack (Flutter). So I would be explaining some concepts and how I understood them via various re...


142: Why persisting incremental user states is hard

https://karthikramen.hashnode.dev/why-persisting-incremental-user-states-is-hard

Hashnode - javascript (Javascript)

This post was originally published on Dopt's blog. Stateful user flows Almost every modern SaaS product is made up of many experiences where users enter flows and take progressive, discrete steps which need to be saved and updated across multiple ses...


143: Bringing Sharing to Reels on Instagram to More Developers

https://developers.facebook.com/blog/post/2023/03/30/bringing-sharing-to-reels-on-instagram-to-more-developers/

Facebook dev. (PHP)

Last year, we started testing Sharing to Reels on Instagram ' a seamless way for people to share video directly to Instagram Reels from some of their favorite apps, including Videoleap, Reface, Smule, VivaVideo, SNOW, b612, VITA, and Zoomerang.


144: JavaScript Scopes

https://adamakinwole.hashnode.dev/javascript-scopes

Hashnode - javascript (Javascript)

As a developer, writing clean, bug-free code is essential, and understanding how scopes work is crucial to achieving that. If you have ever written a line of code,then you have definitely used any of JavaScript scopes without probably knowing it. Sco...


145: I Failed 3 Job Applications, Here's What I Learned

https://blog.alexewerlof.com/p/3-job-applications

pointer.io (Développement)

'Today after 23 years, I have a relatively high level leadership position but it wasn't always like this. As an introvert in a world that's optimized for extroverts I had a long and painful learning curve.' Alex provides us with tips he's learned and mistakes he's made applying for jobs at Datadog, Spotify and Shopify.


146: Postgres <> ChatGPT

https://github.com/cloudquery/pg_gpt

pointer.io (Développement)

Enable the use of OpenAI GPT inside PostgreSQL.


147: Don't Yell At The Weather

https://hagakure.substack.com/p/twh52-dont-yell-at-the-weather

pointer.io (Développement)

Yelling at the weather sums up the reality of senior leadership in many companies when trying to 'fix' a complex system. Paulo gives us a recipe to approach such a situation. The crux is to understand that failure is 'the price of admission to discover the path to success,' and create a culture of rapid experimentation to embrace that philosophy. Paulo discusses this in detail here.


148: Rust Is A Scalable Language

https://matklad.github.io/2023/03/28/rust-is-a-scalable-language.html

pointer.io (Développement)

Rust is vertically scalable as you 'can write all kinds of software in it,' as well as horizontally scalable - you 'can easily parallelize development of large software artifacts across many people and teams.' Alex elaborates on both.


149: The 9 Principles Of The Perfect Startup Engineering Stack

https://www.withcoherence.com/post/the-9-principles-of-the-perfect-startup-engineering-stack?utm_medium=advertising&utm_source=pointer&utm_campaign=newsletter

pointer.io (Développement)

Zach Zaro, CEO and cofounder of Coherence, outlines the 9 principles of the perfect startup engineering stack. 'A well-chosen set of developer tools can be the key to moving quickly. The ideal stack should be easy to set up, affordable, and integrate services that your team already knows and trusts.'


150 / 162

150: Directly Responsible Individuals

https://about.gitlab.com/handbook/people-group/directly-responsible-individuals/

pointer.io (Développement)

GitLab assigns a "Directly Responsible Individual" (DRI) to every project who is ultimately accountable for its success or failure. This article discusses how DRIs operate and their characteristics: (1) Detail-orientated without losing a strong strategic perspective. (2) Calm under the pressure of implementation and deadlines. (3) Strong listener with great skill at asking questions. And more.


151: You Want Modules, Not Microservices

https://blogs.newardassociates.com/blog/2023/you-want-modules-not-microservices.html

pointer.io (Développement)

Ted dissecting the concept of a microservice to 'get to the real root of what's going on' arguing there's a mis-match between its promise and what it actually delivers.


153: ChatGPT Plugins: Build Your Own In Python!

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

pointer.io (Développement)

OpenAI's ChatGPT launched plugins, which can be built by anyone. James demonstrates how to build a plugin using the chatgpt-retrieval-plugin template.


154: Taxy AI

https://github.com/TaxyAI/browser-extension

pointer.io (Développement)

Perform repetitive actions on your behalf in the browser.


155: Postgres: The Graph Database You Didn't Know You Had

https://www.dylanpaulus.com/posts/postgres-is-a-graph-database

pointer.io (Développement)

Dylan shows us how we can store and query graph data structures in Postgres, something he did at his previous job to dynamically generate work instructions on a manufacturing line. 'Based on parameters given, and rules defined on each edge, we could generate the correct document by traversing a graph stored entirely in Postgres.'


156: Demain, l'éolien et le solaire flottants pourront répondre aux besoins d'énergie de l'humanité

https://www.rtflash.fr/demain-l-eolien-et-solaire-flottants-pourront-repondre-besoins-d-energie-l-humanite/article

Tregouet.org ()

Le dernier rapport du Giec, sorti il y a quelques jours, nous rappelle que, sans efforts supplémentaires pour réduire nos émissions de gaz à effet de serre, nous nous acheminons vers une augmentation de 2,7° de la température mondiale d'ici la fin du siècle, ce qui risque d'avoir des conséquences considérables et catastrophiques pour l'humanité. [...]


157: Import maps go universal

https://javascriptweekly.com/issues/632

javascriptweekly (Javascript)

#'632 ' March 31, 2023 Read on the Web JavaScript Weekly JavaScript Import Maps Now Supported Cross-Browser ' ES modules provide a modern way to include and reuse JavaScript code in web apps, and import maps provide the bridge between using module names in code and where those modules can actually be loaded from. Thomas Steiner (Chrome Developers) ' The import map news [...]


158: How I Learn JavaScript: Control Flow

https://adekola.hashnode.dev/how-i-learn-javascript-control-flow

Hashnode - javascript (Javascript)

Definition of Control Flow Control flow refers to the order in which statements are executed in a program. JavaScript provides several control structures that allow you to control the flow of your code and perform different actions based on certain c...


159: Type Conversion Demystified: A Beginner's Guide to JavaScript

https://shivposted.hashnode.dev/type-conversion-demystified-a-beginners-guide-to-javascript

Hashnode - javascript (Javascript)

JavaScript is a dynamically-typed language, which means that the data type of a variable can change at runtime. Type conversion is the process of converting a value from one data type to another in JavaScript. This conversion can be done implicitly o...


160 / 162

160: Transitions an element's height

https://saidmounaim.hashnode.dev/transitions-an-elements-height

Hashnode - javascript (Javascript)

Hello Guuys! To transitions an element's height from 0 to auto when its height is unknown. Use transition to specify that changes to max-height should be transitioned over. Use overflow: hidden to prevent the contents of the hidden element from ove...


161: Value type vs Reference type in JavaScript

https://badreddineboudaoud.hashnode.dev/value-type-vs-reference-type-in-javascript

Hashnode - javascript (Javascript)

Introduction JavaScript is a dynamic, loosely typed language that allows developers to create and manipulate variables with ease. One of the fundamental concepts in JavaScript is the difference between reference and value types. Understanding the dif...


162: New on the web: How to detect disabled JavaScript in CSS (blogPost)

https://www.stefanjudis.com/blog/how-to-detect-disabled-javascript-in-css/

Stefan Judis (Développement)

How many people actively disable JavaScript in their browsers' I couldn't find any recent stats to answer this question, but if my memory doesn't fail me, it's only a tiny fraction of the overall web traffic (below 1%). And that's no surprise. Have you tried using the web without JS' If so, I doubt you've come very far. JavaScript drives everything from small widgets and form validation to full-fl [...]




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