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

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


29 Janvier 2023 (84)

1: Deep Dive into Data structures using Javascript - Binary Search Tree

https://sahinarslan.hashnode.dev/deep-dive-into-data-structures-using-javascript-binary-search-tree

Hashnode - javascript (Javascript)

W'hat is a Binary Search Tree' Binary Search Tree (BST as short) is a variation of Binary tree data structure with specific restrictions that allows efficient insertion, deletion and lookup of items. Being a descendant of Binary Tree, it comes with e...


2: Playing AAA title games using OpenCV and Mediapipe

https://diduknownme.hashnode.dev/playing-aaa-title-games-using-opencv-and-mediapipe

Hashnode - python (python)

https://youtu.be/_ILOkUew3oU How did I get to know about OpenCV and mediapipe' Hey! I'm Harsh pursuing Computer Engineering. One day I saw one of my LinkedIn friend building a project on machine learning, and I found myself curious about machine l...


3: Discord Bot Tutorial coming up soon!

https://lilkittykat.hashnode.dev/discord-bot-tutorial-coming-up-soon

Hashnode - python (python)

Hey! My name is Lucy, but friends call me Kitty! Watch this space because coming really soon is a tutorial on writing a Discord Bot - this bot is a fun little project I made that I want to share in chunks so people can learn how to make one for the...


4: Difference Between An Array and NodeList in JavaAcript.

https://rahulpanchal.hashnode.dev/difference-between-an-array-and-nodelist-in-javaacript

Hashnode - javascript (Javascript)

In JavaScript, arrays and NodeLists are both used to store collections of data. However, there are some important differences between the two that are worth discussing. An array is a built-in data structure in JavaScript that is used to store a colle...


5: Writing a simple AI-powered chrome extension for LinkedIn

https://boodyvo.hashnode.dev/writing-a-simple-ai-powered-chrome-extension-for-linkedin

Hashnode - javascript (Javascript)

Introduction A wonderful method to improve the user experience and add unique features to the browser is to build a Chrome Extension. It might add a special feature. The increased development of AI technologies opens up a number of beneficial product...


6: How to Build a Multi-Tenant App with Custom Domains Using Next.js

https://tunsday.com/how-to-build-a-multi-tenant-app-with-custom-domains-using-nextjs

Hashnode - javascript (Javascript)

Test the app here View original In this guide, you'll learn how to build a full-stack multi-tenant application by using the Platforms Starter Kit and the following technologies: Next.js as the React framework Tailwind for CSS styling Prisma as the...


7: Simple Python Function for Clearing the Command Line Interface - in Windows

https://monacodelisa.com/simple-python-function-to-clear-cli-in-windows

Hashnode - python (python)

The terminal or Command Line Interface (CLI) is a powerful tool for developers, system administrators and power users. It allows you to perform a variety of tasks quickly and efficiently, without the need for a graphical user interface (GUI). The ter...


8: Creating a Dropdown Menu Using Javascript's classList and toggle Function

https://ayodev.hashnode.dev/creating-a-dropdown-menu-using-javascripts-classlist-and-toggle-function

Hashnode - javascript (Javascript)

Have you ever been to a website where you click on a dropdown menu and the items appear out of nowhere' It almost seems like magic, doesn't it' Javascript, however, contains two functions that enable you to accomplish this and much more. In this arti...


9: What is Keras'

https://machinesintheclouds.com/what-is-keras

Hashnode - python (python)

Keras is a high-level neural networks API that provides an easy-to-use interface for building and training deep learning models. It is built on top of other popular deep learning frameworks, such as TensorFlow, Theano, and Microsoft Cognitive Toolkit...


10 / 84

10: Mastering Machine Learning: My Journey to Expertise

https://gaiyaobed.hashnode.dev/mastering-machine-learning-my-journey-to-expertise

Hashnode - python (python)

Machine Learning: Is a field of study that gives the computer the ability to learn without being explicitly programmed in other word Machine learning is a way for computers to automatically improve their performance at a task by learning from data. T...


11: How JavaScript as a Back-end Language.

https://arrayman.hashnode.dev/how-javascript-as-a-back-end-language

Hashnode - javascript (Javascript)

Let's see what the heck is JavaScript. JavaScript (JS) is a lightweight, interpreted, or just-in-time compiled programming language. It has come into the picture to make the web pages in your browser interactive without the computation cost for the c...


