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

« Septembre 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


10 Septembre 2023 (51)

1: Using SETS in Python

https://datawise.dev/using-sets-in-python

Hashnode - python (python)

Using the right tool for the job is central to programming. This holds when considering what data structure to use for a particular problem. Python offers a variety of built-in data structures, and one of the most versatile among them is the set. L...


2: Check if a Number is a Float or Integer in JavaScript

https://stackabuse.com/check-if-a-number-is-a-float-or-integer-in-javascript/

Stack Abuse (Javascript)

Introduction If you're trying to validate user input, for example, figuring out how to determine the type of a number in JavaScript is a problem you may come across. In this Byte, we're going to explore how to check whether a number is an integer or a floating-point number. JavaScript


3: Bun.js: The Terrifying Node.js Killer That Will Change JavaScript Development's Future!

https://coderoshan.hashnode.dev/bunjs-the-terrifying-nodejs-killer-that-will-change-javascript-developments-future

Hashnode - javascript (Javascript)

Hey there, little buddies! ' Are you ready to go on an adventure in the world of JavaScript' Today, we're going to talk about something super cool called "Bun." Imagine Bun as your magical friend who helps JavaScript do amazing things. ''''' What i...


4: Bun : The Terrifying Node.js Killer That Will Change JavaScript Development's Future!

https://coderoshan.hashnode.dev/bun-the-terrifying-nodejs-killer-that-will-change-javascript-developments-future

Hashnode - javascript (Javascript)

Hey there, little buddies! ' Are you ready to go on an adventure in the world of JavaScript' Today, we're going to talk about something super cool called "Bun." Imagine Bun as your magical friend who helps JavaScript do amazing things. ''''' What i...


5: The Odyssey of a Thousand Miles in JavaScript: A Developer's Journey

https://peterchijioke.hashnode.dev/the-odyssey-of-a-thousand-miles-in-javascript-a-developers-journey

Hashnode - javascript (Javascript)

Introduction The domain of web development stands as an ever-evolving and dynamic realm, and for developers, commencing the voyage towards mastery in JavaScript is akin to embarking on an arduous journey spanning a thousand miles. JavaScript, often r...


6: Understanding Rational Numbers in Python

https://logak.hashnode.dev/understanding-rational-numbers-in-python

Hashnode - python (python)

Rational numbers in Python refer to the representation and manipulation of numbers that can be expressed as a fraction (a quotient of two integers) using various programming techniques and functions in the Python language. What Are Rational Numbers' ...


7: Unlocking the Data Domain ': Data Science vs. Data Analytics vs. Data Engineering

https://devdoc.hashnode.dev/unlocking-the-data-domain-data-science-vs-data-analytics-vs-data-engineering

Hashnode - python (python)

Are you fascinated by the world of data '' Do you dream of diving deep into datasets, extracting valuable insights, and contributing to data-driven decision-making '' If so, you've entered the captivating realm of data professions! But wait, before...


8: An Intro to Mojo '

https://sriharshavandanapu.hashnode.dev/an-intro-to-mojo

Hashnode - python (python)

Why to use Mojo' The execution speed / speed-up speaks for itself. Getting Started For setting the environment, you can either go to the Modular or go to Playground to run mojo in the cloud. Similarity with python Mojo utilizes Python's syntax and s...


9: How to install VS Code

https://codingsplash.com/how-to-install-vs-code

Hashnode - python (python)

About VS Code: Visual Studio Code, also commonly referred to as VS Code. It is a streamlined code editor with support for development operations like debugging, task running, and version control. It is a source-code editor made by Microsoft with the ...


10 / 51

10: Table of Content

https://codingsplash.com/table-of-content

Hashnode - python (python)

Here are all the links of the series: 100 Days of Python for Beginners with Data Science: https://codingsplash.hashnode.dev/series/100daysofpython How to install VS code: About, Installation & Setup https://codingsplash.hashnode.dev/how-to-install-vs...


