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


Samedi 11 Février 2023 (80)

1: Difference between var, let and const in Javascript

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

Hashnode - javascript (Javascript)

Javascript variables are names given to data storage locations in Javascript. Before 2015, variables have always been declared with the var keyword, like this: var name = "Mus3ab"; But since 2015, when the ECMAScript 6 (es6) version of javascript w...


2: Art of Array Manipulation in JavaScript.

https://tldrnotes.net/art-of-array-manipulation-in-javascript

Hashnode - javascript (Javascript)

As a JavaScript developer, you know that working with arrays is a critical component of your skill set. In this article, I'll be sharing the insider tricks and time-saving functions that I use on a daily basis. Array.map() map takes a callback funct...


3: Handling File Inputs With Busboy in NodeJS

https://mitchellmudd.hashnode.dev/handling-file-inputs-with-busboy-in-nodejs

Hashnode - javascript (Javascript)

In this post, we'll be exploring how to use the busboy module to parse form data in Node.js. We'll be using the busboy module to parse form data from a file upload form. We'll also be using the file system module to save the file to the file system. ...


4: An introductory guide to using SQL in a Python Script to make Databases in MySQL

https://andrewdass.hashnode.dev/an-introductory-guide-to-using-sql-in-a-python-script-to-make-databases-in-mysql

Hashnode - python (python)