12: Using SQLModel with Alembic

https://arunanshub.hashnode.dev/using-sqlmodel-with-alembic

Hashnode - python (python)

TL;DR Install Alembic and SQLModel. Create models with SQLModel.SQLModel base class. Add naming conventions to SQLModel.metadata using SQLModel.metadata.naming_convention. Initialize Alembic with alembic init migrations. Add your database URL to...


13: let VS var VS const

https://neetesh.hashnode.dev/let-vs-var-vs-const

Hashnode - javascript (Javascript)

Hi folks '', hope you are doing extremely well '. In this quick article, we will discuss the different variable-defining methods in javascript. in short, javascript provides us to define variables using three keywords var, let, and const History o...


14: The Asynchronous World of JavaScript

https://kalashsharma.hashnode.dev/the-asynchronous-world-of-javascript

Hashnode - javascript (Javascript)

Introduction The term "asynchronous" is a combination of the greek term "async" meaning "not with" and "Chronos" meaning "time" is an adjective describing objects or events that are not coordinated with time. In the programming world, asynchronous pr...


15: JavaScript L-3

https://techbyjeevika.io/javascript-l-3

Hashnode - javascript (Javascript)

Block Scope. "let" and "const" are BLOCK scoped. "var" is FUNCTION scope. { let firstName="ABC"; console.log(firstName); } //here let can only be inside that block //if i write print statement outside block and not inside block then it will no...


16: Day 14: Python Data Types and Data Structure

https://amitmaurya.hashnode.dev/day-14-python-data-types-and-data-structure

Hashnode - python (python)

This is the Day 14 of the #90DaysOfDevOps challenge in which we are going to discuss Python Data Types in more detail with more examples and Data Structure. Python Data Types: Remember while making a python file .py extension is used. In Python there...


17: Simplest way to design a Login & Registration form : HTML | CSS

https://codetrekclub.hashnode.dev/simplest-way-to-design-a-login-registration-form-html-css

Hashnode - javascript (Javascript)

Login Form Using HTML & CSS https://codepen.io/im-rakesh0827/pen/abjwGQe Registration Form Using HTML & CSS https://codepen.io/im-rakesh0827/pen/PojPPEd


18: Apa itu "Clean Code"'

https://fajar-dev.my.id/apa-itu-clean-code

Hashnode - javascript (Javascript)

Clean code adalah konsep dalam pengembangan perangkat lunak yang mengacu pada kode yang mudah dibaca, dipahami, dan dipertahankan. Hal ini ditandai dengan kode yang terorganisir dengan baik, dapat dibaca, dan dapat dijelaskan sendiri yang mengikuti k...


19: "Implementing the Reduce Method in JavaScript: Line by Line Explanation"

https://imranbd.hashnode.dev/implementing-the-reduce-method-in-javascript-line-by-line-explanation

Hashnode - javascript (Javascript)

Here's an implementation of the reduce method in JavaScript with a brief description for each line of code: phpCopy codefunction reduce(array, callback, initialValue) { let accumulator = initialValue; // Check if accumulator is provided, if not ...


20 / 84

20: The Ultimate Guide to Mastering Javascript - Tips, Tricks and Best Practices

https://anonymousjsdev.hashnode.dev/the-ultimate-guide-to-mastering-javascript-tips-tricks-and-best-practices

Hashnode - javascript (Javascript)

Mastering Javascript Javascript is the most popular programming language in the world. It is used in making websites, apps, games and much more. JavaScript has become the standard for front-end development and is used by 98% of modern websites. You c...


21: Learn to Code with Python: A Course for Non-Coders

https://blog.rohanpls.com/learn-to-code-with-python-a-course-for-non-coders

Hashnode - python (python)

print('Hello world!') That's all you need to print a message in Python. This course is intended for people who are new to programming and want to learn Python in a simple and easy-to-understand manner. It's important to note that as a beginner, you d...


22: Basic elements of Python syntax ..

https://hengul.in/basic-elements-of-python-syntax

Hashnode - python (python)

