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

« Janvier 2022 »

  • 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 22 Janvier 2022 (47)

1: The Tech Storm

https://cybergenie50.hashnode.dev/the-tech-storm

Hashnode - javascript (Javascript)

So many wave hovering round this space. You really want to see the end of the drama, yet nothing is unfolding. You think you are the problem, you go so far and try to see if there is an endpoint, yet it's totally dark. You look for a context to place...


2: The benefit from participating in an online programming forum

https://thattyguy.hashnode.dev/the-benefit-from-participating-in-an-online-programming-forum

Hashnode - javascript (Javascript)

Insert old man voice here Back in my day forums used to be boring! IRC chats were bare bones and the only real option you had was to use forum software like phpBB or vbulletin, which both might still be popular to this day but are still boring and st...


3: The dark side of Flutter: 4 inconveniences that every Flutter developer should know

https://davidserrano.io/the-dark-side-of-flutter-4-inconveniences-that-every-flutter-developer-should-know

Hashnode - Flutter (Flutter)

Flutter is an incredible framework for building mobile apps, from its elegant declarative syntax, the flexibility and power of its widget system, the possibility of seeing the changes in the code reflected in the app in less than a second thanks to t...


4: "this" Keyword

https://blogs.mihirbagchi.com/this-keyword

Hashnode - javascript (Javascript)

Hi, I hope you are doing well, A lot of times I have encountered people that consider JS as some sort of' bandage fix' language, some say it is a duct tape of the internet, the people that say these words don't appreciate the beauty of this language,...


5: Learning Regex by creating an Email Password validator

https://rishav10.hashnode.dev/learning-regex-by-creating-an-email-password-validator

Hashnode - javascript (Javascript)

Introduction As we all know, developers need to learn regular expressions (or Regex). A regular expression is a sequence of characters that specifies a search pattern in text. It is mainly used for "find" or "find and replace" operations or for input...


6: 3 Stories About Generating PDF Documents

https://coding-philosophy.hashnode.dev/3-stories-about-generating-pdf-documents

Hashnode - javascript (Javascript)

I want to share my experience of building PDF generators. PDF export from HTML pages was always a big problem. A few times we were stuck for weeks while building food tech projects. Being aware that it might cause a problem, I decided to separate ou...


7: Basics of JavaScript

https://sobhandash.hashnode.dev/basics-of-javascript

Hashnode - javascript (Javascript)

This article or blog will be a refresher as well as a guide for people that are new to the world of web development. You might encounter questions similar to these in your interviews as well. As for me, I am making this so I really don't have to sear...


8: Promises in javascript!

https://rohanmathur.hashnode.dev/promises-in-javascript

Hashnode - javascript (Javascript)

According to MDN, a promise is an object representing the eventual completion or failure of an asynchronous operation. Promises are used to deal with asynchronous operations in javascript. An asynchronous operation can be like, getting data from Ne...


9: Best Animation Libraries for ReactJS

https://surajondev.hashnode.dev/best-animation-libraries-for-reactjs

Hashnode - javascript (Javascript)

Originally published at surajondev.com Introduction ReactJS is the most popular and loved framework among web developers for developing the frontend. From the launch, it has seen only growth. There are tons of libraries on the web for ReactJS that ma...


10 / 47

10: LeetCode - Balanced Binary Tree

https://alkesh26.hashnode.dev/leetcode-balanced-binary-tree

Hashnode - javascript (Javascript)

Problem statement Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as: a binary tree in which the left and right subtrees of every node differ in height by no more than 1. Problem sta...


11: Recursion

https://tamago.hashnode.dev/recursion

Hashnode - javascript (Javascript)

As a person with no CS background, one of the most daunting things to do is solve algorithm problems. I honestly struggle to solve easy problems on LeetCode. And, those problems that give me a headache often times involved recursion. I have tried to ...


12: Recursion in Programming

https://tamago.hashnode.dev/recursion-in-programming

Hashnode - javascript (Javascript)

As a person with no CS background, one of the most daunting things to do is solve algorithm problems. I honestly struggle to solve easy problems on LeetCode. And, those problems that give me a headache often times involved recursion. I have tried to ...


13: Starting my Javascript Bloging Journey by solving FCC's Basic Algorithm Scripting Challenges

https://blog.itahir.dev/starting-my-javascript-bloging-journey-by-solving-fccs-basic-algorithm-scripting-challenges