This is a guide explaining what SQL is, why it is beneficial to learn SQL, and how to learn SQL commands in Python to make and delete MySQL databases. The following technologies are used in this guide: Materials Computer Visual Studio Code (Any IDE...


5: Best practices for securing your application against common attacks such as SQL injection and cross-site scripting (XSS)

https://satyanchal.hashnode.dev/best-practices-for-securing-your-application-against-common-attacks-such-as-sql-injection-and-cross-site-scripting-xss

Hashnode - javascript (Javascript)

Securing web applications is a crucial task for any developer. Unfortunately, many web applications are vulnerable to common attacks such as SQL injection and cross-site scripting (XSS). In this blog post, we'll take a look at some best practices for...


6: Dart Isolates: Exploring Parallel Processing in Dart - Part 1

https://envuengineer.hashnode.dev/dart-isolates-exploring-parallel-processing-in-dart-part-1

Hashnode - Flutter (Flutter)

Dart is a client-optimized programming language used for building web, server, desktop, and mobile applications. One of its key features is isolates, which allow you to run a separate instance of your Dart code in a different thread with its own memo...


7: JavaScript: A Beginner's Guide to Coding for the Web

https://twelve.hashnode.dev/javascript-a-beginners-guide-to-coding-for-the-web

Hashnode - javascript (Javascript)

JavaScript is a versatile and powerful programming language that is essential for creating dynamic, interactive web applications. From small pop-ups and form validations to complex single-page applications, JavaScript has become the backbone of moder...


8: Vercel vs. Netlify --- Which platform you should choose.

https://satyanchal.hashnode.dev/vercel-vs-netlify-which-platform-you-should-choose

Hashnode - javascript (Javascript)

When it comes to hosting and deploying web applications, there are a lot of options to choose from. Two of the most popular options are Vercel and Netlify. Both platforms offer similar features, such as continuous deployment, global CDN, and easy int...


9: Recursion in Python

https://stephenxxvii.hashnode.dev/recursion-in-python

Hashnode - python (python)

Recursion is a powerful technique in computer programming that involves breaking down a problem into smaller subproblems and solving them one by one. In this article, we'll explore recursion in Python and learn how to use it to solve complex problems...


10 / 80

10: Day 4 of 100DaysOfCode

https://pradeepkurapati.hashnode.dev/day-4-of-100daysofcode

Hashnode - python (python)

Day 4 of my #100DaysOfCode journey and I must say, it's been quite a ride so far. Today I got to dive deep into functions and while loops in Python and let me tell you, it's amazing how much you can achieve with just a few lines of code. I also worke...


11: Top Python Frameworks for Developers

https://pyguru.hashnode.dev/top-python-frameworks-for-developers

Hashnode - python (python)

Django: An open-source, high-level Python web framework that follows the model-template-view (MTV) architectural pattern. It provides a rich set of tools and libraries for building robust web applications with ease. Flask: A micro-web framework for ...


12: Right way to call APIs in Node.js

https://newbies.hashnode.dev/right-way-to-call-apis-in-nodejs

Hashnode - javascript (Javascript)

Asynchronous vs Synchronous code' Synchronous code is code that blocks the execution of code till the line has been executed, meaning that the program will wait for a task to complete before moving on to the next one. This is in contrast to asynchron...


13: Identity Operators in Python

https://pratikhilale.hashnode.dev/identity-operators-in-python

Hashnode - python (python)

Everything in python is an object Python has a built-in function id() which provides the id of the memory location associated with that particular object For example a = 3 b = [12,54,6,9,1] print(id(a)) print(id(b)) Output 10742600 140311838537856...


14: Music Landing Page Website Design using Html CSS & Javascript

https://webmonster.com/music-landing-page-website-design-using-html-css-javascript

Hashnode - javascript (Javascript)

Music Landing Page Website Design using Html CSS & Javascript | Step By Step In this video, I will show you how to create Responsive Music Landing Page Website Design using Html CSS & Javascript ' Essential links Source Code: https://upfiles.com/TM...


15: Decoding JS (Part - 3): Polyfills and Transpilers

https://harshita-kanal.hashnode.dev/decoding-js-part-3-polyfills-and-transpilers

Hashnode - javascript (Javascript)

Polyfills A polyfill is a piece of code, in JavaScript that is used to provide some functionality in a browser, that does not natively support it. They are written to replicate an API that is available in some browsers, for those who don't have it or...


16: Understanding CORS (Cross-Origin Resource Sharing) in JavaScript

https://wpgroom.hashnode.dev/understanding-cors-cross-origin-resource-sharing-in-javascript

Hashnode - javascript (Javascript)

What is Cross-Origin Resource Sharing (CORS) Cross-Origin Resource Sharing (CORS) is a security mechanism that restricts a web page from making requests to a different domain than the one that served the web page. Browsers enforce this security restr...


17: To-Do App Beginner JavaScript

https://sagarcoding.hashnode.dev/to-do-app-beginner-javascript

Hashnode - javascript (Javascript)

Introduction ' Hello Everyone, My name is Sagar and I am here to share my learnings along the journey of my Tech Career in Web Development. Today, I am sharing with you what I build ( A Todo App ) with the help of basic javascript. This small beginn...


18: What is == and === in JavaScript ' Know everything about it here.

https://santosmmu.hashnode.dev/what-is-and-in-javascript-know-everything-about-it-here

Hashnode - javascript (Javascript)

Most of the software developers struggle with the concept of '==' and '===' at the beginning, while trying to learn the JavaScript programming language. If while coding you happen to came across this concepts you were really worried about How comes t...


19: Building Android ChatGPT App using Retrofit and Dagger Hilt, Step-by-Step

https://kerollosragaie.com/building-android-chatgpt-app-using-retrofit-and-dagger-hilt-step-by-step

Hashnode - Kotlin (Mobiles)

OpenAI's GPT-3 is a state-of-the-art language model that has been trained on a massive amount of data, making it capable of generating human-like text. In this blog, we will see how we can utilize the OpenAI API to build a ChatGPT Android Application...


20 / 80

20: Building Android ChatGPT App using Retrofit and Dagger Hilt, Step-by-Step

https://kerollosragaie.hashnode.dev/building-android-chatgpt-app-using-retrofit-and-dagger-hilt-step-by-step

Hashnode - Kotlin (Mobiles)

OpenAI's GPT-3 is a state-of-the-art language model that has been trained on a massive amount of data, making it capable of generating human-like text. In this blog, we will see how we can utilize the OpenAI API to build a ChatGPT Android Application...


21: == v/s === in JavaScript

https://azharchoudhury.hashnode.dev/double-equals-vs-triple-equals-in-javascript

Hashnode - javascript (Javascript)

The first thing to be clear about is that a single equal sign doesn't mean we are comparing two numbers or variables. In programming, a single equal-to implies assignment. In simple terms, we need a symbol to assign a value to a variable. So, we use ...


22: == v/s === in JavaScript

https://azharchoudhury.hashnode.dev/vs-in-javascript

Hashnode - javascript (Javascript)

The first thing to clear is that a single equal sign doesn't mean we are comparing two numbers or variables. In programming, a single equal-to implies assignment. In simple terms, we need a symbol to assign a value to a variable. So, we use a single ...


23: Arrays In Javascript

https://codecric.hashnode.dev/arrays-in-javascript

Hashnode - javascript (Javascript)

What Is Array An array is a collection of similar data elements stored at contiguous memory locations. It is the simplest data structure where each data element can be accessed directly by only using its index number. Example of Array: const ArrayNa...


24: Introduction to Python

https://pythonwithyou.hashnode.dev/introduction-to-python

Hashnode - python (python)

What is Python' Python is a programming language that is used to create websites and applications, automate processes, and do data analysis. It was designed and developed by Guido van Rossum and was first released in the year 1991. Python is a genera...


25: Mastering Lambdas: A Guide to Anonymous Functions in Python

https://blog.ashutoshkrris.in/mastering-lambdas-a-guide-to-anonymous-functions-in-python

Hashnode - python (python)

Lambda functions, also known as anonymous functions, are small, one-time-use functions in Python. They are defined using the lambda keyword followed by the function's inputs, a colon, and the function's expression. The output of a lambda function is ...


26: 5 Tips for Writing Cleaner Code

https://shineve.hashnode.dev/5-tips-for-writing-cleaner-code

Hashnode - javascript (Javascript)

Prevent unnecessary nesting Too much nesting can make the code harder to read and more prone to errors, so we can return early to avoid excessive nesting. // Bad function deleteItem(item) { if (item != null) { console.log('Deleting item'); ...


27: JS: Difference between == & ===

https://kamiya.hashnode.dev/js-difference-between-double-equal-and-tripple-equal

Hashnode - javascript (Javascript)

When we want to compare two values in javascript, our first instinct is to use "==".Example: let a = 5; let b = 7; console.log(a==b) //false But there is another type of equality operator which is stricter than "==". This operator is "===". "==" ope...


28: Mighty JavaScript: Undefined And Undeclared

https://cloudcoded.hashnode.dev/mighty-javascript-undefined-and-undeclared

Hashnode - javascript (Javascript)

Sometimes when we write a javascript program, we received an output of undefined or ReferenceError and we get confused as to what might be going on in our program. Well, worry less, this article is going to simplify it all. Undefined and Undeclared a...


29: Google May Add Telemetry to the Go Programming Language

https://www.webpronews.com/google-may-add-telemetry-to-the-go-programming-language/

WebProNews SEO (Développement)

WebProNews Google May Add Telemetry to the Go Programming Language Google is once again in the midst of a privacy controversy, with a proposal to add telemetry to the Go programming language. Google May Add Telemetry to the Go Programming Language Matt Milano


30 / 80

30: Hoisting in JavaScript

https://jeetu.hashnode.dev/hoisting-in-javascript

Hashnode - javascript (Javascript)

Hello everyone, I'm back with another interesting and very popular topic in the field of javascript. I'm talking about Hoisting which is one of the popular Interview question. I'm going to tell you what is Hoisting, How it works with functions and va...


31: day 02 of 1000 days

https://shreerohitrj.hashnode.dev/day-02-of-1000-days

Hashnode - javascript (Javascript)

Welcome, hope you all are doing great. Today was a hard day for me. I probably overestimated myself. I did learn many things but wasn't able to complete the day's goals. I practised HTML, basically the emmet plugin. I found this source: https://docs...


32: 6 New Array Functions in ES6

https://codeandcreate.hashnode.dev/6-new-array-functions-in-es6

Hashnode - javascript (Javascript)

ES6, also known as ECMAScript 2015, brought several new features to JavaScript, including new array functions. In this blog, we'll take a look at six of these new functions and how they can make your life easier when working with arrays in JavaScript...


33: JavaScript interview questions (part -1)

https://ritiksinha.hashnode.dev/javascript-interview-questions-part-1

Hashnode - javascript (Javascript)

Let's start with the first topic: The fundamentals of JavaScript. In-depth Question: Can you explain the difference between let, var, and const in JavaScript and when to use each one' Explanation: In JavaScript, there are three ways to declare var...


34: What is strict mode in JavaScript'

https://akashrj.hashnode.dev/what-is-strict-mode-in-javascript

Hashnode - javascript (Javascript)

What is strict mode' Strict mode forces a program to work under a "strict" operating context, which is a way to implicitly opt in, thereby opting out of sloppy mode(default mode or non-strict mode). All browsers support "strict mode" except Internet ...


35: Detecting clicks outside an HTML element using the custom React Hook

https://blog.hamzaa.dev/detecting-clicks-outside-an-html-element-using-the-custom-react-hook

Hashnode - javascript (Javascript)

In February 2019 React introduced Hooks. Which empowered the Functional components to have the same powers/features which were only present in React Class component before React 16.8.0. The introduction of hooks gave function components the ability t...


36: MVC Vs MVT Architecture

https://sahiljaggarwal.hashnode.dev/mvc-vs-mvt-architecture

Hashnode - python (python)

The terms "MVC" and "MVT" both refer to architectural patterns used in software development. MVC (Model-View-Controller) is a widely used architectural pattern in which an application is divided into three interconnected components: the model, which ...


37: BigInt Embedded Bitmap Encoding

https://mvasilkov.animuchan.net/bigint-embedded-bitmap-encoding

Hashnode - javascript (Javascript)

This is the second post in the series. See the previous post, ECMAScript Embedded Bitmap Encoding for context. My friend Roman pointed out that I was, in fact, doing things suboptimally in the EEBE post: The array of scanlines can be replaced with ...


38: Node.js: Beyond the Basics

https://thefaisal.dev/nodejs-beyond-the-basics

Hashnode - javascript (Javascript)

What is Node.js' Node.js is a JavaScript runtime built on Google's open-source V8 JavaScript engine. Node.js can execute JavaScript code on the server side, making it possible to build fast, scalable, high-performance network applications. History of...


39: Flutter 101: The "WhatWhyHow" of Google's Revolutionary Mobile App Framework

https://cswithiyush.hashnode.dev/flutter-101-the-whatwhyhow-of-googles-revolutionary-mobile-app-framework

Hashnode - Flutter (Flutter)

Introduction Welcome to the "WhatWhyHow" series of blogs! In this series, we explore various topics in the technology domain, providing concise yet informative answers to some of the most common questions about them. In this blog, we will be discussi...


40 / 80

40: 15 most commonly used array methods in Javascript explained with detailed examples

https://musab19.hashnode.dev/15-most-commonly-used-array-methods-in-javascript-explained-with-detailed-examples

Hashnode - javascript (Javascript)

What is an Array' An object data type allows you to store collections of data, but, you can only store them in a key-value pair. Due to this, it is very difficult to manage the order of elements In an object. To solve this issue we make use of a spec...


41: How to stand out as a front-end developer.

https://muhammadshakir.hashnode.dev/how-to-stand-out-as-a-front-end-developer

Hashnode - javascript (Javascript)

Introduction. Front-end development has become one of the most in-demand and exciting careers in the tech industry. As the internet continues to grow and websites become increasingly complex, front-end developers play a crucial role in ensuring that ...


42: Mapped: The World's Major Earthquakes from 1956'2022

https://www.visualcapitalist.com/cp/mapping-worlds-major-earthquakes-from-1956-2022/

Visual Capitalist (dataviz)

Where do the world's major earthquakes happen' This map highlights the epicenters of earthquakes on record between 1956 and 2022. The post Mapped: The World’s Major Earthquakes from 1956'2022 appeared first on Visual Capitalist.


43: Drag & Drop

https://sandrana.hashnode.dev/drag-drop

Hashnode - javascript (Javascript)

HTML Web - Drag and Drop


44: Près de 2 000 vulnérabilités par mois en 2023

https://www.lemondeinformatique.fr/actualites/lire-pres-de-2-000-vulnerabilites-par-mois-en-2023-89515.html

Le monde informatique (Informatique / Internet)

Selon l'indice Cyber Threat Index de l'assureur en cybersécurité Coalition, il y aura 1 900 vulnérabilités et expositions (...)


45: The difference between IOS and Android UI design

https://kerollosragaie.com/the-difference-between-ios-and-android-ui-design

Hashnode - Kotlin (Mobiles)

During the launch of a mobile application, considering a targeted OS is one of the primary things to do. The iOS and Android design difference can affect both aesthetics and functions of the product, when not taken into account. This article covers t...


46: The difference between IOS and Android UI design

https://kerollosragaie.hashnode.dev/the-difference-between-ios-and-android-ui-design

Hashnode - Flutter (Flutter)

During the launch of a mobile application, considering a targeted OS is one of the primary things to do. The iOS and Android design difference can affect both aesthetics and functions of the product, when not taken into account. This article covers t...


47: Python Integrate with Elasticsearch

https://shahsmit.hashnode.dev/python-integrate-with-elasticsearch

Hashnode - python (python)

Making use of open-source library to extend the functionality and data available Pre-requites: Elasticsearch & Kibana already setup Python 3 & Above In this tutorial, we will be using python to connect to elastic search. This is to demonstrate to...


48: Reddit piégé par le phishing : le code source volé par les hackers

https://www.lebigdata.fr/reddit-piege-phishing

Le Big Data (dataviz)

La plateforme de discussions en ligne Reddit a subi une grave violation de sécurité par phishing. La cyberattaque expose des … Cet article Reddit piégé par le phishing : le code source volé par les hackers a été publié sur LeBigData.fr.


49: Liens vagabonds : A la recherche de l'intelligence perdue

https://www.meta-media.fr/2023/02/11/liens-vagabonds-a-la-recherche-de-lintelligence-perdue.html

Meta Media (Internet)

Qui trouvera la bonne réponse ' - La construction du télescope spatial James Webb a coûté 10 milliards de dollars, mais Google a essuyé des pertes de plus de 160 milliards de dollars après que le nouveau chatbot du moteur de recherche ait répondu incorrectement à une question le concernant.... The post Liens vagabonds : A la recherche de l'intelligence perdue first appeared on Meta-media | [...]


50 / 80

50: the 4 most powerful feature of python

https://mahaall.com/the-4-most-powerful-feature-of-python

Hashnode - python (python)

Python is a powerful programming language that has many features that make it a popular choice for a wide range of applications. Here are some of the most powerful features of Python: Easy to learn and use: Python has a simple and intuitive syntax t...


51: What are the Var,Let and Const keywords in JavaScript '

https://upendrasahni.hashnode.dev/what-are-the-varlet-and-const-keywords-in-javascript

Hashnode - javascript (Javascript)

--> Var, Let and Const are keywords used in javascript to declare variables. Why are there three types of declarative keywords in javascript' --> In older versions of JavaScript we had only the Var keyword to declare variables but it has some drawbac...


52: Voici pourquoi Bill Gates est sûr que ChatGPT va changer le monde

https://www.lebigdata.fr/bill-gates-chatgpt

Le Big Data (dataviz)

Bill Gates est connu pour son affinité avec l'innovation technologique, son leadership et sa vision d’avenir. C’est pourquoi son dernier … Cet article Voici pourquoi Bill Gates est sûr que ChatGPT va changer le monde a été publié sur LeBigData.fr.


53: Learn about Linear Regression: Theory, Examples, and Applications

https://techwithpie.hashnode.dev/learn-about-linear-regression-theory-examples-and-applications

Hashnode - python (python)

Introduction: What is Linear Regression and how does it work' Linear regression is a statistical method to make predictions. It is a type of supervised machine learning model which use statistical analysis for predicting the values as per the given d...


54: Mastering Python Fundamentals and Syntax: A Beginner's Guide

https://maleesha.hashnode.dev/mastering-python-fundamentals-and-syntax-a-beginners-guide

Hashnode - python (python)

Python is a popular, high-level programming language that is widely used for various applications, including web development, scientific computing, data analysis, and artificial intelligence. In this article, we will dive into the fundamentals and sy...


55: Overview of NLP Preprocessing Techniques

https://hassanfarid.hashnode.dev/overview-of-nlp-preprocessing-techniques

Hashnode - python (python)

Text Preprocessing is one of the essential stages in training a Natural Language Processing (NLP) based machine learning model. Text Preprocessing allows processing the textual data and retrieval of a representation of textual data that is well-suite...


56: IA mania : « l'inquiétante étrangeté » s'empare des médias

https://www.meta-media.fr/2023/02/11/ia-mania-linquietante-etrangete-sempare-des-medias.html

Meta Media (Internet)

La promesse des intelligences artificielles, apparues en 2022, avec, à leur apogée, l'ouverture de ChatGPT au grand public, est venue bousculer de nombreux secteurs à l'instar de l'art et des médias, qui ont vu le spectre de leur remplacement plâner sur les épaules. Mais qu'en est-il vraiment ' Par Myriam... The post IA mania : « l'inquiétante étrangeté » s'empare des médias first appe [...]


57: How to make a quiz game in python

https://iqmacodes.hashnode.dev/how-to-make-a-quiz-game-in-python

Hashnode - python (python)

Objective In this article I'm going to be taking you through the steps of making a basic quiz game in python. what is it going to do' the game would ask the user if he/she would like to play, if yes, it would go on to ask a couple of questions and wi...


58: Introduction to Javascript Variables

https://samcodes19.hashnode.dev/introduction-to-javascript-variables

Hashnode - javascript (Javascript)

Variables store data values that can be used and manipulated in a program. Declaring Variables To declare a variable in JavaScript, use the "var" keyword followed by the variable name. For example: var x; Initializing Variables In addition to declar...


59: SOLID Principles in Web development (2023)

https://leom.hashnode.dev/solid-principles-in-web-development-2023-cldzlz1km010ssdnv0iqk5aew

Hashnode - javascript (Javascript)

A set of guidelines known as the SOLID principles can be used to create code that is clear, scalable, and maintainable. They may be used with a variety of programming languages, such as React, and are widely acknowledged as best practices in software...


60 / 80

60: A Deep Dive into Ethereum

https://ramganesh.hashnode.dev/a-deep-dive-into-ethereum

Hashnode - javascript (Javascript)

Ethereum State: Contains a key-value mapping of addresses to account objects. State: Contains the current information of an Ethereum network, including Account Balances Nonce Contract code contract storage History: Contains past events of an ...


61: OpenCV Tutorial Python

https://hanuman.hashnode.dev/opencv-tutorial-python

Hashnode - python (python)

OpenCV supports images : Windows bitmaps ' .bmp, .dib JPEG files ' .jpeg, .jpg Portable Network Graphics ' *.png WebP ' *.webp Sun rasters ' .sr, .ras TIFF files ' .tiff, .tif Raster and Vector geospatial data supported by GDAL cv::imre...


62: Sequelize.js: Single Table Inheritance

https://sujeet-agrahari.hashnode.dev/sequelizejs-single-table-inheritance

Hashnode - javascript (Javascript)

Single Table Inheritance Single Table Inheritance (STI) is a design pattern in database modeling where a single table is used to store multiple types of entities that share a common set of attributes, but have some unique attributes as well. In other...


63: ' 5 Advanced ES6 Features Every JavaScript Developer Should Master

https://deniske.hashnode.dev/5-advanced-es6-features-every-javascript-developer-should-master

Hashnode - javascript (Javascript)

Destructuring Destructuring is a quick way to get values out of objects and arrays. For example, you can extract values and assign them to variables with a single line of code. Here's an example of how destructuring can be used with an object: const ...


64: This day in search marketing history: February 11

https://searchengineland.com/search-marketing-history-february-11-392779

Search engine land (Référencement)

Yahoo officially rejects Microsoft, plus: passage ranking goes live, Google's SEO consulting services, Google Japan's link penalty and more. The post This day in search marketing history: February 11 appeared first on Search Engine Land.


65: Closures in JS

https://ashutoshmaurya.hashnode.dev/closures-in-js

Hashnode - javascript (Javascript)

A closure in JavaScript is a function that has access to its outer (enclosing) function's variables and parameters even after the outer function has returned. In other words, a closure "closes over" its outer function's variables, preserving their va...


66: Using Splines to Animate in Unity

https://lastered.com/blog/using-splines-to-animate-in-unity

Hashnode - Unity (unity)

Basics of Bezier Curves GL (left green point) is moving at a constant speed from P0 to P1GR (right green point) is moving at the same constant speed from P1 to P2a black dot is moving from GL to GR at the same constant speed. P0 is starting positio...


67: Class Inheritance In Python

https://alvisonhunter.hashnode.dev/class-inheritance-in-python

Hashnode - python (python)

Howdie, folks! Today we are going to learn a bit about the vast world of inheritance from the realms of Object Oriented Programming: Are you guys ready for this amazing adventure' If so, let's get ready to rumble, pals! What is inheritance' Perhaps y...


68: Introduction to Next.js: How to Create a Next.js Project'

https://umit.dev/introduction-nextjs-create-nextjs-project

Hashnode - javascript (Javascript)

If you do not have Node.js and npm installed on your computer yet, you can install them here. Later on, you can check them via these commands to see if they're installed. node -v npm -v To create a next.js project, you can use this command in CLI. ...


69: Pulling Data from a Database with Pandas

https://jaggedarray.hashnode.dev/pulling-data-from-a-database-with-pandas

Hashnode - python (python)

Pulling data from a database is one of the most fundamental tasks a lot of us face. Whether you're a software engineer, analyst, data scientist, or someone just trying to learn the ins and outs of coding. Probably one of the most well-known Python mo...


70 / 80

70: Hot Hot Fruit Slot Machine Review: A Sizzling Spin for Slot Enthusiasts

https://catswhocode.com/hot-hot-fruit-slot-machine-review-a-sizzling-spin-for-slot-enthusiasts/

Cats who code (PHP / Javascript / wordpress)

The Hot Hot Fruit slot machine will spark your gaming experience. This fiery slot, created by a prominent gaming supplier, promises an explosive gameplay experience packed with alluring features, bright graphics, and the possibility of huge payouts. We’ll examine the game’s mechanics, symbols, bonus features, betting possibilities, visual and auditory components, as well as its [… [...]


71: Programming Geometry: Distance between points in 2D

https://josephwamiti.hashnode.dev/programming-geometry-distance-between-points-in-2d-1

Hashnode - javascript (Javascript)

Programming geometry is the study of using code to find measurements associated with shapes, lines, and points in two-dimensional (2D) and three-dimensional (3D) spaces. This includes tasks such as calculating the area of a circle, the volume of a cu...


72: Scatter Plots'''Handbook

https://akashpugal.dev/scatter-plots-handbook

Hashnode - python (python)

Hello everyone,In this blog we are going to see about Scatter plots in python.We are going to use 'MATPLOTLIB' and 'SEABORN' to draw scatterplots. So what is a Scatter plot' There are various types of graphs and charts in python we use for visualisat...


73: Django: Things you don't learn from the tutorials

https://grep.koditi.my/django-things-you-dont-learn-from-the-tutorials

Hashnode - python (python)

Let's say you want to add RSS feed to your blog built using Django. Django has syndication feed framework so that's probably the one that you'll use. I'll just take the code example from the documentation linked above. Your feed's code will look like...


74: Programming Geometry: Distance between points in 2D

https://josephwamiti.hashnode.dev/programming-geometry-distance-between-points-in-2d

Hashnode - javascript (Javascript)

Programming geometry is the study of using code to find measurements associated with shapes, lines, and points in two-dimensional (2D) and three-dimensional (3D) spaces. This includes tasks such as calculating the area of a circle, the volume of a cu...


75: Optimizing Performance with Server Side Rendering in Vue.js

https://radiantcodes.hashnode.dev/optimizing-performance-with-server-side-rendering-in-vuejs

Hashnode - vuejs (Javascript)

Definition of Server-side Rendering (SSR) Server-side rendering (SSR) is a technique for rendering a client-side JavaScript application on the server and then sending the fully rendered page to the client. This approach can provide many benefits, inc...


76: Simple Example to Use WorkManager and Notification

https://vtsen.hashnode.dev/simple-example-to-use-workmanager-and-notification

Hashnode - Kotlin (Mobiles)

This is just a very simple app that covers some basic WorkManager usage. It shows you how to schedule: one-time work request periodic work request and post a notification when the task is done. For a complete guide, refer to the official WorkMa...


77: How to narrow and secure types with const assertions (tilPost)

https://www.stefanjudis.com/today-i-learned/how-to-narrow-and-secure-types-with-const-assertions/

Stefan Judis (Développement)

I'm continuing my journey of learning TypeScript, and it's a wild ride. Sometimes I feel like I have things under control, but other times, I'm looking at a type definition at work, and all I can do is scratch my head in confusion. It'll be a long journey! Today I discovered a somewhat basic but very useful feature that's in TS since 3.4 (released in 2019). That's a century in web development, but [...]




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