Ci dessous, les actualités de quelques sites qui ont tout mon intérêt (à différents niveaux).
La veille Haut de page Lendemain
https://cybergenie50.hashnode.dev/the-tech-storm
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...
https://thattyguy.hashnode.dev/the-benefit-from-participating-in-an-online-programming-forum
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...
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...
https://blogs.mihirbagchi.com/this-keyword
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,...
https://rishav10.hashnode.dev/learning-regex-by-creating-an-email-password-validator
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...
https://coding-philosophy.hashnode.dev/3-stories-about-generating-pdf-documents
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...
https://sobhandash.hashnode.dev/basics-of-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...
https://rohanmathur.hashnode.dev/promises-in-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...
https://surajondev.hashnode.dev/best-animation-libraries-for-reactjs
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
https://alkesh26.hashnode.dev/leetcode-balanced-binary-tree
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...
https://tamago.hashnode.dev/recursion
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 ...
https://tamago.hashnode.dev/recursion-in-programming
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 ...
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...
https://hashnode.com/post/es6-modules-ckypwedio08dtans12wyf9nnj
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...
https://myblog.ashwinikemshetty.com/es6-modules
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...
https://kasasira.hashnode.dev/cheat-sheet-arrays-in-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...
https://kamran.hashnode.dev/7-killer-javascript-one-liners-that-you-must-know
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...
https://shreyazz.hashnode.dev/basics-of-typescript
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 ...
https://vkglobal.hashnode.dev/js-slice-substring-substr
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
https://ameenblog.hashnode.dev/2-open-closed-in-solid-principles
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...
https://rlxop.hashnode.dev/advanced-economy-bot-for-discord-built-in-javascriptnodejs
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 ...
https://harshsinghatz.hashnode.dev/how-to-host-your-react-app-on-github
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...
https://mboehm.hashnode.dev/javascript-type-conversion-and-coercion
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...
https://wulfi.hashnode.dev/make-an-instagram-bot-in-python-using-instabot-library
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 ...
https://wulfi.hashnode.dev/make-an-instagram-bot-in-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 ...
Toute la filière logistique est concernée par la question de l'emballage et surtout du suremballage, de son impact environnemental, (...)
https://flutterhub.hashnode.dev/6-valuable-skills-for-novice-frontend-developers-in-2022
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...
https://blog.learningmoduleindia.in/mock-service-react-testing-lib-msw-or-react-unit-testing
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...
https://www.realite-virtuelle.com/ftc-soupconne-meta/
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
I've made video on this topic in very simple way so you can understand how to work with object effectively. Checkout Video
https://manavmodi.hashnode.dev/what-is-feature-engineering
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...
https://ckvignesh.hashnode.dev/open-source-and-100-days-of-code-week-1-update
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...
À 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...
https://thevaultpress.com/how-to-sort-array-in-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...
https://flutter-examples.com/find-and-remove-special-characters-from-string-in-flutter-dart/
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 [...]
https://rommansabbir.hashnode.dev/android-coroutine-extensions
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...
https://rommansabbir.com/android-coroutine-extensions
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...
https://mohitsaud.hashnode.dev/handling-mongoose-errors-in-a-smart-way
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...
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
https://tahsin.hashnode.dev/modern-web-development-process
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...
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...
https://tothemoonspace.hashnode.dev/crypto-space-102
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...
https://vinyldavyl.hashnode.dev/elite-watch-list-developers-top-10
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...
https://juanluis.hashnode.dev/rudimentos-de-js-slice-vs-splice
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....
https://vtsen.hashnode.dev/understand-kotlin-function-literal-with-receiver-by-example
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...
https://alemsbaja.hashnode.dev/recommended-visual-studio-code-extensions-for-flutter-developers
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.
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.