Hashnode - javascript (Javascript)

Hi, my name is Tahir. I have been doing responsive email templates development (front-end but from the 90s '). Want to switch over to full-stack development and start from Javascript. I have been struggling with JavaScript and thought I should write...


14: ES6 Modules

https://hashnode.com/post/es6-modules-ckypwedio08dtans12wyf9nnj

Hashnode - javascript (Javascript)

When we are building applications there are 2 options To write all code in single file To divide the code in different sections and reuse them If your project codebase is very small and it might not grow in near future, then you are free choose bet...


15: ES6 Modules

https://myblog.ashwinikemshetty.com/es6-modules

Hashnode - javascript (Javascript)

When we are building applications there are 2 options To write all code in single file To divide the code in different sections and reuse them If your project codebase is very small and it might not grow in near future, then you are free choose bet...


16: Cheat sheet: Arrays in JavaScript

https://kasasira.hashnode.dev/cheat-sheet-arrays-in-javascript

Hashnode - javascript (Javascript)

JavaScript Arrays are a very flexible data structure and are used as lists, stacks, queues, etc. Every value in an array is associated with a numeric index starting with 0. Here is everything you need to get started with arrays Using Arrays How to cr...


17: 7 Killer JavaScript One-Liners that you must know

https://kamran.hashnode.dev/7-killer-javascript-one-liners-that-you-must-know

Hashnode - javascript (Javascript)

1. Generate Random String if you will ever need a temporary unique id for something. this one-liner will generate a random string for you const randomString = Math.random().toString(36).slice(2); console.log(randomString); //output- r0zf1xfqcr (the...


18: Basics of Typescript

https://shreyazz.hashnode.dev/basics-of-typescript

Hashnode - javascript (Javascript)

Hey, developers in today's blog we are going to learn about the basics of typescript. This is going a be a series of blogs in which I'm gonna help you learn TypeScript in an easy way! We are going to cover What is TypeScript' Why should we use it ...


19: JS Slice, Substring, Substr

https://vkglobal.hashnode.dev/js-slice-substring-substr

Hashnode - javascript (Javascript)

All these methods are used to extract part of given string. Declarations: slice(start, end); - slice from start (including) to end (excluding) and accepts negative values. substring(start, end); - same like slice but won't accepts negative values. s...


20 / 47

20: 2. Open-Closed in [S.O.L.I.D] Principles.

https://ameenblog.hashnode.dev/2-open-closed-in-solid-principles

Hashnode - Kotlin (Mobiles)

Introduction: -- In this series, I will explain the five rules of S.O.L.I.D principles in detail So, your code will be readable, maintainable, and testable. You can find the previous chapters of the series below: 1. [S] in [S.O.L.I.D] Single Respons...


21: Advanced Economy Bot for Discord Built in JavaScript(Node.js)

https://rlxop.hashnode.dev/advanced-economy-bot-for-discord-built-in-javascriptnodejs

Hashnode - javascript (Javascript)

Economy Bot for Discord in JavaScript (Node.js) Hi ', I am RLX and today I am going to introduce you a Economy Bot for Discord that is built in JavaScript (Node.js). It has a lot of features like: 1. Slash Commands 2. Easy to Configure 3. Free of ...


22: How to host your React App on Github '

https://harshsinghatz.hashnode.dev/how-to-host-your-react-app-on-github

Hashnode - javascript (Javascript)

There are a lot of hosting platforms where you can host your React application, with some of them being Vercel and Netlify. But did you know that we can also host our React Application on Github which is a super easy process. So let's go and host you...


23: JavaScript Type Conversion & Coercion

https://mboehm.hashnode.dev/javascript-type-conversion-and-coercion

Hashnode - javascript (Javascript)

JavaScript can be confusing sometimes and one of the biggest sources of confusion is type conversion and coercion in JavaScript. Here is an example: '5' + '3' -> '53' '5' - '3' -> 2 Why the hell is '5' + '3' = '53' but '5' - '3' = 2' Coercion is the...


24: Make an Instagram bot in Python using instabot library

https://wulfi.hashnode.dev/make-an-instagram-bot-in-python-using-instabot-library

Hashnode - python (python)

In this article we will try to make an Instagram bot using Python and Instabot. Bots are really common these days to that automates the tasks such as sending messages, uploading photos, following and unfollowing users, and many more. Bots reduce our ...


25: Make an Instagram bot in Python

https://wulfi.hashnode.dev/make-an-instagram-bot-in-python

Hashnode - python (python)

In this article we will try to make an Instagram bot using Python and Instabot. Bots are really common these days to that automates the tasks such as sending messages, uploading photos, following and unfollowing users, and many more. Bots reduce our ...


26: Amazon optimise l'emballage des colis avec l'IA

https://www.lemondeinformatique.fr/actualites/lire-amazon-optimise-l-emballage-des-colis-avec-l-ia-85532.html

Le monde informatique (Informatique / Internet)

Toute la filière logistique est concernée par la question de l'emballage et surtout du suremballage, de son impact environnemental, (...)


27: 6 Valuable Skills for Novice Frontend Developers in 2022

https://flutterhub.hashnode.dev/6-valuable-skills-for-novice-frontend-developers-in-2022

Hashnode - javascript (Javascript)

As a frontend developer, it's your job to make sure that the user interface of a software program functions properly. It's a difficult job because you have to make sure that every component works the way it's supposed to so that users have a good exp...


28: Mock Service -React Testing lib ' MSW | React unit testing

https://blog.learningmoduleindia.in/mock-service-react-testing-lib-msw-or-react-unit-testing

Hashnode - javascript (Javascript)

Problem- How to simulate API response in react unit testing. Solution- While doing unit testing, we do not call real Api's but we mock API responses. there are many ways to mock/test API response but one of the most reliable and better way is the use...


29: FTC soupçonne Meta de pratiques anticoncurrentielles

https://www.realite-virtuelle.com/ftc-soupconne-meta/

realite-virtuelle.com (Réalité Virtuelle)

Selon un récent rapport de Bloomberg, la Federal Trade Commission ou FTC des États-Unis soupçonne […] Cet article FTC soupçonne Meta de pratiques anticoncurrentielles a été publié sur Réalité-Virtuelle.com.


30 / 47

30: How to work with Objects Using Object.keys, values & entries '

https://hashnode.com/post/how-to-work-with-objects-using-objectkeys-values-and-entries-ckyphzbbs03uqans1c8yscvja

Hashnode - javascript (Javascript)

I've made video on this topic in very simple way so you can understand how to work with object effectively. Checkout Video


31: What is Feature Engineering'

https://manavmodi.hashnode.dev/what-is-feature-engineering

Hashnode - python (python)

What is Feature Engineering' Feature Engineering is the process of the creation of new features based on existing features. It can add features important for clustering tasks or insight into relationships between features. Real-world data is not in...


32: Open Source and 100 Days of Code: Week 1 Update

https://ckvignesh.hashnode.dev/open-source-and-100-days-of-code-week-1-update

Hashnode - javascript (Javascript)

Prologue My first attempt at #100DaysOfCode was back in October 2021. It also coincided with the Hacktoberfest 2021 (which was in October). I started contributing to Open Source without really intending to. I saw a Repo that had some missing links an...


33: Liens vagabonds : Quel avenir pour le service public au Royaume-Uni '

https://www.meta-media.fr/2022/01/22/liens-vagabonds-quel-avenir-pour-le-service-public-au-royaume-uni.html

Meta Media (Internet)

À RETENIR CETTE SEMAINE BBC, le service public sous pression  - Le gouvernement de Boris Johnson a réservé un cadeau empoisonné à la BBC, qui fête cette année ses cent ans : le gel de la redevance pour les deux prochaines années, et une menace de suppression totale de celle-ci...


34: How To Sort Array in JavaScript

https://thevaultpress.com/how-to-sort-array-in-javascript

Hashnode - javascript (Javascript)

Recently I have been doing a lot of interview assessments and the ones that I usually find a joy to do is all those small data structures problems, like how do you sort a set of random numbers in ascending order. So let's try to do that in JavaScript...


35: Find and Remove Special Characters From String in Flutter Dart

https://flutter-examples.com/find-and-remove-special-characters-from-string-in-flutter-dart/

Flutter Examples (Flutter)

Hello friends, In today’s tutorial we would learn about finding and replacing special characters like ‘@#%^&*();’ and many more of them into a String in flutter. This all can be happen use of RegExp function which is a regular expression. We would use RegExp with String replaceAll() method. To understand... Continue reading The post Find and Remove Special Characters From St [...]


36: Android Coroutine Extensions

https://rommansabbir.hashnode.dev/android-coroutine-extensions

Hashnode - Kotlin (Mobiles)

Why Coroutine' A coroutine can provide a very high level of concurrency with very small overhead. Multiple threads can also provide parallelism but there is blocking and context switching. Coroutine suspends the thread and does not block it so that i...


37: Android Coroutine Extensions

https://rommansabbir.com/android-coroutine-extensions

Hashnode - Kotlin (Mobiles)

Why Coroutine' A coroutine can provide a very high level of concurrency with very small overhead. Multiple threads can also provide parallelism but there is blocking and context switching. Coroutine suspends the thread and does not block it so that i...


38: Handling Mongoose errors in a smart way

https://mohitsaud.hashnode.dev/handling-mongoose-errors-in-a-smart-way

Hashnode - javascript (Javascript)

Instead of using third-party applications or using your own code, there is another way to handle errors like Duplicate Key Error, Mongoose bad ObjectId and others. First create a Class like this:class ErrorResponse extends Error {constructor(messa...


39: My very first individual cloning project, YOOX website, construct week Masai School

https://hashnode.com/post/my-very-first-individual-cloning-project-yoox-website-construct-week-masai-school-ckypd8seh04cl7js1hofj0kdb

Hashnode - javascript (Javascript)

Hello Readers, How is your day' Hope everything is safe and sound. I am about to share my experience of doing my very first individual project given in my construct wee at Masai School. The target is to clone a website named YOOX in a span of seven d...


40 / 47

40: An Overview of Modern Web Development Process

https://tahsin.hashnode.dev/modern-web-development-process

Hashnode - javascript (Javascript)

A web development process is one of the first things modern web developers must grasp. This article will show how web developers nowadays acquire code from their local workstations and deploy it to live servers to visit their website or utilize a web...


41: Publish an Android Library to Azure Artifacts Using Mavin Publish Gradle Plugin

https://rofaeilashaiaa.hashnode.dev/publish-an-android-library-to-azure-artifacts-using-mavin-publish-gradle-plugin

Hashnode - Kotlin (Mobiles)

In this article we are going to explore how to configure an existing android library to use the Mavin Publish Gradle Plugin to publish this android library to Azure Artifacts then use the published library in an android app. First let's assume that y...


42: Crypto-space 102

https://tothemoonspace.hashnode.dev/crypto-space-102

Hashnode - javascript (Javascript)

What have you heard about cryptocurrency' What are the rules I must follow in order to be financially free in this space' We are here to take you on another trip to financial freedom. Fasten your seat belts, we're about to take off. Cryptocurrency D...


43: Elite Watch-List, Developers Top 10!

https://vinyldavyl.hashnode.dev/elite-watch-list-developers-top-10

Hashnode - javascript (Javascript)

Movies inspire you to be a smarter and a better person, or in our case a better Developer. Today, when the world is hyper-connected, movies are the best way to see through it. How many of you have seen these movies' 1. The Social Network The whole mo...


44: Rudimentos de JS: .slice() VS .splice()

https://juanluis.hashnode.dev/rudimentos-de-js-slice-vs-splice

Hashnode - javascript (Javascript)

Diferencias entre .slice() y .splice() Los arreglos (también conocidos como arrays) en JavaScript permiten almacenar una colección de datos a los cuales se puede acceder por medio de índices. Además, pueden contener distintos tipos de datos a la vez....


45: Understand Kotlin Function Literal with Receiver by Example

https://vtsen.hashnode.dev/understand-kotlin-function-literal-with-receiver-by-example

Hashnode - Kotlin (Mobiles)

I came across this lambda syntax - NavGraphBuilder.() -> Unit and it turns out it is called Function Literal with Receiver which is also known as Lambda/Anonymous Function with Receiver. The syntax looks like this: Receiver.(Parameters) ' ReturnType...


46: Recommended Visual studio code extensions for Flutter developers

https://alemsbaja.hashnode.dev/recommended-visual-studio-code-extensions-for-flutter-developers

Hashnode - Flutter (Flutter)

In this article, we'll be looking at awesome vscode extensions for Flutter developers. Vscode is a free open-source text editing tool by Microsoft with support for developing applications using different programming languages. It has built-in Git fun...




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