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://levent-kantaroglu.hashnode.dev/random-value-generation-in-dart
Besides working with external APIs and getting runtime user interactions, internal runtime random value generation saves you to a steady flow. All programming languages I have ever met have this functionality within their SDKs. Dart too. Usage of Ran...
https://ayobamih.hashnode.dev/object-oriented-programming
What is it' In JavaScript, object-oriented programming (OOP) is a programming paradigm that is based on the concept of "objects", which can contain data and code that manipulates that data, the OOP programming paradigm is fundamental to many language...
https://oluwatrillions.hashnode.dev/javascript-and-the-dom
In my last article, I talked about Javascript and its relationship with HTML and CSS. Today, we will be talking about how Javascript accesses elements through the DOM. How it accesses HTML nodes to effect some form of manipulation to achieve dynamic ...
https://01nakulgoel.hashnode.dev/mastering-react-in-8-weeks-day-3
Hi, Hashnoders or Learners today we will study some really amazing things about React. in this blog, we will be doing some practice questions as well so tighten your seat belt as this journey will be a roller coaster ride for all of you. React compo...
https://techdrilldown.com/javascript-basics-common-errors-and-error-handling
JavaScript has several types of errors that can occur while running a script. Here are some common error types and their causes: SyntaxError: This error can occur when you forget to include a semicolon at the end of a line of code, or if you use a k...
https://maxzeno.hashnode.dev/build-a-custom-command-line-tool-with-djangos-management-commands
Sure, here's a detailed guide on how to build a command line tool using Django's management commands. First, let's start by creating a new Django project and app: $ django-admin startproject myproject $ cd myproject $ python manage.py startapp myapp ...
https://huetiful.hashnode.dev/venturing-into-the-open-source-community-my-first-blog
Hi there! I'm so excited to publish my first post ever and engage with the Hashnode community. I'm a self-taught and aspiring frontend web developer. I've been learning how to write code for about 2 years now but something has been amiss during all t...
https://soamtripathy.hashnode.dev/linked-list-in-python
A linked list is a linear data structure that consists of a group of nodes, where each node stores a reference to an element and a reference to the next node in the list. Linked lists are useful for storing sequences of elements when the size of the ...
https://mahavir.hashnode.dev/javascript-if-condition-part-2
What are Truthy and Falsey states' The If condition executes when an expression returns Truthy value. If condition will execute else statement when the expression returns Falsey value. A Truthy value is a value that is considered "true" when used in ...
10 / 61
https://blog.aksact.dev/javascript-execution
In our previous interaction, we understood how Javascript is a Just In Time Compiled language. It's time to understand the internal workings of the Javascript Runtime Environment. There are two major types of Javascript Runtime Environments i.e. The ...
https://djaytechdiary.com/introduction-to-web-workers-in-react-2023
Introduction Web Workers are a way to run JavaScript in the background, separate from the main execution thread. This can be useful for offloading tasks that might block the main thread, such as loading large data sets or performing expensive calcula...
https://nileshdarji.hashnode.dev/how-to-setup-django-project-with-virtual-environment
What is django' Django is a powerful web framework for Python that allows developers to build dynamic and robust web applications quickly. In this tutorial, we will go over the steps to set up a Django project from scratch. Before we get started, mak...
https://atomicdesign.hashnode.dev/symfony-station-communique-23-december-2022
This communiqué originally appeared on Symfony Station, your source for cutting-edge Symfony, PHP, and Cybersecurity news. Welcome to this week's Symfony Station Communiqué. It's your review of the essential news in the Symfony and PHP development co...
The post Extensions pour construire un formulaire accessible sur WordPress first appeared on Creative Juiz.Dans mon éternelle quête d'un web meilleur, une question m’a été posée récemment sur LinkedIn. Cette question était la suivante : connais-tu un plugin WordPress qui permette de créer un formulaire accessible ' Je ne me suis jamais posé la question car j'utilise Contact Form 7 q [...]
https://sriram23.hashnode.dev/indentation-with-tab-key-in-react
Hello World! The "Tabulator key" commonly known as the "Tab" key has multiple purposes, depending on where it is being used. For example, if we hit the tab key in a spreadsheet, it would move the cursor one cell rightwards. If we hit it in a text edi...
https://kara14.hashnode.dev/adding-javascript-to-the-page
There are 2 ways to add your javascript Inline Javascript or use script tag External Javascript Inline Javascript In internal js, we use a script tag and inside the script tag, we write js code. Extern...
https://abelwanyonyi.hashnode.dev/the-javascript-reduce-method
The javascript reduce method is one of the most powerful javascript higher-order functions. In this article, we are going to see how it works, when to use it and some examples of cool pieces of stuff that the method can perform Things to know when us...
https://taw.hashnode.dev/pyscript-second-impressions
PyScript lets you run Python directly in the browser. I tried PyScript once before, but back then it didn't even run. Fortunately it got over this issue, and now it runs. Installation There's probably some way to get it through npm or pip, but PyScri...
Welcome to my blog on getting started with React Native and Flutter! These are two popular mobile development frameworks that allow you to build native apps for Android and iOS using a single codebase. React Native is a JavaScript framework developed...
20 / 61
https://krish999.hashnode.dev/chapter-1-how-does-javascript-work-internally
Hello developers, In this blog we will be looking at What happens exactly when your JavaScript code runs' We will also be looking at concepts like the Execution Context and the 2 phases of its creation, memory allocation and code execution in JavaScr...
https://mrinnnmoy.hashnode.dev/introduction-to-dom
For becoming an effective front-end developer one needs to understand and know how the DOM and events work in JavaScript. But before even starting to learn DOM you need to have a good understanding of Html , Css and JavaScript. It will help you to un...
https://articles.ajaydewangan/array-and-its-methods
Array - The array is a collection of data or we can say an array is a special variable, which can hold more than one value, either which can same type or a different type. An array is defined by a square bracket - "[ ]". *Syntax --
https://codecaliper.me/removing-duplicate-elements-from-a-list-in-python
In this tutorial, you will learn how to remove duplicate elements from a list in Python. Let's get started with the code. If you find this article helpful, please consider sharing it with your coding communities and social media groups so that others...
https://dheerajy1.hashnode.dev/building-javascript-layout-animations-day68
Today #Day68 of #100DaysOfCode, I am coding and explaining the 'Javascript Layout Animations' project taught by [developedbyed] This article is a continuation of day 67. CSS Now, styling the cards .card { height: 15rem; border-radius: 1rem; cur...
https://datashepherd.hashnode.dev/day-4-python-sets-101-7-days-of-python-data-structures
Welcome back to the "7 Days of Python Data Structures" challenge. This is the third article in the series. In the previous article, we had an overview of Python's built-in dictionary data structure. In this article, we'll cover another commonly used ...
https://vaibzde.hashnode.dev/variables-data-types-scopes-in-javascript
Hello and welcome to Day 4 of our back-end journey! ' In yesterday's lesson, we learned about the basics of JavaScript and how to write our first lines of code. Today, we'll be diving a bit deeper into the language and exploring some of its key conc...
https://tympanus.net/codrops/2022/12/24/ui-interactions-animations-roundup-27/
Looking for a fresh burst of animation inspiration' Check out this new collection of creative Dribbble shots.
https://amena.hashnode.dev/how-to-be-a-frontend-developer-complete-guide
Heyy Everyone!! ' How are you all doing' Hope you're doing well! Today we're gonna talk about How can you be a Front-End Developer! ' I have made this article so simple! About Frontend Development Now if we talk about the "Frontend" so basically, ...
https://imsabodetocode.hashnode.dev/what-are-css-container-queries
CSS has evolved in many aspects over the period. Think of managing the content with help of floats, then displaying the content in stacked style with the help of media queries where a lot of CSS has to be written for managing the entire page elements...
30 / 61
https://krabs.hashnode.dev/convert-your-julia-project-into-an-executable
If you want your Julia project to work as an executable, it is now possible with the exe.jl package. Using this package, you can easily convert any Julia project into an executable file. NOTE: You will need to organize your Julia code according to s...
https://atuoha.hashnode.dev/understanding-stateless-and-stateful-widgets-in-flutter
There is nothing much difference between a stateful and a stateless widget other than the ability to change when a user interacts with a component on the screen.Stateless widgets are widgets that do not require mutable states. It describes part of th...
https://mlclubnits.hashnode.dev/7-day-plan-for-a-beginner-in-machine-learning
Day- 1 You have to start by learning some basics of a programming language. In Machine Learning we majorly use Python. If you want to learn Machine Learning with Python. You should know the below concepts: Variables Mathematical Operators Control...
https://blog.dotenx.com/local-storage-and-session-storage-and-useful-tips-for-debugging
Quite often you come across a situation where you want to maintain some data on the browser without making requests to the server to store and retrieve the data. In such cases, you can use Web Storage API mechanisms, namely sessionStorage and localSt...
https://prajwalladkat.hashnode.dev/get-ahead-of-the-curve-top-5-linux-distros-to-try-in-2023
Talk is cheap. Show me the code - Linus Torvalds Linux is one of the most widely used operating systems after Windows and macOS. Many developers prefer Linux over Windows and macOS. As Linux is lightweight it can run older PCs as well as newer ones....
https://harshwsingh.hashnode.dev/swift-vs-flutter
Swift and Flutter are two popular programming languages and frameworks for building mobile applications. Here is a technical comparison between the two: Programming Language: Swift is a compiled programming language developed by Apple Inc. for their...
https://chloelaureate.hashnode.dev/javascript-in-1-min-comment
/*wording inside is safe, it will be a comment*/
https://chloelaureate.hashnode.dev/javascript-in-1-min-semicolon
Semicolon (;) The way how to separate code console.log(10+5) console.log(20-5) or console.log(10+5);console.log(20-5)
https://rohanpatil1797.hashnode.dev/javascript-array-and-its-methods
Array : JavaScript array is a single variable that is used to store different elements. It is often used when we want to store a list of elements and access them by a single variable. In the javascript array, we can store elements with different da...
https://subhamsahu.hashnode.dev/javascript-functions
The function is a defined block containing a set of statements. We can call functions, to execute statements within it. Functions are useful when we have some set of statements to be executed multiple times at different places in the program. Additio...
40 / 61
https://mahavir.hashnode.dev/javascript-if-condition-part-1
What is the IF condition' IF condition in programming is used for making decisions based on the boolean context of the expression i.e if the expression is true then the conditional code is executed. The programmer can selectively execute code based o...
https://abdulazeezkadiri.hashnode.dev/challenge-1-building-a-pomodoro-timer-challenges-and-solutions
Introduction Today, we're going to be talking about the Pomodoro Timer - a time management tool that has been around for decades and is still widely used today. As a developer, I was recently tasked with building a Pomodoro Timer for a client. While ...
https://blog.devjunction.in/how-to-create-custom-django-admin-list-filters
Hey everyone! If you're using Django Admin to manage your project's data, you know that the ability to filter and organize your models is crucial. That's where list filters come in. List filters are a built-in feature of Django Admin that allows you ...
A l'approche des fêtes de fin d'année, et de cette période souvent propice à la réflexion, Méta-Media vous propose une sélection de livres pour comprendre les effets des nouvelles technologies sur le monde qui nous entoure, et les perspectives qu'elles nous réservent. Bonne lecture, et surtout Bonnes Fêtes! Power and... The post Lectures d'hiver : nos recommandations pour cet hiver firs [...]
https://hash.imam.dev/hello-react-goodbye-useeffect-i-hope
In this article, I will show you how to use React to replace useEffect in most cases. I've been watching "Goodbye, useEffect" by David Khoursid, and it's ' blows my mind in a ' good way. I agree that useEffect has been used so much that it makes ou...
https://souptikdn.hashnode.dev/8-video-games-for-web-developers
In this post, I'll share with you 8 video games that can help you become a better web developer. From problem-solving and logic to design, playing these games will help you develop a variety of essential skills ' So grab your controller and let's ge...
https://cswithiyush.hashnode.dev/5-open-source-flutter-projects-to-boost-your-skills
Introduction ''''' Open-Source is the best way to get your hands on complex and well-structured Flutter projects. Many people wish to do open-source after learning something new but they don't know where to begin with. So I have compiled a list of ...
https://whiz-code.hashnode.dev/ideas-for-creating-visually-appealing-and-user-friendly-interfaces
As a Frontend developer, UI/UX, graphic designer, or photographer the most important aspect of your job is to create interfaces that are not only visually appealing but also easy to use, understand and navigate. A good interface can make all the diff...
https://rohan127.hashnode.dev/functions-in-javascript
What are Javascript functions JavaScript functions are blocks of code that can be defined and called by a name. They are an essential part of the JavaScript programming language and are used to perform a specific task or set of tasks. Functions work ...
https://imyashgupta.hashnode.dev/taking-the-first-step-my-blog-and-my-goals-for-the-next-year
Welcome to my first blog on Hashnode! As a software engineer currently working in web development, I have always been passionate about technology and the endless possibilities it offers. Whether it's building new applications or improving existing on...
50 / 61
https://yashgupta-resume.netlify.com/taking-the-first-step-my-blog-and-my-goals-for-the-next-year
Welcome to my first blog on Hashnode! As a software engineer currently working in web development, I have always been passionate about technology and the endless possibilities it offers. Whether it's building new applications or improving existing on...
https://ajaychauhan.hashnode.dev/array-and-all-its-methods-in-javascript
The Array in Javascript helps store a collection of multiple items under a single variable name and has different methods to perform various operations. How to initialize an array' let name = ["Mike","Samuel","Robert"]; Different array methods in Js...
https://ajaychauhan.hashnode.dev/javascript-variable-and-their-scope
What is variable' A Variable is a place holder/container for storing data. The general rule of declaring variables: must be identified with unique names. can contain letters, digits, underscores, and dollar signs. must begin with a letter, can als...
https://rohan127.hashnode.dev/javascript-object-and-its-method
Javascript Objects JavaScript objects are collections of key-value pairs. They are used to store, retrieve, and manipulate data in a structured way. Objects can be created in a number of different ways in JavaScript Create Objects ( with object liter...
https://copythecode.hashnode.dev/my-first-front-end-development-job-in-europe
My first front-end development Job in Europe About half a year ago, I have applied for too many companies to get an internship for the summer of 2022. At the time, I hadn't yet finished my second semester, and I had heard that finding a job in Hungar...
https://codincs.hashnode.dev/whats-my-next-year-plan
This year was an extremely bad year for me I learn only few enough technology but in the previous year, my goal is learn the backend from node.js or Django. What I learn in 2023'''' I my goal in 2023 is learning a full backend and explore aws and s...
https://kicode.hashnode.dev/code-kata-javascript-3
Find the longest common prefix in an given array For example: If given strs = ['start', 'stair', 'step'], return 'st' If given strs = ['start', 'wework', 'today'], return '' const getPrefix = strs => { let prefix =""; for (let i = 0; i < strs[0].le...
https://gorillasun.de/blog/An-Introduction-to-Javascript-Generators
Generators are a bit of an obscure feature of javascript, and their usefulness might not be immediately evident. This article aims at explaining how they work and what they can be used for! We'll first have a look at the syntax and how generators are typically implemented, followed by some use cases where generators come in really handy! We'll also briefly dip our toes into the concept of iteratio [...]
A version control system is a powerful tool that can help you manage and collaborate on your web development projects. It allows you to track and manage changes to your code over time, as well as collaborate with other developers on the same codebase...
https://vtsen.hashnode.dev/exploring-different-ways-to-collect-kotlin-flow
This is part of the asynchronous flow series: Part 1 - Exploring Android LiveData Usages and Behaviors Part 2 - Introduction to Kotlin Flows and Channels Part 3 - Exploring Different Ways to Collect Kotlin Flow Part 4 - Convert Flow to SharedFlow...
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.