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

« Décembre 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 24 Décembre 2022 (61)

1: Random Value Generation in Dart

https://levent-kantaroglu.hashnode.dev/random-value-generation-in-dart

Hashnode - Flutter (Flutter)

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...


2: Object-oriented programming

https://ayobamih.hashnode.dev/object-oriented-programming

Hashnode - javascript (Javascript)

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...


3: Javascript And The DOM

https://oluwatrillions.hashnode.dev/javascript-and-the-dom

Hashnode - javascript (Javascript)

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 ...


4: Mastering React in 8 weeks - Day 3

https://01nakulgoel.hashnode.dev/mastering-react-in-8-weeks-day-3

Hashnode - javascript (Javascript)

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...


5: Javascript Basics: Common errors and error handling.

https://techdrilldown.com/javascript-basics-common-errors-and-error-handling

Hashnode - javascript (Javascript)

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...


6: Build a Custom Command Line Tool with Django's Management Commands

https://maxzeno.hashnode.dev/build-a-custom-command-line-tool-with-djangos-management-commands

Hashnode - python (python)

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 ...


7: Venturing into the Open Source community - My first blog.

https://huetiful.hashnode.dev/venturing-into-the-open-source-community-my-first-blog

Hashnode - javascript (Javascript)

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...


8: Linked List in Python

https://soamtripathy.hashnode.dev/linked-list-in-python