In this article, we will learn the basic elements that are an essential part of python syntax. Comments: Comments in Python are of two types, single-line comments and multi-line comments. Single-line comments start with a pound sign (#) and continue ...


24: Running Serverless Functions on Kubernetes

https://pmbanugo.me/running-serverless-functions-on-kubernetes-2022

Hashnode - javascript (Javascript)

Serverless functions are modular pieces of code that respond to a variety of events. It's a cost-efficient way to implement microservices. Developers benefit from this paradigm by focusing on code and shipping a set of functions that are triggered in...


25: What is HTML , CSS and Java script...

https://myblog.anshi/what-is-html-css-and-java-script

Hashnode - javascript (Javascript)

HTML = HTML (hypertext markup language ) is the standard language to create web pages And this is easy to learn we can learn this very easily HTML is very important for web pages Like if we are building a house so for the structure we can use HTML m...


26: JavaScript: Top 10 Best Practices of 2023

https://adnansaim.com/javascript-top-10-best-practices-of-2023

Hashnode - javascript (Javascript)

Best practices are related to performance. Here are the 10 best practices for JavaScript. I try to use them daily. Let's see how we can write the best code using these best practices. 1:Always declare variables outside of the for loop. If we declare ...


27: Passing Objects in Python

https://machinesintheclouds.com/passing-objects-in-python

Hashnode - python (python)

In Python, objects and data can be passed in several ways: Pass by reference: When an object is passed as an argument to a function, a reference to the object is passed, not a copy of the object. Any changes made to the object within the function wi...


28: React Performance Optimization ''[Part 1]

https://sharmadeepak.hashnode.dev/react-performance-optimization-part-1

Hashnode - javascript (Javascript)

As a front-end developer, you know that the performance of your website or application has a direct impact on the user experience. A slow-loading website can quickly frustrate users and cause them to abandon your site. On the other hand, a fast and r...


29: A better way to set up a Cloudflare worker project locally with Miniflare

https://hrishikeshpathak.hashnode.dev/cloudflare-worker-local-setup-miniflare-wrangler

Hashnode - javascript (Javascript)

Cloudflare worker is a serverless computing platform offered by Cloudflare. Unlike other serverless platforms like AWS Lambda or google cloud function, Cloudflare worker has a 0ms cold start. Which makes your code runs almost instantly when a request...


30 / 84

30: A better way to set up a Cloudflare worker project locally with Miniflare

https://newsletter.hrishikeshpathak.com/cloudflare-worker-local-setup-miniflare-wrangler

Hashnode - javascript (Javascript)

Cloudflare worker is a serverless computing platform offered by Cloudflare. Unlike other serverless platforms like AWS Lambda or google cloud function, Cloudflare worker has a 0ms cold start. Which makes your code runs almost instantly when a request...


31: (DAY 2)Complete Numpy guide

https://akashpugal.dev/day-2complete-numpy-guide

Hashnode - python (python)

NumPy: Hey guys, welcome back. This is the second day of the "My 7-day journey to Data Science" blog series. You can check out my profile for the previous blogs. Let's start today's tutorial. In this tutorial, we are going to learn about the Numpy li...


32: Start Your First React Native App (MacOS)

https://omyerawar.hashnode.dev/start-your-first-react-native-app-macos

Hashnode - javascript (Javascript)

Open the terminal and configure the ANDROID_HOME environment variable, to do that run the following command : open -e .zprofile Above command will open the zprofile file in the text editor Copy the below lines into the zprofile file : export AND...


33: Android Jetpack Compose Filter Tutorial

https://ethan91.hashnode.dev/android-jetpack-compose-filter-tutorial

Hashnode - Kotlin (Mobiles)

Introduction Hello! ' In this small tutorial I will show you how to implement a simple list filter search using the latest Android Jetpack. ' Well then let's get started! ' Creating the Project First we need to actually create the project, open u...


34: Context Manager in Python

https://mochatek.hashnode.dev/context-manager-in-python

Hashnode - python (python)

The usage of resources such as files, locks, database connections etc. is very common in a program. Since these resources are limited in supply, we should always make sure to release them after usage. If not, then the program will keep the resources ...


35: Hype of ChatGPT

https://academic.hashnode.dev/hype-of-chatgpt

Hashnode - python (python)

Here I will tell what is ChatGPT and how we can use this AI based powerful tool in our daily life. What is ChatGPT ' ChatGPT is a developed by OpenAI and it is conversational model, which performs various tasks of NLP by using deep learning algorithm...


36: Longest Palindrome From A String

https://sandrana.hashnode.dev/longest-palindrome-from-a-string

Hashnode - javascript (Javascript)

What is Palindrome' A palindrome is a string or a number that is read the same backward or forward. Ex: 101, 1331, 11, PEEP, ROTATOR, etc are some examples of a pallindrome Note - One can make a string palindrome by pasting the reversed version of or...


37: Benefits of Learning Javascript As your First Language'

https://saurabhtaylor.hashnode.dev/benefits-of-learning-javascript-as-your-first-language

Hashnode - javascript (Javascript)

JavaScript (JS) is the most popular lightweight, interpreted compiled programming language. It can be used for both Client-side as well as Server-side developments. JavaScript also known as a scripting language for web pages. JavaScript is used by ma...


38: JAVASCRIPT CLASSES (Part one)

https://01spirit.dev/javascript-classes-part-one

Hashnode - javascript (Javascript)

INTRO Before the advent of classes in JavaScript, it was a hard feat to mimic classes as other languages such as c++ and java had then. We could only mimic on a prototypical basis by using the Constructor/prototype pattern. This article in itself is ...


39: Faded Image Colourisation using OpenCV

https://pinakdatta.hashnode.dev/faded-image-colourisation-using-opencv

Hashnode - python (python)

Introduction In this blog, we will be making a Machine Learning model in Python that can add colors to old, washed-away, and faded images. In summary, we will be colorizing images. What we are going to do, is feed a grayscale image into the model, an...


40 / 84

40: Quick ES6 Guide

https://web3boy.hashnode.dev/quick-es6-guide

Hashnode - javascript (Javascript)

Let & const Keywords Variables were previously declared using "var" which had function scope and were hoisted to the top within its scope. It means that a variable can be used before declaration. But the "let" variables and constants have block sco...


41: Building Portfolio Website Using HTML CSS & JavaScript Day104

https://dheerajy1.hashnode.dev/building-portfolio-website-using-html-css-javascript-day104

Hashnode - javascript (Javascript)

Today #Day104 of #100DaysOfCode, I am Building Portfolio Website Using HTML CSS & JavaScript. Skills define a section, Tip: section.skills.section#skills define a heading with h2 tag, also define a subtitle,


42: Learn about Apis (Beginners)

https://soumali28.hashnode.dev/learn-about-apis-beginners

Hashnode - javascript (Javascript)

An API (Application Programming Interface) is a set of protocols, routines, and tools for building software and applications. It specifies how software components should interact, allowing for communication between different systems, and enabling the...


43: Reusable React Components (Inspired by Hemingway)

https://buhalbu.hashnode.dev/reusable-react-components

Hashnode - javascript (Javascript)

Should we think about the reusability of our code all the time' Some advise us to think about it only after we face the need for it. That means if we're creating a brand new component and don't know whether it will be used somewhere else, then we sho...


44: Day 8-In Web Development

https://kuldeepsaksena.hashnode.dev/day-8-in-web-development

Hashnode - javascript (Javascript)

About The CSS Today I learn about the selectors in CSS Selector: A selector selects the HTML elements you want to style. Types of Selectors: Simple Selectors Combinator Selectors: Attribute Selectors: Pseudo-class-selectors: Pseudo-elements-sel...


45: what are Compiling, Bundling, and Minifying'

https://nidhisharma.hashnode.dev/what-are-compiling-bundling-and-minifying

Hashnode - javascript (Javascript)

Compiling Compiling in JavaScript refers to the process of converting code written in a high-level programming language (such as JavaScript) into machine code that can be understood and executed by a computer's processor. This is typically done by a ...


46: React App Hierarchy

https://anilmaurya.hashnode.dev/react-app-hierarchy

Hashnode - javascript (Javascript)

Let's Understand the typical React App hierarchy- public folder: contains the index.html file that serves as the entry point for the app and other static assets such as images and fonts. src folder: contains the main source code for the app. It typ...


47: Getting Started with Redis and Node.JS

https://fjolt.hashnode.dev/getting-started-with-redis-and-nodejs

Hashnode - javascript (Javascript)

Redis is a powerful tool for caching data and having it available in memory. Redis requires RAM to use, and every piece of data you use in Redis is loaded into the RAM. That means it can be accessed really quickly, which allows us to cache and provid...


48: Binary Search Tree in Javascript

https://vedanshmehra.hashnode.dev/binary-search-tree-in-javascript

Hashnode - javascript (Javascript)

Binary Search Tree is one of the most commonly asked Data Structures in technical interviews. In this article, we will learn about what a binary search tree is and how to perform insertion into a node into a BST. What is a Binary Search Tree' A binar...


49: Scrape Google Lens with Python

https://chukhraiartur.hashnode.dev/scrape-google-lens-with-python

Hashnode - python (python)

What will be scraped Using Google Lens API from SerpApi If you don't need an explanation, have a look at the full code example in the online IDE. from serpapi import GoogleSearch import json params = { 'api_key': '...', 'engine': 'google_le...


50 / 84

50: Explaining Streams and Buffers in NodeJS as you were of age 5.

https://shekharthakur01.hashnode.dev/explaining-streams-and-buffers-in-nodejs-as-you-were-of-age-5

Hashnode - javascript (Javascript)

"Hey there, kiddo! Do you like to play with toys that pour water or sand from one container to another or you would love to play with lego bricks' Well, imagine that but instead of water, sand or lego bricks, we are playing with data! And Node.js has...


51: "Solving Common Array Questions in MNC Interviews: Part 1"

https://kadamshubham.com/solving-common-array-questions-in-mnc-interviews-part-1

Hashnode - javascript (Javascript)

Welcome to our blog on "Solving Common Array Questions in MNC Interviews: Part 1"! This blog series is dedicated to providing a comprehensive understanding of the array data structure and the various questions that are frequently asked in MNCs during...


52: Node js is Dead.

https://pulkitporwal.hashnode.dev/node-js-is-dead

Hashnode - javascript (Javascript)

Recently we heard that Node.js is Dead, Is that True' Well, I think this is partially true. Because the inventor of node.js Ryan Dahl announced in a seminar that they are introducing a new JavaScript and TypeScript runtime Environment called Denojs. ...


53: CSS Box Model (Padding, Margin, Border)

https://kavita.hashnode.dev/css-box-model-padding-margin-border

Hashnode - javascript (Javascript)

The CSS box model is a container that contains multiple properties including borders, margin, padding, and the content itself. It is used to create the design and layout of web pages. It can be used as a toolkit for customizing the layout of differen...


54: Understanding Call, Bind and Apply Methods in JavaScript

https://whatisweb.dev/understanding-call-bind-and-apply-methods-in-javascript

Hashnode - javascript (Javascript)

If you are learning JavaScript, you might have seen the this keyword. The this keyword in JavaScript behaves differently compared to other programming languages. This causes a lot of confusion for programmers. In other object-oriented programming lan...


55: Position in CSS

https://moreshwar.hashnode.dev/css-positions

Hashnode - javascript (Javascript)

Introduction Position property in CSS determines the placement of the element in the document. These elements can be placed in 'top, ' right, bottom'', left '' throughout the ' document. There are 4 properties to play with i.e. position: static,...


56: Emmet the web developer's best friend

https://sahilbuild.hashnode.dev/emmet-the-web-developers-best-friend

Hashnode - javascript (Javascript)

Emmet is a remarkably easy way to add speed and efficiency to your development. With the emmet plugin, you'll never have to think about writing out unnecessary HTML tags again. It's that simple! What is Emmet' Emmet is a tool for generating autocomp...


57: Devblog 7: Going into another Directus

https://fluttergamedev.com/devblog-7-going-into-another-directus

Hashnode - Flutter (Flutter)

It's been a while since the last devblog. It was a busy couple of weeks with the holidays and the Flutter Forward event coming up. I made a little bit of progress on the project which also involved a rather impactful decision. But first, let me tell ...


58: The Power of JavaScript: A Beginner's Guide to Web Development

https://harshpatil03.hashnode.dev/the-power-of-javascript-a-beginners-guide-to-web-development

Hashnode - javascript (Javascript)

JavaScript is a high-level, interpreted programming language that plays a critical role in web development. It allows developers to create dynamic, interactive, and engaging user experiences on websites and web applications. With its increasing popul...


59: Variables in JavaScript

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

Hashnode - javascript (Javascript)

Chances are that this is not the first time you come across the term 'variables'. In Mathematics, a variable is an alphabet used to represent an unknown number. For instance, if the square of an unknown number is 81, we could represent the number by ...


60 / 84

60: What is CSS Transition '

https://zordcoder.live/what-is-css-transition

Hashnode - javascript (Javascript)

In the coming weeks, I plan to create articles that will help you easily accomplish important tasks in CSS and other languages. However, this article focuses solely on the CSS transition, including its various properties and how to use them. I wish I...


61: Scaling Strategies for Reliable and Scalable Systems

https://prajwalbandak.hashnode.dev/scaling-strategies-for-reliable-and-scalable-systems

Hashnode - javascript (Javascript)

System design is the process of defining the architecture, modules, interfaces, and data for a system to satisfy specified requirements. It involves analyzing and understanding the requirements, breaking down the system into smaller parts, identifyin...


62: You.com, un concentré d'IA dans un moteur de recherche

https://www.lemondeinformatique.fr/actualites/lire-youcom-un-concentre-d-ia-dans-un-moteur-de-recherche-89293.html

Le monde informatique (Internet / Informatique)

Selon les dernières nouvelles, Microsoft pourrait intégrer l'intelligence artificielle à Bing dès cette année, et Google (...)


63: Flow Of Code Execution In JavaScript

https://nightcoder.hashnode.dev/flow-of-code-execution-in-javascript

Hashnode - javascript (Javascript)

JavaScript is a single-threaded programming language, which means it can only process one task at a time. However, it uses something called the Event Loop to handle asynchronous tasks, such as user input, network requests, and timers. Understanding t...


64: Kotlin and Firebase: A Hands-On Guide to Authentication

https://krishparekh.hashnode.dev/kotlin-and-firebase-a-hands-on-guide-to-authentication

Hashnode - Kotlin (Mobiles)

Welcome to our series of blogs on Firebase integration and functionality in Android using Kotlin. In this first blog, we will be covering the setup of Firebase Authentication in your Android app. Whether you're new to Firebase or an experienced devel...


65: Binary Tree<T> implementation using Dart

https://sumanmanna.hashnode.dev/binary-treet-implementation-using-dart

Hashnode - Flutter (Flutter)

Binary trees are a fundamental data structure in computer science, often used for searching and sorting algorithms. They are a tree-like data structure where each node can have at most two children, referred to as the left and right children. Here is...


66: Binary Tree<T> implementation using Dart

https://iamsuman.com/binary-treet-implementation-using-dart

Hashnode - Flutter (Flutter)

Binary trees are a fundamental data structure in computer science, often used for searching and sorting algorithms. They are a tree-like data structure where each node can have at most two children, referred to as the left and right children. Here is...


67: (day 1)my 7 Day Journey To Data Science

https://akashpugal.dev/day-1my-7-day-journey-to-data-science

Hashnode - python (python)

Hey guys, It's Akash Pugal from India. I'm currently pursuing my under-grad degree in Computer Science and Engineering.Since I started my college days I loved the process of making a website and I'm completely attracted to WEB DEV domain for a long p...


68: Scope in JavaScript

https://rajyadav.hashnode.dev/scope-in-javascript

Hashnode - javascript (Javascript)

There are 3 types of Scope in JavaSrict 1. Global Scope It is accessible from everywhere in a file Here, book is global variable and can be access anywhere 2. Functional Scope When a variable is declared inside a function, it is only accessible with...


69: Python: Simple is better than Complex

https://raykipkorir.hashnode.dev/python-simple-is-better-than-complex

Hashnode - python (python)

Python is one of the most popular programming languages. So what makes Python unique' Let's dive in. Definition Python is a high-level, object-oriented, interpreted, and general-purpose programming language. Let's go back in time ... Python was creat...


70 / 84

70: Callback Function In JavaScript

https://ankitdevelops.hashnode.dev/callback-function-in-javascript

Hashnode - javascript (Javascript)

A callback function is a function that is passed as an argument to another function and is executed after the outer function has been completed. Why do we use the callback function' we use the callback function because it allows for the execution of ...


71: How to loop through object - JavaScript

https://mo-ibra.hashnode.dev/how-to-loop-through-object-javascript

Hashnode - javascript (Javascript)

In this article we will learn how to loop through object. It is very common to iterate over an object in JavaScript. There is more than one way to do this, and in this lesson we will discuss all the ways. Methods that can be used to loop through obje...


72: How to save Environment Variables in Python virtual env

https://magbanum.tech/how-to-save-environment-variables-in-python-virtual-env

Hashnode - python (python)

Saving environment variables in a Python virtual environment can be a great way to keep your project's dependencies and settings organized and separate from other tasks on your machine. I use Django to create APIs for the front end of my website. Dja...


73: Functions in python

https://imsmd.com/functions-in-python

Hashnode - python (python)

1) What is function' A function in Python is like a recipe. Just like how you follow a recipe to make a cake, a function is a set of instructions that tell the computer what to do. It's like a mini-program within a bigger program. We give a name to ...