11: Day03-Variable and Data Types

https://codingsplash.com/day03-variable-and-data-types

Hashnode - python (python)

What is Variable' Variable - is like a container that holds data. Example: a = 1234453734563455 print(a) b = "Harry" print(b) Output: 1234453734563455 "Harry" Data Type: Data types specify the type of data that can be stored inside a variable. It i...


12: Day02-First Program

https://codingsplash.com/day02-first-program

Hashnode - python (python)

Modules in Python: A module can contain executable statements as well as function definitions. It is like a 'code library' - used to borrow code written by someone else in Python. To Import Any Module - We use 'import' command. Types of Modules: Ther...


13: Day 09 || Writing a Flask App Dockerfile Project

https://devopshub.com/day-09-writing-a-flask-app-dockerfile-project

Hashnode - python (python)

Introduction: In this tutorial, we will work with the "flask-blog-app" repository hosted on GitHub. We will clone the repository, set up a Flask app, write a Dockerfile, and push the image to Docker Hub. Step 1: Clone the GitHub Repository Open your...


14: Why You Must Always Be Learning In Tech.

https://davidbay.hashnode.dev/why-you-must-always-be-learning-in-tech

Hashnode - javascript (Javascript)

It's been a great year so far on my journey into Web Development and how the web operates. In 2023, Web Development couldn't be more mature in the list of solutions to problems no matter the language. As a JavaScript Developer I made my journey on th...


15: My Top 10 Essential JavaScript ES6 and Beyond Syntax Shortcuts for Everyday Coding

https://zishantareque.hashnode.dev/my-top-10-essential-javascript-es6-and-beyond-syntax-shortcuts-for-everyday-coding

Hashnode - javascript (Javascript)

JavaScript has come a long way since its inception, evolving into a versatile language that developers across the globe rely on daily. The introduction of ECMAScript 6 (ES6) and subsequent versions has revolutionized JavaScript syntax, making it more...


16: Infinite Scrolling in a React Application

https://abeginner.hashnode.dev/infinite-scrolling-in-a-react-application

Hashnode - javascript (Javascript)

Infinite scrolling is a popular feature in web and app development that allows continuous loading of new data as users approach the bottom of a page. This dynamic functionality is prominently used on platforms like Instagram and YouTube, where conten...


17: Day01- Introduction to Python

https://codingsplash.com/day01-introduction-to-python

Hashnode - python (python)

What is Programming' It is the fastest way to tell the computer what to do. E.g. A calculator. In other words, we can say that computer programming is the process of writing code to facilitate specific actions in a computer, application or software p...


18: Two types of Scopes in JS

https://krishnacool.hashnode.dev/two-types-of-scopes-in-js

Hashnode - javascript (Javascript)

1: Local Scope Local scope refers to the context within which variables are declared inside functions or code blocks (e.g., loops, conditionals). Variables declared within a local scope are only accessible within that specific function or block and a...


19: Ces chercheurs viennent de découvrir une nouvelle cellule dans le cerveau

https://www.lebigdata.fr/nouvelle-cellule-cerveau

Le Big Data (dataviz)

Cette nouvelle cellule découverte dans le cerveau joue un rôle essentiel dans son fonctionnement. Sa découverte est la promesse de … Cet article Ces chercheurs viennent de découvrir une nouvelle cellule dans le cerveau a été publié sur LEBIGDATA.FR.


20 / 51

20: Bun 1.0: Your All-in-One Toolkit for Turbocharging JavaScript and TypeScript Development

https://nilanth.hashnode.dev/bun-10-your-all-in-one-toolkit-for-turbocharging-javascript-and-typescript-development

Hashnode - javascript (Javascript)

JavaScript, a language that has taken the digital world by storm, has evolved significantly over the years. With its vibrant community and constant innovation, JavaScript has become a powerhouse in the world of programming. However, as the ecosystem ...


