Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).
La veille Haut de page Lendemain
https://it-louange.me/web-scraping-practice0
What You Need : Before we start to dive deep into scraping projects, you will need to watch the previous parts of the series web Scraping 101, which includes five Parts. As well, look for the documentation of the provided library and tools, that you ...
https://fjolt.hashnode.dev/checking-if-a-value-is-a-number-in-javascript-with-isnan
In Javascript, we have numerous ways to check if something is or is not a number. This is a particularly common task in Javascript, where there is dynamic typing, resulting in some unexpected things being classified as numbers. Typescript fixes some ...
https://moeen.hashnode.dev/styling-components-with-stylesheet-react-native
How does styling work in React Native' Styling in React Native is done using JavaScript. Since React components have support for the style prop, you can also create an object of style values and pass them on to the component as props. The style names...
https://agnivesh.hashnode.dev/reactjs-mastery-chapter-2
Props and Children In this reading, you will learn about props and children, what are their purpose and how they are utilized in React components. Introduction to Props You might have studied about parameters in a JavaScript function that allows to...
As technology continues to advance, the demand for front-end developers is increasing. Front-end developers play a crucial role in creating the user interface and user experience of a website or application. They use a combination of HTML, CSS, and J...
https://www.alsacreations.com/article/lire/1887-LAPIVibration.html
L'API Vibration en JavaScript permet d'accéder à la fonctionnalité de vibration sur les appareils compatibles, notamment mobiles. Pour l'utiliser, vous pouvez d'abord vérifier si l'appareil prend en charge la vibration en examinant la propriété navigator.vibrate. Si cette propriété existe, vous pouvez utiliser la méthode navigator.vibrate() pour déclencher la vibration, en précisant la [...]
https://www.alsacreations.com/article/lire/1887-L-API-Vibration.html
L'API Vibration en JavaScript permet d'accéder à la fonctionnalité de vibration sur les appareils compatibles, notamment mobiles. Pour l'utiliser, vous pouvez d'abord vérifier si l'appareil prend en charge la vibration en examinant la propriété navigator.vibrate. Si cette propriété existe, vous pouvez utiliser la méthode navigator.vibrate() pour déclencher la vibration, en précisant la [...]
https://www.alsacreations.com/article/lire/1887-LAPI-Vibration.html
L'API Vibration en JavaScript permet d'accéder à la fonctionnalité de vibration sur les appareils compatibles, notamment mobiles. Pour l'utiliser, vous pouvez d'abord vérifier si l'appareil prend en charge la vibration en examinant la propriété navigator.vibrate. Si cette propriété existe, vous pouvez utiliser la méthode navigator.vibrate() pour déclencher la vibration, en précisant la [...]
https://guluarte.com/how-to-create-python-venv
Instaling python3-venv $sudo apt-get update $sudo apt-get install python3-venv -y Creating a virtual env in python Go to your project directory cd /path/to/your/project Create the virtual environment python -m venv venv Load the environment so...
10 / 100
https://lavary.hashnode.dev/get-viewport-width-and-height-in-javascript-with-examples
Sometimes you need to get the viewport width (or height) in JavaScript ' probably to adjust an element based on the window size. The good news is, it's easy and quick! Let's see how. ' Update: This post was originally published on my blog decodingwe...
https://lavary.hashnode.dev/about-dirname-is-not-defined-in-es-module-scope-in-javascript
The error "__dirname is not defined in ES module scope" means you're using __dirname global variable in an ES (ECMAScript) module. ' Update: This post was originally published on my blog decodingweb.dev, where you can read the latest version for a '...
https://lavary.hashnode.dev/how-to-get-yesterdays-date-in-javascript-without-a-library
To get yesterday's date in JavaScript, you need to get today's date and use setDate() of the Date object to subtract a day from it. ' Update: This post was originally published on my blog decodingweb.dev, where you can read the latest version for a ...
https://lavary.hashnode.dev/subtract-days-from-a-date-in-javascript-without-a-library
To subtract a few days from a date in JavaScript, you need to use setDate() on a Date object and decrement the current day of the month ' returned by getDate() ' by one or more days. ' Update: This post was originally published on my blog decodingwe...
https://lavary.hashnode.dev/get-the-day-of-the-week-in-javascript-without-a-library
If you need to get the day of the week in JavaScript, you can do so with the standard Date object methods ' without using a third-party library. ' Update: This post was originally published on my blog decodingweb.dev, where you can read the latest v...
https://lavary.hashnode.dev/javascript-double-exclamation-mark-explained-with-examples
You might have noticed a double exclamation mark (!!) in JavaScript code and you may be curious about what that means. ' Update: This post was originally published on my blog decodingweb.dev, where you can read the latest version for a ' user exper...
https://lavary.hashnode.dev/javascript-ifelse-shorthand-explained-with-common-uses-cases
If you're looking for the shorthand of if/else in JavaScript, you need to use the ternary ' a.k.a the conditional ' operator. ' Update: This post was originally published on my blog decodingweb.dev, where you can read the latest version for a ' use...
https://lavary.hashnode.dev/about-str-object-has-no-attribute-decode-error-in-python
If you're getting the 'AttributeError: 'str' object has no attribute 'decode' error, you're probably calling decode() on a string value (str object) in Python 3. ' Update: This post was originally published on my blog decodingweb.dev, where you can ...
https://stevepurpose.hashnode.dev/high-level-and-low-level-programming-languages
I recall when I first started to code,started with HTML,CSS and then I moved on to JavaScript.One day while studying ,I came across a topic 'Memory management in JavaScript' . Now the text talked about Garbage collectors in High-level languages and a...
What is twitter-text-js' The library provides auto-linking and extraction for URLs, usernames, lists, and hashtags. Install Twitter Text for your Project npm i twitter-text import twitterText from "twitter-text"; console.log(twitterText) //logs bel...
20 / 100
What is PostgreSQL' PostgreSQL is a powerful relational database management system (RDBMS) that many organizations use. Connecting to it is easy, and thanks to the great Python ecosystem, getting your data into a Data Frame in Pandas is just as easy....
https://vishal-savaliya.hashnode.dev/difference-between-var-let-and-const-in-javascript
In 2015 ES6 get released and it changed the way how we declare and use the variables in javascript. The new variable declaration methods were introduced in the ES2015( ES6 ), The let and const. These two methods solve the problems developers face wor...
https://ocxigin.hashnode.dev/build-a-chartgpt-clone-with-tailwindcss-and-javascript
Hello Dev, in today's project, we are going to be building a chartGPT clone App using TailwindCSS and JavaScript. Here is the demo of the complete project. you can also download the full project files on GitHub. Stacked used We are going to be makin...
https://outofideasexception.hashnode.dev/having-fun-with-web-development
My biggest struggle is having the energy to pound away at a keyboard in the evenings after hours. I get up in the morning and log into work. I then spend the next 8 - 9 hours pushing myself to support a product that I'm not a big fan of for a company...
https://blog.techlearnindia.com/why-we-use-python
Python is a high-level, general-purpose programming language. It is a very popular language used by developers. Python programming language is used in web development, Machine Learning applications, and many more. Python Programming Language is very ...
https://alphamikle.dev/nanc-backend-agnostic-cms-with-extra-abilities-for-flutter-apps
Intro Hi! Today I want to introduce you the fruit of my months of work at nights and weekends, designed to improve the content management experience and bring additional features to the world of Flutter application development - a new kind of CMS. We...
https://akashpugal.dev/data-cleaning-a-complete-guide
Hey guys,its so good to see you all again in another blog.So this is my last day(Day-7) in 'My 7day journey to Data science' blog series.Since we started our series till now we have learned topics like ' What is Pandas,How can we use Pandas for data ...
https://aashman.hashnode.dev/destructuring-rest-and-spread-operators
Destructuring arrays Destructuring arrays refers to the process of extracting elements from arrays and assigning them to separate variables. This can be done using a destructuring pattern that corresponds to the structure of the array. The pattern is...
https://coney484.hashnode.dev/how-is-kotlin-code-executed-cldrksazo000c09mj8ebbgnr4
Hey Developers, Hope you are all doing well. Well, this is the first tech blog that I am writing so apologize in the beginning only if I am not able to explain my thoughts in words properly. So in this blog, we are going to understand how is kotlin c...
https://biswajitblogs.hashnode.dev/dockerize-python-app
Context We will learn how to automate Docker builds using Jenkins. We will use a Python-based application. I have already created a repo with source code + Dockerfile. We will be creating a Declarative Jenkins pipeline for automating builds. - Autom...
30 / 100
As a JavaScript developer diving into the world of Java, I've observed several keys differences in best practices and conventions. In this post, I'll share my insights on object-oriented programming, code style and formatting, and exception handling ...
https://saimounikaperi.hashnode.dev/this-call-apply-bind-and-function-currying-in-javascript
this keyword this is a predefined keyword in JavaScript. When used in a function, this keyword simply points to an object to which it is bound. It answers the question of where it should get some value or data from. function alert() { console.log...
https://lavary.hashnode.dev/how-to-add-days-to-a-date-in-javascript-without-a-library
' Update: This post was originally published on my blog decodingweb.dev, where you can read the latest version for a ' user experience. ~reza How do you add days to a date in JavaScript' To add a few days to a date in JavaScript, you need to use se...
https://tanishka.hashnode.dev/javascript-all-about-arrays
An array is a special variable, which can hold more than one value and of various data types, unlike the majority of other languages which can hold only similar types of values. const array = ['Ariana', 30.5, false, 'Pete']; They are probably the mo...
https://damue.hashnode.dev/understanding-arrow-function-expressions-in-javascript
According to recent developer surveys, JavaScript is still the most commonly-used programming language in the world and it remains in high demand by various organizations across the globe. In light of that piece of information coupled with the fact t...
https://blog.illestpreacha.com/wccchallenge-tinyisland
TinyIslandMultiversing For this week's Creative Code challenge by @sableRalph : Tiny Island, I decided to have an interactive mouse experience coded in Hydra. The audio is coded in SonicPi To fit in the theme, I decided to take the following countrie...
https://theefayy.hashnode.dev/quick-intro-to-vuex
This article covers what Vuex is, the core concepts of Vuex, and how to get started with Vuex. What is Vuex' Vuex is a state management library that allows users to create a global store where they can store data such as variables, states, and method...
https://victoroz.hashnode.dev/how-to-use-local-storage-and-the-cache-api
In the early days of the web, client-side storage options were pretty limited. We had cookies, which were small text files that could be used to store a little bit of data on the user's device. But cookies had some serious limitations, such as the 4K...
https://meanstack.hashnode.dev/best-practices-for-securing-your-nodejs-apps
Securing a Node.js application is essential in today's digital world as it helps protect sensitive user data and prevents malicious attacks. In this article, we'll discuss the best practices for securing your Node.js apps. Keep your software up-to-da...
https://omardevblog.toolsandapps4us.site/how-to-use-chatgpt-3-into-python
ChatGPT is a state-of-the-art language model developed by OpenAI. It is a deep learning model trained on a vast amount of text data, allowing it to generate human-like text and respond to text-based inputs. It is considered one of the most advanced l...
40 / 100
WebProNews Proposed Patch Would Disable Linux CPU Security Mitigations at Compilation Debian developer Breno Leitao has proposed a Linux kernel patch that would allow developers to disable CPU security mitigations at compilation. Proposed Patch Would Disable Linux CPU Security Mitigations at Compilation Staff
https://chidera6.hashnode.dev/my-2022-review-as-a-python-backend-developer
A little background. It wasn't until I was done with my University education in 2018 that I became active on Twitter. By active, I mean viewing people's posts, as I am an introvert. A particular tweet by one Tunde caught my attention he keeps on ment...
https://sinavski.com/python-interfaces-abandon-abc-and-switch-to-protocols
I used a standard Python library abc to define interfaces for the last 10 years of my career. But recently, I found that relatively new Python Protocols are way nicer. People find uses for both technologies. But I want to convince you to completely j...
https://mitblog.hashnode.dev/front-end-technology
HTML: HTML stands for Hypertext Markup Language. HTML used for making a static webpage with a different type of tags. HTML is used for Formatting or structuring webpages. HTML is structured language with it we can make userfriendly and interactive we...
https://shahxcode.hashnode.dev/implementing-stack-data-structure-in-javascript
A stack is a linear data structure that follows the Last In First Out (LIFO) or the First In Last Out (FILO) principle. This means that the last element added to the stack will be the first one to be removed. Stacks are used in a variety of applicati...
https://www.webpronews.com/google-is-prepping-an-ios-browser-that-uses-chromes-engine/
WebProNews Google Is Prepping an iOS Browser That Uses Chrome’s Engine Google's engineers are reportedly working on an iOS version of Chrome that will use Chrome's Blink rendering engine instead of iOS WebKit. Google Is Prepping an iOS Browser That Uses Chrome’s Engine Staff
https://blog.sahilchandravanshi.com/react-jsx
What is JSX' We can't talk about React without first explaining JSX. JSX provides you to write HTML/XML-like structures (e.g., DOM-like tree structures) in the same file where you write JavaScript code, then the preprocessor will transform these exp...
React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called 'components'. A starter kit is a set of pre-existing codes that you can lau...
https://blograjsahu.hashnode.dev/get-started-quickly-with-nextjs-reacts-fastest-framework
What is Next js ' Next.js is a popular React framework for creating fast, modern web applications. It provides an intuitive setup process and a robust set of features to customize your app with plugins, allowing you to quickly build the perfect web a...
https://rajsahu-blog.com/get-started-quickly-with-nextjs-reacts-fastest-framework
What is Next js ' Next.js is a popular React framework for creating fast, modern web applications. It provides an intuitive setup process and a robust set of features to customize your app with plugins, allowing you to quickly build the perfect web a...
50 / 100
https://harshitsharma.hashnode.dev/what-is-yaml
YAML stands for Yet Another Markup Language or YAML ain't Markup Language, and it is a data serialization language used to write configuration files. But what is data serialization'' Data Serialization: A process of converting a data object into a se...
https://www.webpronews.com/creative-revolution/
WebProNews <strong>The Wristwatch That Inspired a Creative Revolution</strong> Learn more about the fascinating story of a gift of a wristwatch that inspired a creative revolution in the article below. <strong>The Wristwatch That Inspired a Creative Revolution</strong> Brian Wallace
https://zsevic.hashnode.dev/spies-and-mocking-with-jest
Unit testing, in addition to output testing, includes the usage of spies and mocking. Spies are functions that let you spy on the behavior of functions called indirectly by some other code. Spy can be created by using jest.fn(). Mocking injects test ...
https://kansi.hashnode.dev/v8-javascript-engine
The V8 JavaScript Engine is a powerful, open-source JavaScript engine developed by Google. It was designed to interpret and execute JavaScript code efficiently and quickly, making it ideal for use in web browsers, servers, and other applications. One...
https://blog.theparitoshkumar.com/introduction-to-python-programming-language
Python Programming Language Python is a high-level, interpreted, and general-purpose programming language. It was first released in 1991 and has become one of the most popular programming languages, due to its simplicity and ease of use. Python suppo...
https://moreshwar.hashnode.dev/session-storage
The SessionStorage is used less often than the LocalStorage and all the properties and methods are the same as that of LocalStorage. Session Storage Capacity is 5 MB The difference is that while data in localStorage doesn't expire, data in sessionSto...
https://rudrakshithakur.hashnode.dev/introduction-to-javascript-dt-operators
History of Javascript: Before moving onto the datatypes and operators let's dive into the history of javascript! It all started in year 1995 when javascript came into into market and was then known as MOCHA. After an year in 1996 the name changed to ...
https://ydnysh.hashnode.dev/perlin-noise-algorithm
In the realm of video games, particularly in open-world games, we are often impressed by the realism of the graphics and textures. Games like God of War, GTA, Assassin's Creed, etc (there are lots of amazing open-world games out there but I'm mention...
https://ydnysh.ridingthetechwave.com/perlin-noise-algorithm
In the realm of video games, particularly in open-world games, we are often impressed by the realism of the graphics and textures. Games like God of War, GTA, Assassin's Creed, etc (there are lots of amazing open-world games out there but I'm mention...
https://vinayak1937.hashnode.dev/map-method-in-javascript-es6
If you need to access an element in an array, commonly we iterate through the array using loops, Instead of manually iterating over the array using a loop, you can simply use the built-in Array. map method. The map method creates a new array with the...
60 / 100
https://scofield.hashnode.dev/create-a-whatsapp-bot-that-schedules-automates-messages-on-the-cloud
In this article, we will create a bot that automates your message and sends them automatically and on time as long as you need, even if your network is down or unavailable. To jump on this tutorial, you need the following. Perquisite Twilio account ...
https://cracktechcode.hashnode.dev/what-python-code-is-used-to-encode-a-message-in-an-image
Here's a simple example of how you could encode a message in an image using Python: from PIL import Image # Open the image img = Image.open("image.png") # Get the pixel data as a list of tuples pixels = list(img.getdata()) # Encode the message int...
https://mrrahulrc.hashnode.dev/workerthreads-in-nodejs
Worker_threads is a built-in module in Nodejs that lets you run multiple threads in parallel which executes the Javascript, so now the question arises, when do we need to run multiple threads' well, when you want to run a CPU-intensive task in parall...
https://nooptoday.hashnode.dev/dynamic-modules-in-nestjs
Creating dynamic modules in NestJS can be complex. Use this method and you will never be afraid of creating dynamic modules again! NestJS module system is very helpful. They allow us to organize our code, and they help us define module boundaries. W...
https://sagar0-0.hashnode.dev/abstract-classes-and-interfaces-in-kotlin-a-complete-guide
Kotlin provides two mechanisms for defining a blueprint for classes: abstract classes and interfaces. Both abstract classes and interfaces play important roles in object-oriented programming, but they have different use cases and features. Though in ...
https://monacodelisa.com/building-full-stack-applications-for-angular-developers
Welcome, Angular developers! Are you seeking to enhance your abilities and delve into the world of full-stack development' If so, you've arrived at the right place. In this article, I will be discussing the most sought-after options for constructing ...
https://james-reed.hashnode.dev/using-objects-in-javascript
Arrays are ordered collections of data that we can use to store multiple items. They do have their limitations, however. const student = ['John', 'Computer Science', 25, 'Doe']; The array is stored in a variable called student which relates to the c...
https://spaceofmiah.hashnode.dev/jwt-authentication-in-fastapi-comprehensive-guide
Hi and welcome. In this guide, we'll build a JWT authentication system with FastAPI. By the end of this walkthrough, you should have a system ready to authenticate users. We'll use SQLAlchemy as ORM for Postgres DB and alembic as a migration tool. Ap...
https://blog.nischalnikit.com/inside-websockets-building-a-chat-application
' Introduction There are a few things I can conjure up while you read this sentence. One, you just read this. Second, you probably texted someone in the last second, an hour or maybe today. Live communication between us through texts/images/gifs or ...
https://muskanblogs.hashnode.dev/why-to-become-a-certified-python-programmer-in-2022
What is a python certification' Python programmers are in high demand right now and will continue to do so in the near future. Companies are looking for python programming skills in professional software developers. A Python certification is the acqu...
70 / 100
https://blog.jayeshkarli.dev/mongodb-data-types
In my last article about MongoDB, I wrote about what it is and why should you learn it. Today we'll learn a bit more about the data types that we can store in MongoDB. JSON vs BSON In my last article, I mentioned that MongoDB uses BSON data type and ...
https://aayushsinha.hashnode.dev/python-basics-3-variables-expressions-and-comments
Hello '' and welcome to third blog of series The Pythonic Way. Now that you have written your first line of code in python. Its time to understand some basic elements of a python program i.e, Variables , Expressions and Comments. A program is simpl...
https://pushpamali.hashnode.dev/variables-in-javascript
A variable is a container for a value. A variable is a 'named storage' for data. There are two types of variables in JavaScript: local variable and global variable. These variables can be defined using keywords var or let or const. let First, we will...
https://devopsforall.hashnode.dev/netlify-the-website-hosting-service-thats-a-laugh-riot
You know what's not funny' Slow website loading times. And outdated design. And losing your website's data. But you know what is' Netlify. Yes, that's right folks, Netlify is the website hosting service that's taking the world by storm and making web...
For many years, JavaScript has been used largely for client-side development; however, in recent years, it has become more and more well-liked as a language for server-side development. JavaScript has evolved into a full-stack language with the intro...
https://jaxongir-rahimov.hashnode.dev/react-todo-crud-app-with-redux-and-typescript
Hi guys, In today's post we are going to be building a todo application with CRUD operations using React, Redux-Toolkit, and Typescript. Once we'd complete building the app, we're going to be hosting it as well on netlify to share it with others. And...
https://akashpugal.dev/data-analysis-working-with-filescsvsqlhtmlexcel
Hey folks, It's so happy to see you all in another blog. As you all know I'm Akash Pugal from India and this is Day 6 in the 'My 7-day journey to Data Science' blog series. Till the previous blog, we have seen about how to work with Pandas and NumPy ...
https://dheerajy1.hashnode.dev/learning-call-apply-and-bind-method-in-javascript-day111
Today #Day111 of #365DaysOfCode, Learning call, apply and bind methods in JavaScript. 1. call () let name1 = { firstname: "Elon", lastname: "Musk", printFUllname: function(){ console.log(`${this.firstname} ${this.lastname}`) }...
https://mochatek.hashnode.dev/monkey-patching-in-python
Monkey patching refers to modifying or updating a piece of code or class or any module at runtime. With that, we can change the behaviour or working of a class/ module dynamically without affecting the original source code. This can be useful in a v...
https://jorgecastro.hashnode.dev/rss-reader-in-python-for-discord
Hey guys, I hope everyone is having a good day. Today I want to create a short article on how to read RSS feeds with Python and notify a Discord channel using Webhook. First of all I wanted to use some of the Discord bot alternatives on the market, b...
80 / 100
In this blog post, you would know about web designers and web developers. After reading this blog you would be able to choose which one is best for you, what are the salaries of the niche and in the end, you would get some pro tips from us to start y...
https://rakeshdeka.hashnode.dev/garbage-collection-in-js
In Javascript, garbage collection is not something that we ever have to think about. It does all the work behind the scenes, but it is always helpful to understand how our code works. In most programming languages, garbage collection is built-in. It'...
https://permadi.hashnode.dev/tutorial-membuat-blog-dengan-nuxtjs-3-dan-nuxt-content-v2
Softwere VS Code Laragon
https://vixalsahu.hashnode.dev/operators-in-javascripts
JavaScript operators are symbols that are used to perform operations on operands. There are some types of operators in JavaScript. Arithmetic Operators Comparison Operators Bitwise Operators Logical Operators Assignment Operators Arithmetic Op...
https://hmtserver.hashnode.dev/beginning-of-a-full-stack-developer
Hello everyone! I am thrilled to announce the start of my journey as a developer. As a beginner, I am filled with excitement and curiosity about this field, and I can't wait to learn and grow as a developer. With this article, I am sharing my experie...
https://searchengineland.com/search-marketing-history-february-5-392678
Moz updates DA, plus: spammy structured markup, Google launches link reporting tools, search deals, Super Bowls, antitrust, and more. The post This day in search marketing history: February 5 appeared first on Search Engine Land.
https://adicode.ml/pythons-role-in-spotifys-cutting-edge-technology
Hello There ' Welcome to a deep dive into the world of Spotify's technology. In this post, we will explore the key role played by Python in powering Spotify's tech stack. From server-side development to data analysis and beyond, we'll see how Python...
https://blog.nirmalcode.com/1-whatsapp-opener-flutter-app
Idea Enter a phone number with the country code and press a button to open the Whatsapp app or web. Techstack Flutter Packages Flutter bloc Freezed VSCode Let's code Initial project setup flutter create whatsapp_opener Remove all the commen...
https://jamess.hashnode.dev/about-me
Hello there, my name is James, and I'm a frontend developer. I've been into software development for 5 years. My journey in tech so far has been very exciting. I've gotten to explore tools, frameworks, and coding ethics'haha'. I'm also very passiona...
https://svdcse.xyz/what-are-the-differences-between-crud-and-rest-in-nodejs
CRUD (Create, Read, Update, Delete) and REST (Representational State Transfer) are two different concepts used in web development. CRUD refers to the basic operations that are performed on data in a database. It represents the four basic functions fo...
90 / 100
https://svdcse.xyz/what-are-the-difference-between-crud-and-rest-in-nodejs
CRUD (Create, Read, Update, Delete) and REST (Representational State Transfer) are two different concepts used in web development. CRUD refers to the basic operations that are performed on data in a database. It represents the four basic functions fo...
https://fjolt.hashnode.dev/javascript-arrays-how-to-remove-duplicate-elements
Javascript arrays can contain duplicates - which is fine most of the time, but can sometimes cause some issues. For example, if an array is supposed to only contain unique user IDs, but is taken from a data source which may contain duplicates: let us...
https://fjolt.hashnode.dev/javascript-arrays
Arrays in Javascript are a simple, one dimensional way to store simple sets of data. Arrays are non unique, which means they can store duplicates (unlike sets). They also follow typical prototype inheritance, as with other Javascript types. That just...
https://radiantcodes.hashnode.dev/computed-properties-in-vuejs
Computed properties in Vue.js 3 are special properties that are derived from other properties in a component. They are calculated on-the-fly and cached for performance, so that their values are updated whenever the source properties change. Computed ...
https://fjolt.hashnode.dev/javascript-tolowercase-convert-strings-to-lowercase
a String is a type of data in Javascript, and as with any other type of data, Strings have prototypes and therefore inherit standard methods. One of these methods is toLowerCase(), which you'll often see written as String.prototype.toLowercase(). Thi...
https://fjolt.hashnode.dev/how-to-check-if-object-is-empty-in-javascript
Defining a new object in Javascript is pretty easy - but what if you want to find out if it's empty' For example, {} is an empty object, but how do we actually test that this is the case' let myObject = {} The easiest (and best) way to do this, is t...
https://fjolt.hashnode.dev/javascript-promiseall-everything-you-need-to-know
The Promise.all() method in Javascript is a function which accepts many promises, and then does something only after they have all been settled. From all the promises you enter into it, it creates a new promise which then waits for each promise to fi...
https://www.stefanjudis.com/today-i-learned/macos-offers-a-tool-to-remove-backgrounds-from-images/
The following discovery passed my social feed, and I'm still super excited about this hidden macOS gem. I do a lot of YT thumbnails these days and usually use remove.bg to remove backgrounds from pictures. But this feature is natively included in macOS these days! ' macOS background removal via Quick Actions I don't follow all the new OS fea [...]
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.
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.