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://cloudcoded.hashnode.dev/application-programming-interfacesapis
INTRODUCTION APIs (Application Programming Interfaces) are a fundamental part of modern software development. They allow developers to interact with external services and retrieve data that can be used to build dynamic and interactive web application...
https://sahil.asitis.dev/exploring-the-world-of-quantum-computing
As I delved into the exciting world of quantum computing algorithms, I learned about their unique properties that take advantage of quantum systems like superposition and entanglement to perform computations that classical computers cannot. I discove...
https://israelf.hashnode.dev/nodejs-an-overview-of-the-platform-and-its-benefits-for-web-development
OUTLINE WHAT IS NODEJS WHY NODEJS MAJOR DIFFERENCE BETWEEN NODE.JS AND COMMON JAVASCRIPT PREREQUISITES TO LEARNING NODE JS INSTALLING NODE.JS AND NPM CONCLUSION WHAT IS NODEJS Nodejs is a Javascript runtime environment and a server-side platform buil...
Introduction Hi everyone! I'm Abhilipsa and I have been summoned by the ghosts of all the esolangs you're yet to make, to help you make this crucial decision for your (perhaps, first-ever') esolang. Several modules have been designed to ease the deve...
https://codingtute.com/c-program-to-calculate-the-power-of-a-number/
In this tutorial, you will learn how to calculate the Power of a Number using a C program. C Program to Calculate the Power of a Number Output Explanation The function first checks if the exponent is 0. If it is, the function returns 1, since any number raised to the power of 0 is… Read More »C Program to Calculate the Power of a Number The post C Program to Calculate the Power of [...]
https://aryansri.hashnode.dev/introduction-to-caching
What is Caching' Caching is the process of storing frequently accessed data temporarily in cache memory so that it can be retrieved faster. Caching is used to improve the performance of applications and websites by reducing the amount of time needed ...
https://abnerkallildev.hashnode.dev/harnessing-the-power-of-array-reduce-a-beginners-guide
Arrays are a fundamental data structure in JavaScript that allow us to store and manipulate collections of data. However, working with arrays can often be challenging and time-consuming, especially when we need to perform complex operations on the da...
https://niteshs.hashnode.dev/uncovering-the-hidden-gems-of-html-discovering-lesser-known-html-tags
HTML is a fundamental part of web development. As technology advances using HTML tags is becoming more and more important. But some of the tags are not well known and don't get used much. In this post, we'll talk about some of those lesser-known tags...
https://www.realite-virtuelle.com/robots-et-ia-remplaceront-ils-prostitues/
Alors même que le porno VR est l’un des rares gagnants du développement de la […] Cet article Les robots et l'IA remplaceront-ils les prostitués'' a été publié sur Réalité-Virtuelle.com.
10 / 97
https://anuj0612.hashnode.dev/getting-started-with-flutter-a-comprehensive-guide
Flutter is an open-source mobile app development framework created by Google. It is an easy-to-use framework that allows developers to build cross-platform mobile applications for both Android and iOS using a single codebase. Flutter offers a rich se...
https://learnfrontenddepth.hashnode.dev/how-to-remove-a-specific-item-from-an-array-in-javascript
'''''''''' '' '''' - 6 : ' There are several ways to remove a specific item from the array in JavaScript. Here are few ways: Hope this helps ' Do Like ' Follow us on Linkedin:https://www.linkedin.com/in/sai-krishna-nangunuri-bba50418...
https://phdev.dev/differences-between-yarn-and-npm
Yarn and npm are both package managers for JavaScript, but there are some key differences between them: Speed: Yarn is generally faster than npm, especially when it comes to installing dependencies. Offline Mode: Yarn has an offline mode that allow...
https://cosmosduck.hashnode.dev/using-the-file-system-module-in-node-js
When working with Node JS, most times, we often would have to create, delete, write on and even update files. A file can be seen as a document that contains some form of information, either text-based or even code. The files you create can also be in...
https://shivanikumari.hashnode.dev/how-to-retrieve-metadata-of-amazon-linux-machine
Prerequisites: AWS management console - Free tier Instance metadata : Instance metadata is available from your running instance, you do not need to use the Amazon EC2 console or the AWS CLI. This can be helpful when you're writing scripts to run fr...
https://imohanreddy.hashnode.dev/custom-languages-in-your-angular-application
One would usually certainly require his application to be user-friendly and compatible with different regions and adding region-specific language gives an extra touch to the whole application. We are going to achieve the same by the end of this blog....
https://rhythmblogs.hashnode.dev/dev-tools-used-in-machine-learning
Hey guys, hope you are doing great. Machine learning is a complex and rapidly growing field that requires a wide range of tools to support the development, deployment, and maintenance of machine learning models. Dev tools, or developer tools, are sof...
https://venky17.hashnode.dev/slice-and-splice-in-javascript
In this article we will learn the difference between slice() and splice() in JavaScript. slice() The slice() method returns a part of the array. It does not affect the original array. Instead it creates a shallow copy of the array. Syntax: slice(star...
https://imtechnovice.hashnode.dev/embracing-change-my-story-of-pursuing-a-career-in-web-development
Welcome to my blog!, where I will share my journey as a newbie web developer! I am thrilled to introduce myself and share my story with you. My journey toward web development started with a desire to move away from the physically demanding work I had...
https://brainybloom.hashnode.dev/all-about-arrow-functions-in-javascript
What are Arrow functions' Arrow functions in JavaScript are a shorter way of writing functions. They were introduced in ES6 (ECMAScript 2015) and provide a more concise syntax compared to traditional function expressions. The basic syntax of an arrow...
20 / 97
In JavaScript, an array is a data structure that allows us to store a collection of elements in a specific order. Each element in an array is identified by its index, which is a non-negative integer. Arrays can store elements of any data type, includ...
https://alkesh26.hashnode.dev/leetcode-first-missing-positive
Problem statement Given an unsorted integer array nums, return the smallest missing positive integer. You must implement an algorithm that runs in O(n) time and uses constant extra space. Problem statement taken from: https://leetcode.com/problems/fi...
https://nitinfab.hashnode.dev/understanding-react-context-a-comprehensive-tutorial-for-beginners
React has become a go-to choice for front-end development due to its ease of use and flexibility in creating dynamic and interactive user interfaces. However, as applications built with React become more complex, managing the application state can be...
https://leeting-lcs.hashnode.dev/count-unreachable-pairs-of-nodes-in-an-undirected-graph
Problem Statement:- You are given an integer n. There is an undirected graph with n nodes, numbered from 0 to n - 1. You are given a 2D integer array edges where edges[i] = [ai, bi] denotes that there exists an undirected edge c...
https://raturitechmedia.hashnode.dev/python-numbers-in-detail
In Python, numbers represent numerical data types that can be used for mathematical operations. Numbers are immutable data types, which means that their values cannot be changed once created. Table of Contents Types of Numbers Integer Float Compl...
https://jaytillu.hashnode.dev/how-javascript-executes-code
While learning any Programming Language it is always essential to know how the language processes your code. In this article, we will learn how JavaScript executes your code. This will help you to understand the language better. An Execution Context ...
https://codewithjain.hashnode.dev/day-30-recursion-in-python
Introduction Welcome to my 30th blog post. Recursions are functions only. But if we want to call the function 'a' from the same function 'a' then it is called a Recursion. Using recursion we can call the same function again and perform some repetitiv...
https://akshaykotawar.hashnode.dev/awk-is-better-than-python
When it comes to data sorting, many people tend to use Python as their go-to language. However, there is another powerful tool that is often overlooked for this task: awk. In fact, for certain types of data sorting, awk can be even better than Python...
https://abdekcoder.hashnode.dev/javascript-best-practices-for-writing-clean-and-efficient-codes
If you've been writing JavaScript for a while, you know that writing clean and efficient code is crucial for producing high-quality software. Clean code is easy to read, understand, and maintain, while efficient code can improve performance and reduc...
https://oluwatrillions.hashnode.dev/react-series-introduction
Topics Introduction Why Use ReactWhat are ComponentsWhat is JSXPropsState. This is going to be a React series discussing React and Hooks. We will discuss an overview of React in today's topic and then proceed to discuss Hooks from the next article. I...
30 / 97
https://www.wpexplorer.com/brand-your-wordpress-site/
When building your website, it’s crucial to include both eye-catching branding and compelling content. After all, when a customer visits your site, you want them to form a positive impression of your company and remember it later. However, this is easier said than done. The good news is that self-hosted WordPress (the .org variety) has […] The post How to Brand Your WordPress Site appe [...]
https://devstation.hashnode.dev/mongodb-command-you-should-know-dacff315cbb0
Let's dive in and learn some more cool MongoDB Command MongoDB Welcome back today we will learn some cool MongoDB commands. ' What is MongoDB ' MongoDB is an open-source document-oriented database that is designed to store a large scale of data an...
https://siddhiblog.hashnode.dev/flutter-widgets
Whenever you are going to code anything in Flutter it's going to be inside the widgets. The central purpose is to build an app out of widgets. These widgets are nested with each other to build an app. It means that the root of your app itself is a wi...
https://abdulbasitpersonalblog.hashnode.dev/posting-new-article-using-postman-into-website
Hello Everyone today i have learned about how to post the articles from postman into my website and save that into DataBase. Here is the Code sample: app.post("/articles", function (req, res) { // Creating new article in database const newArticl...
https://webcentric.hashnode.dev/music-visualizer
Link to the project. Website Source Code Description. The whole project was done by using Three js 3d library, JavaScript, Html and CSS. Resources. To build the project I took help from threejs documentation and tutorialpoints.com. Time taken. To lea...
https://shivaprasadgurram.hashnode.dev/java-interview-series-question-7
Please head over to below LinkedIn post to know more about this question. What is Functional interface and Consumer in Java' If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG
https://shivaprasadgurram.hashnode.dev/java-interview-series-question-6
Please head over to below LinkedIn post to know more about this question. What is the DIAMOND problem in Java' If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG
https://shivaprasadgurram.hashnode.dev/java-interview-series-question-5
Please head over to below LinkedIn post to know more about this question. Java 8 - Question 2 If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG
https://shivaprasadgurram.hashnode.dev/java-interview-series-question-4
Please head over to below LinkedIn post to know more about this question. Java 8 - Question 1 If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG
https://shivaprasadgurram.hashnode.dev/java-interview-series-question-3
Please head over to below LinkedIn post to know more about this question. What is the difference between @PathVariable and @RequestParam in spring boot' If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWith...
40 / 97
https://shivaprasadgurram.hashnode.dev/java-interview-series-question-2
Please head over to below LinkedIn post to know more about this question. What is Covariant Return Type in Java' If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG
https://zomor.hashnode.dev/adding-sonarqube-locally
In this article, we will add SonarQube to the pre-commit hook in git, to keep a specific level of security and consistency in the code. What is SonarQube' SonarQube is an open-source platform developed by SonarSource for continuous inspection of code...
https://nareshblogs.dev/learn-array-methods
Converting Array values to String The JavaScript method toString() converts an array of values to Single String. const fruits = ["Banana", "Orange", "Apple", "Mango"]; console.log(fruits.toString()); //Output: Banana,Orange,Apple,Mango The join() me...
https://shivaprasadgurram.hashnode.dev/javainterviewseries-question-1
Please head over to below LinkedIn post to know more about this question. What is the difference between 'throw' and 'throws' keyword' If you like my content, you can follow me on LinkedIn and join in my telegram group DailyDSAWithSPG
https://blog.kogoshvili.ge/useful-algorithms-to-boost-your-javascript-code-performance
As a JavaScript developer, improving code performance is a primary objective. Well-performing code not only results in better user experiences but is also vital to program scalability. In this article, we will discuss multiple useful algorithms that ...
Hey everyone, hope you are doing great. In the previous article, we understood correlation and covariance. Cov(x,y) helps us to identify the relationship between x and y i.e. if the value of Cov(x,y) is +ve, this means the value of x increases when t...
https://blog.aashutosh.dev/introducing-nibble
'' Hola, Long time no see! (first time for most of you TBH) Starting from the start I have been having a hard time writing full-blown blog posts (having 4 great posts in drafts from the last year). I know it might be too late to enter the content...
https://hiteshmishra.hashnode.dev/bubbling-and-capturing-in-javascript
In JavaScript, bubbling and capturing are two event propagation mechanisms that describe how events are processed in the DOM (Document Object Model) hierarchy. Event propagation Event propagation is the way events propagate through the DOM hierarchy,...
https://dailylearn.hashnode.dev/mastering-javascript-promises-in-under-5-minutes
In this blog, we are going to learn about promises and how we can handle promises to use asynchronous operations. But before that, we will see an example of how we were doing code before we had promised in javascript and what sort of problems it was ...
https://manaskrishnajaiswaltechblogs.hashnode.dev/next-js-file-based-routing
File-based routing in Next.js allows you to create pages by simply creating a JavaScript file inside the pages directory. The file system is used to determine the URL of the page. For example, if you create a file called about.js inside the pages dir...
50 / 97
https://satishsutar-cloud-and-devops.hashnode.dev/aws-cloud-safari-introduction
Welcome to "AWS Cloud Safari" a series dedicated to everything related to AWS Cloud. As more and more businesses move their applications and infrastructure to the cloud, AWS has become the go-to platform for cloud computing. With over 200 fully featu...
https://codersden.hashnode.dev/recipe-creation-with-python-cook-up-a-storm
Welcome to the ultimate recipe creation experience! With Flask and OpenAI, we have created a website that will revolutionize the way you cook. Now, anyone can become a master chef with just a few clicks. Our easy-to-use interface, powered by Python, ...
https://neyywaar.hashnode.dev/10-must-have-vs-code-extensions-for-developers
Introduction Visual Studio Code (VS Code) is a computer program that helps people write and edit computer code. It's like a special tool that programmers use to make their code easier to read and understand. It has a lot of helpful features like colo...
https://prajwalhaniya.hashnode.dev/what-are-some-of-the-important-array-problems-techletter-14
Two Sum Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. (The target will be the sum of two consecutive elements) const twoSum = (nums, target) => { let numbers = [] fo...
You've learned HTML and CSS and started to learn JavaScript. You studied all the basics. Now it is time to practice. But... What should I build' We'll build 10 projects in 10 days. We'll be exploring 10 beginner-friendly JavaScript projects one by on...
https://mojtabamaleki.hashnode.dev/introduction-to-if-else-for-and-while-loop
Introduction to if, else, for and while loop Control flow statements are an essential part of programming, as they allow you to control the flow of execution of your program. They let you execute certain statements based on conditions, and repeat sta...
https://mayoyo.hashnode.dev/react-local-storage
This article is a continuation of our todo web app. Check out part-3 Now that we have learned how to create a functional todo web app, we should move on to persist our data to the local storage using the localStorage API. So that every time a user ad...
Maximizing the performance of your Flutter app is crucial for delivering a seamless user experience. As software developers, we constantly seek out tools that can enhance our coding experience while improving the efficiency and quality of our code. T...
https://0xwind.hashnode.dev/introduction-to-javascript
Hey there, I am a newbie in learning JavaScript.this article will serve as a guide for newbies like me in learning JavaScript. It will introduce the basics of JavaScript in a way that is easy for newbies to understand. It will cover what JavaScript i...
https://www.lebigdata.fr/chatgpt-connecte-web
Avec la nouvelle connexion de ChatGPT au web, les opportunités sont infinies pour les achats, les réservations et bien plus … Cet article ChatGPT est maintenant connecté au web : achats, réservations… toutes les possibilités a été publié sur LeBigData.fr.
60 / 97
https://codemanishh.hashnode.dev/events-in-javascript
An Event is something that Browser or a user does. It provides a mechanism by which an action can be automatically taken when the event occurs. Events are fired inside the browser window. for example Loading of a page finished. click events. selec...
I'll keep this short. Ever seen a code snippet where an integer variable was initialized and used to access an array like this: const funArray = ['This', 'should', 'be', 'fun'] let i = 0; let j = 0; console.log({a:funArray[i++]}) //what would this b...
List destructuring, also known as packing and unpacking, is a powerful technique in Python for assigning and manipulating lists. It allows you to quickly assign values from a list to multiple variables, as well as easily extract values from complex n...
https://www.lebigdata.fr/diablo-4-gpu-nvidia
Diablo 4 pourrait causer des dommages considérables à votre GPU NVIDIA si votre PC n’est pas correctement protégé. Découvrez les … Cet article Diablo 4 peut détruire votre GPU Nvidia : comment protéger son PC ' a été publié sur LeBigData.fr.
https://maimoonaj.dev/responsive-web-design-using-html-css-a-step-by-step-guide-for-beginners
With the enormous use of mobile devices for browsing the internet, it has become essential for websites to be responsive. Now, every client demands a mobile version of their website. And as a web developer, the skill of responsive web design is very ...
Il est des noms dans l'informatique qui sont incontournables comme celui de Gordon Moore. Ce dernier vient de mourir à Hawaï à (...)
https://lukechidubem.hashnode.dev/javascript-ifelse-statement
In JavaScript, the if/else statement is a conditional statement that allows us to execute different code blocks based on whether a certain condition is true or false. Here's the basic syntax of an if/else statement: The if statement evaluates the co...
https://ninjacoder.hashnode.dev/other-important-tag-in-html
Here are some more HTML tags that you may find useful: , , , , , : These tags are used to create a table with rows and columns, with indicating the start of the table and , , , , and
https://nareshblogs.dev/learn-array
Simply Array is to store multiple values in one variable. Syntax: const array_name = [item1, item2, ...]; ( Here we assign array literal to the variable array_name) Why Arrays' If we want to store 3 values we can store in three variables like let car...
https://codingpastor.hashnode.dev/how-to-change-the-default-port-for-your-react-app
There are several ways to change the default port for your react application, Let us start with the easy one. Change the port from your .env file You can create a .env file and just add the port number you want to use. Like this PORT=4000 // .env fi...
70 / 97
https://joshi.dev/the-breakdown-flutter-text
Why this series' While there is quite a lot of content on usage and customisations for Flutter Widgets, there is relatively little content about how the Widget actually achieves the functionality it is designed for. Even a fairly simple Widget has a ...
https://piyushdev.hashnode.dev/top-20-vs-code-extensions-for-programmers
As a programmer, you know that choosing the right tools and resources can make a big difference in your productivity and the quality of your work. Visual Studio Code (VS Code) is a popular code editor that is highly extensible through the use of exte...
https://devops-rohit.hashnode.dev/day-12-cheat-sheet-for-linuxgit-github-cron
It's #day12 of the #90daysofdevops Challenge under the guidance of Shubham Londhe Sir. Here I have provided cheat sheet related to linux terminal,Git-GitHub & Cron. Linux Cheat-Sheet whoami -> prints the username currently logged into the terminal ...
https://durga-prasad.hashnode.dev/css-colors-linear-gradient-units
In this blog, we will learn about colours and CSS units '. Colors: CSS Colors, Hexcodes, and Linear Gradients Colors are an important part of web design, and CSS provides a variety of ways to specify colors. In this article, we'll look at the differ...
https://www.meta-media.fr/2023/03/25/liens-vagabonds-apple-grand-absent-de-la-course-a-lia.html
A RETENIR CETTE SEMAINE : La battle de l'IA continue de plus belle cette semaine : Google dévoile Bard, Bing lance 'Bing Creator' basé sur DALL-E, Opera ajoute des outils d'IA génératives dans son navigateur, Microsoft sort Loop, l'outil basé sur des IA pour concurrencer Notion. La suite design de... The post Liens vagabonds : Apple, grand absent de la course à l'IA ' first appeared on Met [...]
https://www.realite-virtuelle.com/c-smash-vrs-jeu-psvr-2/
Une démo gratuite est disponible dès maintenant pour le nouveau jeu PSVR 2 C-Smash VRS. […] Cet article C-Smash VRS : essayez le jeu PSVR 2 avant sa sortie a été publié sur Réalité-Virtuelle.com.
https://utkarshnagar.hashnode.dev/unlocking-the-power-of-react-hooks-the-usestate
Introduction In the previous blog we discussed what React Hooks are and how to use them effectively. Hooks allow developers to add state and other functionality to functional components. One of the most commonly used hooks is useState. In this blog, ...
https://sumanprasad.hashnode.dev/ansible-project-automating-firewall-configuration
' Introduction: Securing your servers and restricting access to specific ports or IP addresses is an essential step in ensuring the safety of your infrastructure. One way to achieve this is by using firewall rules to control inbound and outbound tra...
https://kiplagatitus.hashnode.dev/stateless-components-in-react-what-are-they-and-why-use-them
React is a popular JavaScript library for building user interfaces. It is widely used in web development and offers a lot of advantages such as component reusability, performance optimizations, and an easy-to-use programming model. One of the key con...
https://sumideycodingblog.hashnode.dev/getting-started-with-redux
Prerequisites: Create a react-app using create-react-app What is Redux' Redux is a predictable state container for JavaScript applications. It is often used in combination with React but can be used with any other JavaScript framework or library as w...
80 / 97
https://abhaydixit.hashnode.dev/flutter-features-architecture-and-its-alternatives
About: It is a tool that allows us to build native cross-platform apps (ios,android,windows, linux, macos) with one programming language and one codebase. Tool: Flutter make the process of cross platform development easy, that's why it is called a t...
https://deepaknayak.hashnode.dev/variable-and-datatypes
Variable: The variable is used to store some info or data or some value we can store our value or data in three different types. var: var is also used to declare a variable but it's good not to use var let: with the help of let also we can declar...
https://blog.lokesh1729.com/how-to-deploy-a-django-application
Introduction If you are looking for a guide to deploying a Django application to production, then you are at the right place. This guide assumes that you have a working Django application. You can check if your application is healthy by running this ...
https://pashacodes.hashnode.dev/the-odin-projects-foundation-course-lessons-learned
I have been working on the Odin project for over two months. It took me about 1.5 months to finish its foundation part. I am a non-tech student and I started my exploration into Computer Science during the pandemic. Since I didn't want to spend any m...
https://mrdevops.hashnode.dev/secure-filesdirectories-using-acls-access-control-lists-in-linux
As a System Admin, our first priority will be to protect and secure data from unauthorized access. We all are aware of the permissions that we set using some helpful Linux commands like chmod, chown, chgrp' etc. However, these default permission sets...
https://searchengineland.com/search-marketing-history-march-25-394830
Google Panda patent granted, plus: Microsoft starts IndexNow push, mobile-friendly update details, AdWords remarketing and more. The post This day in search marketing history: March 25 appeared first on Search Engine Land.
https://blog.ahmedsuliman.com/sveltekit-what-is-it-and-why-should-i-care
SvelteKit is a web development framework that builds on top of the Svelte front-end framework. It is designed to help developers build fast, scalable, and easy-to-maintain web applications. SvelteKit offers a range of benefits that make it an attract...
https://www.bestfreewebresources.com/3-tips-to-dispose-of-old-furniture-more-sustainably
Some Australian households still rely on the ‘curbside approach’ when disposing of their furniture. Once they decide a piece of furniture is no longer useful, they leave it on their curbside and wait for it to end up in the landfill. This may sound like another one of those harmless habits, but it’s not. Two […] The post 3 Tips To Dispose Of Old Furniture More Sustainably a [...]
https://mrayush.hashnode.dev/know-more-about-java
Java is a programming language and a platform. Java is a high level, robust, object-oriented and secure programming language. Java was developed by Sun Microsystems (which is now the subsidiary of Oracle) in the year 1995. James Gosling is known as t...
https://mrayush.hashnode.dev/know-more-about-javascript
JavaScript (js) is a light-weight object-oriented programming language which is used by several websites for scripting the webpages, It is an interpreted, full-fledged programming language that enables dynamic interactivity on websites when applied t...
90 / 97
https://sumitmupadhyay.hashnode.dev/design-an-online-judge
Problem Statement - Design an online judge like Leetcode. The web applications should have the following sections Problem listing with an option to sort. Problem-solving with the solutions. Discussion section to discuss interview questions & expe...
https://techkaduna.dev/solving-the-popular-fizz-buzz-coding-test
Today, we would look at solving a very popular code interview test ' the FizzBuzz test. I decided to tackle this challenge as a sequel to our last tutorial about finding the last n digits of a number using the modulo operator. The FizzBuzz coding tes...
https://www.visualcapitalist.com/cp/visualized-heads-of-state-each-country-by-age/
This graphic visualizes the ages of every country's head of state, and compares them with the median population of their respective states. The post Visualized: The Head of State of Each Country, by Age and Generation appeared first on Visual Capitalist.
https://arsham.hashnode.dev/generators-in-python
In Python, a generator is a special type of iterable, similar to a list or a tuple, but with a few key differences. Unlike lists or tuples, generators do not store their contents in memory. Instead, they generate values on the fly as they are request...
https://vtsen.hashnode.dev/android-vs-desktop-app-kotlin-compilation-process
Have you ever wondered what happens when you compile your Kotlin source code' The Kotlin Compiler doesn't convert your code to the machine code directly but it converts your code to bytecode instead. Then, the Kotlin Interpreter/Virtual Machine conve...
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.