21: Express Js

https://pranav16.hashnode.dev/express-js

Hashnode - javascript (Javascript)

The Essence of Express.js Express.js, often lovingly referred to as "Express," stands as a minimal yet versatile web application framework built on Node.js. It's renowned for its ability to empower developers with a rich set of features, making the c...


22: Mastering the Art of Clean Code in JavaScript: Tips and Examples

https://taquideveloper.hashnode.dev/mastering-the-art-of-clean-code-in-javascript-tips-and-examples

Hashnode - javascript (Javascript)

Introduction' Welcome back, fellow developers! Today, we're diving deep into the art of writing clean and beautiful JavaScript code. As someone with five years of experience in the field, I understand the importance of crafting code that not only wor...


23: How to use Jupyter Notebook: A Quick Guide

https://programmingmindset.com/how-to-use-jupyter-notebook-a-quick-guide

Hashnode - python (python)

Jupyter Notebook- It is free software, open standards, and web services for interactive, computing across most programming languages. It is a single document where you can run code, show the output, and add explanations, formulas, and charts. Jupy...


24: I finished the Meta Frontend Developer Course - Here's what I learned

https://ifeanyi-aladi.hashnode.dev/i-finished-the-meta-frontend-developer-course-heres-what-i-learned

Hashnode - javascript (Javascript)

I just finished the Meta Frontend Developer Course on Coursera and I can tell you it was a ride and it was worth the time and effort I put in. It was a multi-part series course and it was made up of 9 independent courses that you must complete to att...


25: Custom SQL In Django Migration

https://venkatesh.hashnode.dev/custom-sql-in-django-migration

Hashnode - python (python)

In my project, one use case came with custom SQL migration. Step1: Create the empty migration python manage.py makemigrations --empty -n # python manage.py makemigrations app --empty -n creating_users Step 2: Open c...


26: Road to Flutter Mastery: 10 Crucial Skills for your Journey '

https://hetvishah.hashnode.dev/road-to-flutter-mastery-10-crucial-skills-for-your-journey

Hashnode - Flutter (Flutter)

Welcome to the exciting world of Flutter development! If you're here, you've already taken the first step toward becoming a proficient Flutter developer. Whether you're just starting your journey or looking to sharpen your skills, this blog will unco...


27: 5 JavaScript Concepts Everyone Should Learn! '

https://sksage.hashnode.dev/5-javascript-concepts-everyone-should-learn

Hashnode - javascript (Javascript)

73// Spread Operator and destructuring // arr = [1, 2, 4] // function avg(a, b, c) { // return a + b + c / 3 // } // let a = avg(...arr) // console.log(a) // to open array // let a = [4, 7,...arr,67] // to make copy of arr ------- // let a = [...arr]...


28: Day 16 of learning JavaScript: truthy & falsy

https://svensblog.hashnode.dev/day-16-of-learning-javascript-truthy-falsy

Hashnode - javascript (Javascript)

Hello, today we will fix a problem in the Chrome extension. The stored leads aren't getting displayed when we refresh the page. So how we want the extension to work is: If the local storage is empty, nothing will happen. If the local storage contains...


29: Day 15 of learning JavaScript: Local storage & array in local storage

https://svensblog.hashnode.dev/day-15-of-learning-javascript-local-storage-array-in-local-storage

Hashnode - javascript (Javascript)

When we try to use the Chrome extension, there is a problem with storing data. The moment we click anywhere else, for example, to copy a link, the Chrome extension closes. If we open the Chrome extension again, all data we stored recently gets cleare...


30 / 51

30: Mojo cheat sheet

https://easewithtuts.hashnode.dev/mojo-cheat-sheet

Hashnode - python (python)

Today, Mojo SDK is officially launched by Modular Team. So, Today I going to make a cheat sheet for you! Declaring a Mutable Variable var x = 1 Explicitly Typed Variable var x: Int = 1 Declaring an Immutable Variable let x = 1 Functions fn greet()...