74: Flutter 101: An Introduction to Google's Framework for Building Mobile Apps

https://kranthicodes.hashnode.dev/flutter-101-an-introduction-to-googles-framework-for-building-mobile-apps

Hashnode - Flutter (Flutter)

what is flutter' Want to create visually stunning mobile apps' Look no further than #Flutter! This trendy framework has been widely adopted by top companies and developers to build high-performing, expressive and beautiful apps. Google's Flutter is a...


75: How to start off with Web Development: from the Eyes of a Tech Newbie.

https://shrishti115.hashnode.dev/how-to-start-off-with-web-development-from-the-eyes-of-a-tech-newbie

Hashnode - javascript (Javascript)

I know it must be an overwhelming and tedious process to get yourself started in WebD because I have experienced it firsthand. There are multiple courses, roadmaps, boot camps, and whatnot, and all of this somehow fuels the anxiety. You start to lose...


76: Get started with App Development

https://shrishti115.hashnode.dev/get-started-with-app-development

Hashnode - Flutter (Flutter)

Have you ever wondered how apps work' How fascinating it is to navigate through your favourite apps, and stand in awe of their intricacies and utility. I am sure that at least once you dreamt of building an app on your own. Also, if you are reading t...


77: This day in search marketing history: January 29

https://searchengineland.com/search-marketing-history-january-29-392336