Hashnode - python (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 ...


9: JavaScript - IF condition - Part 2

https://mahavir.hashnode.dev/javascript-if-condition-part-2

Hashnode - javascript (Javascript)

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

10: Execution of a Javascript Code

https://blog.aksact.dev/javascript-execution

Hashnode - javascript (Javascript)

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 ...


11: Introduction to Web Workers in React: A Beginner's Guide

https://djaytechdiary.com/introduction-to-web-workers-in-react-2023

Hashnode - javascript (Javascript)

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...


12: How to setup django project with virtual environment

https://nileshdarji.hashnode.dev/how-to-setup-django-project-with-virtual-environment

Hashnode - python (python)

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...


13: Symfony Station Communiqué - 23 December 2022

https://atomicdesign.hashnode.dev/symfony-station-communique-23-december-2022

Hashnode - javascript (Javascript)

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...


14: Extensions pour construire un formulaire accessible sur WordPress

https://www.creativejuiz.fr/blog/wordpress/extensions-construire-formulaire-accessible-wordpress-plugin

creative juice (wordpress / CSS / html5)

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 [...]


15: Indentation With Tab Key In React

https://sriram23.hashnode.dev/indentation-with-tab-key-in-react

Hashnode - javascript (Javascript)

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...


16: Adding Javascript to the page

https://kara14.hashnode.dev/adding-javascript-to-the-page

Hashnode - javascript (Javascript)

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...


17: The Javascript reduce method

https://abelwanyonyi.hashnode.dev/the-javascript-reduce-method

Hashnode - javascript (Javascript)

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...


18: PyScript: Second Impressions

https://taw.hashnode.dev/pyscript-second-impressions

Hashnode - javascript (Javascript)

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...


19: A Beginner's Guide to Building Mobile Apps with React Native and Flutter

https://vinitkarkera.hashnode.dev/a-beginners-guide-to-building-mobile-apps-with-react-native-and-flutter

Hashnode - Flutter (Flutter)

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

20: Chapter 1 - How does JavaScript Work Internally'

https://krish999.hashnode.dev/chapter-1-how-does-javascript-work-internally

Hashnode - javascript (Javascript)

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...


21: Introduction to DOM

https://mrinnnmoy.hashnode.dev/introduction-to-dom

Hashnode - javascript (Javascript)

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...


22: Array And Its Methods

https://articles.ajaydewangan/array-and-its-methods

Hashnode - javascript (Javascript)

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


23: Removing Duplicate Elements from a List in Python

https://codecaliper.me/removing-duplicate-elements-from-a-list-in-python

Hashnode - python (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...


24: Building JavaScript Layout Animations Day68

https://dheerajy1.hashnode.dev/building-javascript-layout-animations-day68

Hashnode - javascript (Javascript)

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...


25: Day 4 - Python Sets 101 - 7 Days of Python Data Structures

https://datashepherd.hashnode.dev/day-4-python-sets-101-7-days-of-python-data-structures

Hashnode - python (python)

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 ...


26: Day04 - Variables & Data-Types in JavaScript

https://vaibzde.hashnode.dev/variables-data-types-scopes-in-javascript

Hashnode - javascript (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...


27: UI Interactions & Animations Roundup 27

https://tympanus.net/codrops/2022/12/24/ui-interactions-animations-roundup-27/

Codrops (Internet / Design)

Looking for a fresh burst of animation inspiration' Check out this new collection of creative Dribbble shots.


28: How To Be a Frontend Developer' Complete Guide'

https://amena.hashnode.dev/how-to-be-a-frontend-developer-complete-guide

Hashnode - javascript (Javascript)

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, ...


29: What are CSS Container Queries'

https://imsabodetocode.hashnode.dev/what-are-css-container-queries

Hashnode - javascript (Javascript)

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

30: Convert your Julia Project into an Executable

https://krabs.hashnode.dev/convert-your-julia-project-into-an-executable

Hashnode - python (python)

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...


31: Understanding Stateless and Stateful Widgets in Flutter

https://atuoha.hashnode.dev/understanding-stateless-and-stateful-widgets-in-flutter

Hashnode - Flutter (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...


32: 7- Day Plan for a beginner in Machine Learning

https://mlclubnits.hashnode.dev/7-day-plan-for-a-beginner-in-machine-learning

Hashnode - python (python)

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...


33: Local storage and Session storage and useful tips for debugging

https://blog.dotenx.com/local-storage-and-session-storage-and-useful-tips-for-debugging

Hashnode - javascript (Javascript)

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...


34: Get Ahead of the Curve: Top 5 Linux Distros to Try in 2023

https://prajwalladkat.hashnode.dev/get-ahead-of-the-curve-top-5-linux-distros-to-try-in-2023

Hashnode - javascript (Javascript)

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....


35: Swift vs Flutter

https://harshwsingh.hashnode.dev/swift-vs-flutter

Hashnode - Flutter (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...


36: Javascript in 1 min - comment

https://chloelaureate.hashnode.dev/javascript-in-1-min-comment

Hashnode - javascript (Javascript)

/*wording inside is safe, it will be a comment*/


37: Javascript in 1 min - Semicolon (;)

https://chloelaureate.hashnode.dev/javascript-in-1-min-semicolon

Hashnode - javascript (Javascript)

Semicolon (;) The way how to separate code console.log(10+5) console.log(20-5) or console.log(10+5);console.log(20-5)


38: Javascript Array And Its Methods.

https://rohanpatil1797.hashnode.dev/javascript-array-and-its-methods

Hashnode - javascript (Javascript)

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...


39: JavaScript : Functions

https://subhamsahu.hashnode.dev/javascript-functions

Hashnode - javascript (Javascript)

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

40: JavaScript - IF Condition - Part 1

https://mahavir.hashnode.dev/javascript-if-condition-part-1

Hashnode - javascript (Javascript)

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...


41: Challenge 1 Building a Pomodoro Timer: Challenges and Solutions

https://abdulazeezkadiri.hashnode.dev/challenge-1-building-a-pomodoro-timer-challenges-and-solutions

Hashnode - javascript (Javascript)

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 ...


42: How to create Custom Django Admin List Filters'

https://blog.devjunction.in/how-to-create-custom-django-admin-list-filters

Hashnode - python (python)

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 ...


43: Lectures d'hiver : nos recommandations pour cet hiver

https://www.meta-media.fr/2022/12/24/lectures-dhiver-une-selection-douvrages-a-lire-au-coin-du-feu.html

Meta Media (Internet)

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 [...]


44: Hello React, Goodbye useEffect (I Hope)

https://hash.imam.dev/hello-react-goodbye-useeffect-i-hope

Hashnode - javascript (Javascript)

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...


45: 8 Video Games For Web Developers '

https://souptikdn.hashnode.dev/8-video-games-for-web-developers

Hashnode - javascript (Javascript)

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...


46: 5 Open-Source Flutter Projects to Boost Your Skills

https://cswithiyush.hashnode.dev/5-open-source-flutter-projects-to-boost-your-skills

Hashnode - Flutter (Flutter)

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 ...


47: Ideas For Creating Visually Appealing And User-Friendly Interfaces

https://whiz-code.hashnode.dev/ideas-for-creating-visually-appealing-and-user-friendly-interfaces

Hashnode - javascript (Javascript)

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...


48: Functions in Javascript

https://rohan127.hashnode.dev/functions-in-javascript

Hashnode - javascript (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 ...


49: Taking the First Step: My Blog and My Goals for the Next Year

https://yashgupta-resume.netlify.com/taking-the-first-step-my-blog-and-my-goals-for-the-next-year

Hashnode - javascript (Javascript)

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

50: Taking the First Step: My Blog and My Goals for the Next Year

https://imyashgupta.hashnode.dev/taking-the-first-step-my-blog-and-my-goals-for-the-next-year

Hashnode - javascript (Javascript)

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...


51: Array and all its methods in Javascript

https://ajaychauhan.hashnode.dev/array-and-all-its-methods-in-javascript

Hashnode - javascript (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...


52: Javascript variable and their scope

https://ajaychauhan.hashnode.dev/javascript-variable-and-their-scope

Hashnode - javascript (Javascript)

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...


53: Javascript object and its method

https://rohan127.hashnode.dev/javascript-object-and-its-method

Hashnode - javascript (Javascript)

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...


54: My first front-end development Job in Europe

https://copythecode.hashnode.dev/my-first-front-end-development-job-in-europe

Hashnode - javascript (Javascript)

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...


55: What's my next year plan

https://codincs.hashnode.dev/whats-my-next-year-plan

Hashnode - javascript (Javascript)

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...


56: Code kata JavaScript 3

https://kicode.hashnode.dev/code-kata-javascript-3

Hashnode - javascript (Javascript)

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...


57: An Introduction to Javascript Generators

https://gorillasun.de/blog/An-Introduction-to-Javascript-Generators

Gorilla Sun (Creative Coding)

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 [...]


58: Mastering Collaboration in Web Development: A Comprehensive Guide to Using Version Control Systems

https://devmazi.hashnode.dev/mastering-collaboration-in-web-development-a-comprehensive-guide-to-using-version-control-systems

Hashnode - javascript (Javascript)

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...


59: Exploring Different Ways to Collect Kotlin Flow

https://vtsen.hashnode.dev/exploring-different-ways-to-collect-kotlin-flow

Hashnode - Kotlin (Mobiles)

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.

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