31: Greedy Algorithms and Optimization Problems

https://coolcoderr.hashnode.dev/greedy-algorithms-and-optimization-problems

Hashnode - python (python)

Hey, dear readers! ' Welcome to the third article in my blog series. If you haven't read my previous articles, I recommend checking those out first. However, you can also start right here, as I'll be explaining everything from scratch. Introduction ...


32: JS Overview

https://bitwisebread.hashnode.dev/js-overview

Hashnode - javascript (Javascript)

Note: How to read this guide This guide is written keeping in mind both the beginners and the advanced users. So if you are a beginner and do not understand something, just continue reading ' things will be clear to you later on in the guide. Introdu...


33: MonoRepo Development Style via Angular.

https://shivrajdeopa.hashnode.dev/monorepo-development-style-via-angular

Hashnode - javascript (Javascript)

source: https://angular.io/guide/file-structure The "ng new" angular cli command creates an initial skeleton application at the root level of the workspace, along with its end-to-end tests. The skeleton is for a simple Welcome application that is rea...


34: Creating a Complete Web-Scraping to SQL Pipeline with Python and Scrapy

https://nickanello.hashnode.dev/creating-a-complete-web-scraping-to-sql-pipeline-with-python-and-scrapy

Hashnode - python (python)

Introduction Web scraping has become an indispensable tool for gathering data, allowing developers and data enthusiasts access to valuable information from the web. Tools like BeautifulSoup4 and Selenium are user-friendly tools that make this task as...


35: Day 14 of learning JavaScript: Deploying the Chrome extension

https://svensblog.hashnode.dev/day-14-of-learning-javascript-deploying-the-chrome-extension

Hashnode - javascript (Javascript)

Today I learned how to deploy the Chrome extension so that people can use it. The first thing I had to know was JSON. The JavaScript Object Notation. It's a format for storing and transporting data and is often used when data is sent from a server to...


36: Javascript:Five ways to reverse an Array

https://anjalisaini.hashnode.dev/javascriptfive-ways-to-reverse-an-array

Hashnode - javascript (Javascript)

In this article, we'll delve into a topic of great importance, especially in the context of interviews. There are occasions when it appears straightforward, but there are also instances where it can pose a formidable challenge. You can reverse an arr...


37: OpenAI ajoute un plugin Canva pour ChatGPT : Découvrez les possibilités

https://www.lebigdata.fr/plugin-canva-chatgpt

Le Big Data (dataviz)

OpenAI intègre un nouveau plugin Canva pour ChatGPT. Cet ajout simplifie significativement la création de visuels avec le chatbot conversationnel. … Cet article OpenAI ajoute un plugin Canva pour ChatGPT : Découvrez les possibilités a été publié sur LEBIGDATA.FR.


38: JS Variables and Data Types

https://masterjs.hashnode.dev/js-variables-and-data-types

Hashnode - javascript (Javascript)

Hey there! Welcome to my JavaScript learning journey. ' This is my way of breaking down complex concepts and making them easier to understand. So, let's dive right into the first part: Variables and Data Types. Variables: Your Memory Box ' Okay, so...


39: ' The Epic Battle of JavaScript Package Managers: npm '' yarn

https://www.logicodev.com/the-epic-battle-of-javascript-package-managers-npm-yarn

Hashnode - javascript (Javascript)

In the world of JavaScript, two mighty warriors stand tall ' npm and Yarn. Both are package managers, and they've competed for developers' favour. Don't miss out on this comparison! ' npm is a seasoned veteran. It's been around since the dawn of Ja...


40 / 51

40: Building a Web Crawler for Scraping Index Files from Common Crawl Server.

https://priyanshu-kun.hashnode.dev/building-a-web-crawler-for-scraping-index-files-from-common-crawl-server

Hashnode - javascript (Javascript)