Search engine land (Référencement)

Google penalizes a link network, plus: paid search spending, Google warns about article directories, Yelp ratings in Google AdWords and more. The post This day in search marketing history: January 29 appeared first on Search Engine Land.


78: How to easily create URL parameters using searchParams in JavaScript

https://typec.hashnode.dev/how-to-easily-create-url-parameters-using-searchparams-in-javascript

Hashnode - javascript (Javascript)

What are URL parameters' URL parameters are just a way to send information to perform certain tasks such as filtering, sorting, translating, describing etc. ' How do we do it' You might have seen people encoding URL parameters like this const url = ...


79: Deploy your data pipelines with Github Actions

https://blog.harshdaiya.com/deploy-your-data-pipelines-with-github-actions

Hashnode - python (python)

Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. You can discover, create, and share actions to perform any job you'd like, including CI/CD, and combine actions in a completely customi...


80 / 84

80: Three Reasons Why JavaScript forEach is Special

https://abinjohn.in/javascript-foreach

Hashnode - javascript (Javascript)

The other day, I found an interesting code snippet in the 'Spot The Bug' section of a Bytes newsletter. Can you spot it' const getCapitalizedInitials = (name) => name .trim() .split(" ") .forEach((name) => name.charAt(0)) .join("") ...


81: "Tracing the Evolution: A History of JavaScript"

https://codianfaisal.com/tracing-the-evolution-a-history-of-javascript

Hashnode - javascript (Javascript)

JavaScript is a programming language that was created in 1995 by Brendan Eich while working at Netscape Communications Corporation. It is a high-level, dynamic, and interpreted programming language that is widely used for creating interactive web pag...


82: Python dedupe library for entity resolution

https://blog.bhuwanupadhyay.com/post-from-github-as-source

Hashnode - python (python)

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It h...


83: Web Weekly 90 (blogPost)

https://www.stefanjudis.com/blog/web-weekly-90/

Stefan Judis (Développement)

Guten Tag!Do you know that you can use CSS Grid to animate an element's height' Have you heard of the new scrollend JavaScript event' Or do you use rel="tag" somewhere' All the answers and much more are included in this week's Web Weekly. ' Regarding forms, you should rely on the native form elements because they provide the best user experience, right' I remember being overly excited wh [...]




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