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

« Février 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


5 Février 2023 (100)

1: Web Scraping Practice_0

https://it-louange.me/web-scraping-practice0

Hashnode - javascript (Javascript)

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 ...


2: Checking if a value is a number in Javascript with isNaN()

https://fjolt.hashnode.dev/checking-if-a-value-is-a-number-in-javascript-with-isnan

Hashnode - javascript (Javascript)

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 ...


3: Styling Components With StyleSheet-React Native

https://moeen.hashnode.dev/styling-components-with-stylesheet-react-native

Hashnode - javascript (Javascript)

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...


4: React.js Mastery- Chapter 2

https://agnivesh.hashnode.dev/reactjs-mastery-chapter-2

Hashnode - javascript (Javascript)

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...


5: Become a Front-End Developer in 2023: A Comprehensive Guide to Mastering the Skills and Tools:-

https://vaibhavtiwari.dev/become-a-front-end-developer-in-2023-a-comprehensive-guide-to-mastering-the-skills-and-tools

Hashnode - javascript (Javascript)

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...


6: L'API Vibration

https://www.alsacreations.com/article/lire/1887-LAPIVibration.html

Alsacreations (CSS / Accessibilité)

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 [...]


7: L'API Vibration

https://www.alsacreations.com/article/lire/1887-L-API-Vibration.html

Alsacreations (CSS / Accessibilité)

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 [...]


8: L'API Vibration

https://www.alsacreations.com/article/lire/1887-LAPI-Vibration.html

Alsacreations (CSS / Accessibilité)

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 [...]


9: How to create a python virtual environment

https://guluarte.com/how-to-create-python-venv

Hashnode - python (python)

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

10: Get viewport width and height in JavaScript (with examples)

https://lavary.hashnode.dev/get-viewport-width-and-height-in-javascript-with-examples

Hashnode - javascript (Javascript)

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...


11: About '__dirname is not defined in ES module scope' in JavaScript

https://lavary.hashnode.dev/about-dirname-is-not-defined-in-es-module-scope-in-javascript