In this article, we'll go into detail about how to make a crawling controller that is particularly made to scrape index files from the Common Crawl server. We will examine the essential ideas and methods needed to construct a powerful web crawler des...


41: Google Summer of Code wrap-up!

https://blog.dewansh.space/google-summer-of-code-wrap-up

Hashnode - javascript (Javascript)

Mentored By Linda Paiste and Shuju Lin Overview This project is dedicated to the enhancement of mobile responsive design implementations for the web editor. The existing editor, prior to this project, is not so usable on smaller screen devices such ...


42: Weekly Indie Log 1

https://roehl.dev/weekly-indie-log-1-reaching-1500-mrr

Hashnode - Flutter (Flutter)

Hello everyone! Here's a quick update on my journey as an independent app developer over the past week. Let's dive right in and start with the biggest news: I reached my goal of $1500 MRR for my little app business! ' Marketing and Social Media Aft...


43: Securing Flutter APKs: From Concept to Implementation

https://sungod.hashnode.dev/securing-flutter-apks

Hashnode - Flutter (Flutter)

Introduction In the fast-evolving landscape of mobile application development, crafting visually stunning and user-friendly apps is only one part of the equation. Ensuring that your Flutter app's integrity remains intact, even after it leaves your de...


44: Node.js path module

https://endeavourmonk.hashnode.dev/nodejs-path-module

Hashnode - javascript (Javascript)

The path module in Node.js is a built-in module that provides utilities for working with file and directory paths. It helps in constructing, manipulating, and working with file and directory paths in a cross-platform manner, making it easier to write...


45: Implementing Buttons and Handling User Gestures in Flutter

https://raman04.hashnode.dev/implementing-buttons-and-handling-user-gestures-in-flutter

Hashnode - Flutter (Flutter)

ey there, fellow Flutter enthusiasts! Today, I'm diving into the exciting world of buttons and user gestures in Flutter. Whether you're new to Flutter or just looking to enhance your UI skills, this blog will guide you through the process. So, let's ...


46: Crafting Unique Game Assets

https://nupursjourney.hashnode.dev/crafting-unique-game-assets

Hashnode - Unity (unity)

In Continuation of Previous Blog - Nightfall: Bloodlust Unleashed - From Horror to Platformer Adventure Hey there, fellow devs and gaming enthusiasts! Welcome back to my journey of transforming the 'trash' game into a thrilling adventure. In today's ...


47: A Complete Guide to Unit Testing in Python

https://chukwudigolden.hashnode.dev/a-complete-guide-to-unit-testing-in-python

Hashnode - python (python)

Unit testing is a critical part of the software development process. It helps identify and fix bugs early on, saving time and money in the long run. By failing to carry out unit testing, bugs can accumulate, making them more difficult and costly to f...


48: Building a Recommendation System

https://leomier.hashnode.dev/building-a-recommendation-system

Hashnode - python (python)

Introduction Recommendation systems are everywhere: YouTube, Netflix, Supermarket coupons, Amazon, BestBuy, search engines, etc. They are often used to offer carefully selected products to the consumer and relevant information to web users. In today'...


49: Making the Right Choice: Flutter vs. Native for Your Fintech App

https://mohsinjaved.hashnode.dev/making-the-right-choice-flutter-vs-native-for-your-fintech-app

Hashnode - Flutter (Flutter)

Introduction: In the fast-paced world of fintech, where security, performance, and user experience are paramount, choosing the right technology stack for your banking application is a critical decision that can significantly impact your project's suc...


50 / 51

50: Factory Method Pattern in Python: Crafting Objects Creatively

https://karun.hashnode.dev/factory-method-pattern-in-python-crafting-objects-creatively

Hashnode - python (python)

The Factory Method pattern is a creational design pattern that provides an interface for creating objects in a super class but allows subclasses to alter the type of objects that will be created. It promotes loose coupling and flexibility in object c...




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