Hashnode - javascript (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 '...


12: How to get yesterday's date in JavaScript without a library

https://lavary.hashnode.dev/how-to-get-yesterdays-date-in-javascript-without-a-library

Hashnode - javascript (Javascript)

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 ...


13: Subtract days from a date in JavaScript without a library

https://lavary.hashnode.dev/subtract-days-from-a-date-in-javascript-without-a-library

Hashnode - javascript (Javascript)

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...


14: Get the day of the week in JavaScript without a library

https://lavary.hashnode.dev/get-the-day-of-the-week-in-javascript-without-a-library

Hashnode - javascript (Javascript)

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...


15: JavaScript double exclamation mark explained (with examples)

https://lavary.hashnode.dev/javascript-double-exclamation-mark-explained-with-examples

Hashnode - javascript (Javascript)

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...


16: Javascript if/else shorthand explained (with common uses cases)

https://lavary.hashnode.dev/javascript-ifelse-shorthand-explained-with-common-uses-cases

Hashnode - javascript (Javascript)

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...


17: About "'str' object has no attribute 'decode'" error in Python

https://lavary.hashnode.dev/about-str-object-has-no-attribute-decode-error-in-python

Hashnode - python (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 ...


18: High Level And Low Level Programming Languages

https://stevepurpose.hashnode.dev/high-level-and-low-level-programming-languages

Hashnode - javascript (Javascript)

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...


19: Twitter Text JS to extract URLs, usernames, lists, and hashtags from a post.

https://venkateshprasad.hashnode.dev/twitter-text-js-to-extract-urls-usernames-lists-and-hashtags-from-a-post

Hashnode - javascript (Javascript)

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

20: A Quick Start to Connecting to PostgreSQL and Pulling Data into Pandas

https://hashnode.dataknowsall.com/a-quick-start-to-connecting-to-postgresql-and-pulling-data-into-pandas

Hashnode - python (python)

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....


21: Difference Between Var, Let, and Const in Javascript

https://vishal-savaliya.hashnode.dev/difference-between-var-let-and-const-in-javascript

Hashnode - javascript (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...


22: Build a chartGPT clone with TailwindCSS and JavaScript

https://ocxigin.hashnode.dev/build-a-chartgpt-clone-with-tailwindcss-and-javascript

Hashnode - javascript (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...


23: Having Fun With Web Development

https://outofideasexception.hashnode.dev/having-fun-with-web-development

Hashnode - javascript (Javascript)

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...


24: Why we use python!

https://blog.techlearnindia.com/why-we-use-python

Hashnode - python (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 ...


25: Nanc - backend-agnostic CMS with extra abilities for Flutter apps

https://alphamikle.dev/nanc-backend-agnostic-cms-with-extra-abilities-for-flutter-apps

Hashnode - Flutter (Flutter)

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...


26: Data Cleaning a complete guide

https://akashpugal.dev/data-cleaning-a-complete-guide

Hashnode - python (python)

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 ...


27: Destructuring, rest and spread operators

https://aashman.hashnode.dev/destructuring-rest-and-spread-operators

Hashnode - javascript (Javascript)

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...


28: How is Kotlin Code Executed '

https://coney484.hashnode.dev/how-is-kotlin-code-executed-cldrksazo000c09mj8ebbgnr4

Hashnode - Kotlin (Mobiles)

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...


29: Dockerize Python App

https://biswajitblogs.hashnode.dev/dockerize-python-app

Hashnode - python (python)

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

30: Unleash the Power of Java: A JavaScript Developer's Guide to Best Practices in Java Development

https://blog.timdehof.dev/unleash-the-power-of-java-a-javascript-developers-guide-to-best-practices-in-java-development

Hashnode - javascript (Javascript)

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 ...


31: this, call(), apply(), bind() and Function Currying in JavaScript

https://saimounikaperi.hashnode.dev/this-call-apply-bind-and-function-currying-in-javascript

Hashnode - javascript (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...


32: How to add days to a date in JavaScript (without a library)

https://lavary.hashnode.dev/how-to-add-days-to-a-date-in-javascript-without-a-library

Hashnode - javascript (Javascript)

' 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...


33: JavaScript : All About Arrays

https://tanishka.hashnode.dev/javascript-all-about-arrays

Hashnode - javascript (Javascript)

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...


34: Understanding Arrow Function Expressions in JavaScript

https://damue.hashnode.dev/understanding-arrow-function-expressions-in-javascript

Hashnode - javascript (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...


35: WCCChallenge: TinyIsland

https://blog.illestpreacha.com/wccchallenge-tinyisland

Hashnode - javascript (Javascript)

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...


36: Quick Intro to Vuex

https://theefayy.hashnode.dev/quick-intro-to-vuex

Hashnode - vuejs (Javascript)

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...


37: How to use local storage and the Cache API

https://victoroz.hashnode.dev/how-to-use-local-storage-and-the-cache-api

Hashnode - javascript (Javascript)

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...


38: Best practices for securing your Node.js apps

https://meanstack.hashnode.dev/best-practices-for-securing-your-nodejs-apps

Hashnode - javascript (Javascript)

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...


39: How to use ChatGPT-3 into Python

https://omardevblog.toolsandapps4us.site/how-to-use-chatgpt-3-into-python

Hashnode - python (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

40: Proposed Patch Would Disable Linux CPU Security Mitigations at Compilation

https://www.webpronews.com/proposed-patch-would-disable-linux-cpu-security-mitigations-at-compilation/

WebProNews SEO (Développement)

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


41: My 2022 Review as a Python Backend Developer.

https://chidera6.hashnode.dev/my-2022-review-as-a-python-backend-developer

Hashnode - python (python)

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...


42: Python interfaces: abandon ABC and switch to Protocols

https://sinavski.com/python-interfaces-abandon-abc-and-switch-to-protocols

Hashnode - python (python)

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...


43: Front - End Technology

https://mitblog.hashnode.dev/front-end-technology

Hashnode - javascript (Javascript)

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...


44: Implementing Stack Data Structure in Javascript

https://shahxcode.hashnode.dev/implementing-stack-data-structure-in-javascript

Hashnode - javascript (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...


45: Google Is Prepping an iOS Browser That Uses Chrome's Engine

https://www.webpronews.com/google-is-prepping-an-ios-browser-that-uses-chromes-engine/

WebProNews SEO (Développement)

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


46: React : The JSX World

https://blog.sahilchandravanshi.com/react-jsx

Hashnode - javascript (Javascript)

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...


47: Understanding React.JS by building a Create-React-App starter Kit

https://buildwithmoscode.hashnode.dev/understanding-reactjs-by-building-a-create-react-app-starter-kit

Hashnode - javascript (Javascript)

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...


48: "Get Started Quickly With Next.js: React's Fastest Framework"

https://blograjsahu.hashnode.dev/get-started-quickly-with-nextjs-reacts-fastest-framework

Hashnode - javascript (Javascript)

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...


49: "Get Started Quickly With Next.js: React's Fastest Framework"

https://rajsahu-blog.com/get-started-quickly-with-nextjs-reacts-fastest-framework

Hashnode - javascript (Javascript)

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

50: What is YAML

https://harshitsharma.hashnode.dev/what-is-yaml

Hashnode - Flutter (Flutter)

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...


51: The Wristwatch That Inspired a Creative Revolution

https://www.webpronews.com/creative-revolution/

WebProNews SEO (Développement)

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


52: Spies and mocking with Jest

https://zsevic.hashnode.dev/spies-and-mocking-with-jest

Hashnode - javascript (Javascript)

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 ...


53: V8 JavaScript Engine

https://kansi.hashnode.dev/v8-javascript-engine

Hashnode - javascript (Javascript)

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...


54: Introduction to Python Programming Language

https://blog.theparitoshkumar.com/introduction-to-python-programming-language

Hashnode - python (python)

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...


55: Session Storage

https://moreshwar.hashnode.dev/session-storage

Hashnode - javascript (Javascript)

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...


56: Introduction to Javascript (DT & Operators)

https://rudrakshithakur.hashnode.dev/introduction-to-javascript-dt-operators

Hashnode - javascript (Javascript)

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 ...


57: Perlin Noise Algorithm

https://ydnysh.hashnode.dev/perlin-noise-algorithm

Hashnode - Unity (unity)

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...


58: Perlin Noise Algorithm

https://ydnysh.ridingthetechwave.com/perlin-noise-algorithm

Hashnode - Unity (unity)

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...


59: Map method in JavaScript ES6

https://vinayak1937.hashnode.dev/map-method-in-javascript-es6

Hashnode - javascript (Javascript)

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

60: Create a WhatsApp Bot that schedules, Automates Messages on the cloud.

https://scofield.hashnode.dev/create-a-whatsapp-bot-that-schedules-automates-messages-on-the-cloud

Hashnode - javascript (Javascript)

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 ...


61: What Python code is used to encode a message in an image'

https://cracktechcode.hashnode.dev/what-python-code-is-used-to-encode-a-message-in-an-image

Hashnode - python (python)

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...


62: Worker_threads in Nodejs

https://mrrahulrc.hashnode.dev/workerthreads-in-nodejs

Hashnode - javascript (Javascript)

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...


63: Best Way to Create Dynamic Modules in NestJS

https://nooptoday.hashnode.dev/dynamic-modules-in-nestjs

Hashnode - javascript (Javascript)

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...


64: Abstract Classes and Interfaces in Kotlin: A Complete Guide

https://sagar0-0.hashnode.dev/abstract-classes-and-interfaces-in-kotlin-a-complete-guide

Hashnode - Kotlin (Mobiles)

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 ...


65: Building Full-Stack Applications - for Angular Developers

https://monacodelisa.com/building-full-stack-applications-for-angular-developers

Hashnode - python (python)

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 ...


66: Using Objects in JavaScript

https://james-reed.hashnode.dev/using-objects-in-javascript

Hashnode - javascript (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...


67: JWT Authentication in FastAPI: Comprehensive Guide

https://spaceofmiah.hashnode.dev/jwt-authentication-in-fastapi-comprehensive-guide

Hashnode - python (python)

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...


68: Inside WebSockets: Building a Chat Application.

https://blog.nischalnikit.com/inside-websockets-building-a-chat-application

Hashnode - javascript (Javascript)

' 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 ...


69: Why to become a certified Python programmer in 2022'

https://muskanblogs.hashnode.dev/why-to-become-a-certified-python-programmer-in-2022

Hashnode - python (python)

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

70: MongoDB Data-Types

https://blog.jayeshkarli.dev/mongodb-data-types

Hashnode - javascript (Javascript)

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 ...


71: Python Basics 3 - Variables , Expressions and Comments

https://aayushsinha.hashnode.dev/python-basics-3-variables-expressions-and-comments

Hashnode - python (python)

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...


72: Variables in JavaScript

https://pushpamali.hashnode.dev/variables-in-javascript

Hashnode - javascript (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...


73: Netlify: The Website Hosting Service That's a Laugh Riot! '

https://devopsforall.hashnode.dev/netlify-the-website-hosting-service-thats-a-laugh-riot

Hashnode - javascript (Javascript)

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...


74: The Benefits and Challenges of Using JavaScript for Server-Side Development

https://srafsan.hashnode.dev/the-benefits-and-challenges-of-using-javascript-for-server-side-development

Hashnode - javascript (Javascript)

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...


75: React Todo CRUD App with Redux and Typescript

https://jaxongir-rahimov.hashnode.dev/react-todo-crud-app-with-redux-and-typescript

Hashnode - javascript (Javascript)

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...


76: Data Analysis - Working with files(CSV,SQL,HTML,EXCEL)

https://akashpugal.dev/data-analysis-working-with-filescsvsqlhtmlexcel

Hashnode - python (python)

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 ...


77: Learning call, apply and bind method in JavaScript Day111

https://dheerajy1.hashnode.dev/learning-call-apply-and-bind-method-in-javascript-day111

Hashnode - javascript (Javascript)

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}`) }...


78: Monkey Patching in Python

https://mochatek.hashnode.dev/monkey-patching-in-python

Hashnode - python (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...


79: RSS reader in Python for Discord

https://jorgecastro.hashnode.dev/rss-reader-in-python-for-discord

Hashnode - python (python)

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

80: Web Developer vs Web Designer | 7 significant points you must be aware of

https://aaltamashzaheer.hashnode.dev/web-developer-vs-web-designer-7-significant-points-you-must-be-aware-of

Hashnode - javascript (Javascript)

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...


81: Garbage Collection in JS

https://rakeshdeka.hashnode.dev/garbage-collection-in-js

Hashnode - javascript (Javascript)

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'...


83: Operators in JavaScripts

https://vixalsahu.hashnode.dev/operators-in-javascripts

Hashnode - javascript (Javascript)

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...


84: BEGINNING OF A Full-Stack Developer

https://hmtserver.hashnode.dev/beginning-of-a-full-stack-developer

Hashnode - python (python)

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...


85: This day in search marketing history: February 5

https://searchengineland.com/search-marketing-history-february-5-392678

Search engine land (Référencement)

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.


86: Python's Role in Spotify's Cutting Edge Technology

https://adicode.ml/pythons-role-in-spotifys-cutting-edge-technology

Hashnode - python (python)

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...


87: 1 - Whatsapp Opener Flutter App

https://blog.nirmalcode.com/1-whatsapp-opener-flutter-app

Hashnode - Flutter (Flutter)

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...


88: All about Me.

https://jamess.hashnode.dev/about-me

Hashnode - javascript (Javascript)

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...


89: What are the differences between CRUD and REST in Node.js

https://svdcse.xyz/what-are-the-differences-between-crud-and-rest-in-nodejs

Hashnode - javascript (Javascript)

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

90: What are the difference between CRUD and REST in NodeJS

https://svdcse.xyz/what-are-the-difference-between-crud-and-rest-in-nodejs

Hashnode - javascript (Javascript)

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...


91: Javascript Arrays - How to Remove Duplicate Elements

https://fjolt.hashnode.dev/javascript-arrays-how-to-remove-duplicate-elements

Hashnode - javascript (Javascript)

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...


92: Javascript Arrays

https://fjolt.hashnode.dev/javascript-arrays

Hashnode - javascript (Javascript)

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...


93: Computed Properties in Vue.js

https://radiantcodes.hashnode.dev/computed-properties-in-vuejs

Hashnode - vuejs (Javascript)

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 ...


94: Javascript toLowerCase() - Convert Strings to Lowercase

https://fjolt.hashnode.dev/javascript-tolowercase-convert-strings-to-lowercase

Hashnode - javascript (Javascript)

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...


95: How to Check if Object is Empty in JavaScript

https://fjolt.hashnode.dev/how-to-check-if-object-is-empty-in-javascript

Hashnode - javascript (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...


96: Javascript Promise.all() - Everything you need to know

https://fjolt.hashnode.dev/javascript-promiseall-everything-you-need-to-know

Hashnode - javascript (Javascript)

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...


97: macOS offers a tool to remove backgrounds from images (tilPost)

https://www.stefanjudis.com/today-i-learned/macos-offers-a-tool-to-remove-backgrounds-from-images/

Stefan Judis (Développement)

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.

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