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

« Juin 2024 »

  • 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


2 Juin 2024 (51)

1: Building a Simple ATM System in Python: A Casual Walkthrough

https://bhaveshjadhavblog.com/simple-atm-system-in-python

Hashnode - javascript (Javascript)

Hey everyone, So, I wanted to share with you all how I put together this simple ATM system in Python. It's nothing fancy, but it gets the job done! First off, I set up a couple of dictionaries to keep track of card numbers, PINs, and account balances...


2: Optimizing React Applications: Top 5 Commonly Used React Optimization Techniques

https://codersk36.hashnode.dev/optimizing-react-applications-top-5-commonly-used-react-optimization-techniques

Hashnode - javascript (Javascript)

If you have been building web applications using React lately, probably you might be looking out for the articles, on optimizing, them. I thought of writing some of the common approaches, used by most of the experienced developers working on React. W...


3: Webassembly: Near-Native Performance for Web Applications

https://10xdev.codeparrot.ai/webassembly-near-native-performance-for-web-applications

Hashnode - javascript (Javascript)

I was working on a web development project, building a 3D visualizer. This project required a lot of calculations and data processing. I used JavaScript, my go-to language for web development. At first, everything went well. But as I added more featu...


4: Singleton: How to create'

https://khushpanchal.hashnode.dev/singleton-how-to-create

Hashnode - Kotlin (Mobiles)

In this article, we will understand the Singleton class, the pros and cons of using Singleton, and finally, the ways of writing a Singleton class in Kotlin. What is Singleton' Singleton is a creational design pattern that ensures a single instance of...


5: Tackling the Code Challenge: Articles - without SQLAlchemy: A Developer's Journey

https://mugambi.hashnode.dev/tackling-the-code-challenge-articles-without-sqlalchemy-a-developers-journey

Hashnode - python (python)

Introduction As programmers, we constantly face challenges that push our understanding and skills to the limit. Recently, I embarked on a code challenge that involved implementing a many-to-many relationship in Python. This article will walk you thro...


6: Tackling the Code Challenge: Articles - without SQLAlchemy: A Programmer's Journey

https://mugambi.hashnode.dev/tackling-the-code-challenge-articles-without-sqlalchemy-a-programmers-journey

Hashnode - python (python)

Introduction As programmers, we constantly face challenges that push our understanding and skills to the limit. Recently, I embarked on a code challenge that involved implementing a many-to-many relationship in Python. This article will walk you thro...


7: Global and local scope in Javascript

https://harsh756.hashnode.dev/global-and-local-scope-in-javascript

Hashnode - javascript (Javascript)

JavaScript variables can be declared using var, let, or const. The scope of these variables depends on how they are declared and where they are used. Let's explore the concepts of block scope and global scope with an example. let a = 200; if (true) ...


8: JS Inheritance Simplified with Constructor Functions

https://breakthecode.hashnode.dev/js-inheritance-simplified-with-constructor-functions

Hashnode - javascript (Javascript)

Lets create an Employee constructor function with the following instance properties. const Employees = function (empName, empId, dept, doj) { this.empId = empId; this.empName = empName; this.dept = dept; this.doj = doj; }; Lets create a meth...


9: JS classes and objects

https://bluepaper.hashnode.dev/js-classes-and-objects

Hashnode - javascript (Javascript)

Intro Contrary to popular belief, JavaScript technically does not have classes; classes were introduced to JavaScript with ES6. They provide a more convenient and clearer syntax to create objects and handle inheritance compared to the traditional pro...


10 / 51

10: DOM is HARD!

https://blog.imabhinav.dev/dom-is-hard

Hashnode - javascript (Javascript)

DOM stands for Document Object Model. It's like a big family tree for a web page. When you look at a website, everything you see on the page is part of this family tree. Each element (like a picture, a paragraph of text, or a button) is a family memb...


11: Solving LeetCode Problems Efficiently with Python

https://vamerlen.hashnode.dev/solving-leetcode-problems-efficiently-with-python

Hashnode - python (python)

Introduction LeetCode has become one of the most popular platforms for honing coding skills, especially for those preparing for technical interviews. With a plethora of problems ranging from easy to hard, it's a go-to resource for developers at all l...


12: Handling Exceptions in Python: The Power of Try and Except Blocks

https://emerondomain.hashnode.dev/handling-exceptions-in-python-the-power-of-try-and-except-blocks

Hashnode - python (python)

Handling exceptions is a crucial aspect of writing robust Python programs. Python provides the try and except blocks to manage exceptions gracefully, ensuring your program can handle unexpected errors without crashing. In this blog post, we'll explor...


13: Ticketmaster: vol de données si massif que la FBI est sur le coup

https://www.lebigdata.fr/ticketmaster-vol-de-donnees-si-massif-que-la-fbi-est-sur-le-coup

Le Big Data (dataviz)

Une fuite de données massive, à un tel point où le FBI devait intervenir. Effectivement, l'entreprise Ticketmaster a été victime … Cet article Ticketmaster: vol de données si massif que la FBI est sur le coup a été publié sur LEBIGDATA.FR.


14: PS5 Pro : le design enfin dévoilé''! Les internautes se déchirent sur cette image

https://www.lebigdata.fr/ps5-pro-le-design-enfin-devoile-les-internautes-se-dechirent-sur-cette-image

Le Big Data (dataviz)

Look futuriste ou trop poussé'' Dans tous les cas, le design du PS5 Pro changera notre vision des consoles de … Cet article PS5 Pro : le design enfin dévoilé''! Les internautes se déchirent sur cette image a été publié sur LEBIGDATA.FR.


15: Understanding Functions in JavaScript Introduction

https://nelfavie.hashnode.dev/understanding-functions-in-javascript-introduction

Hashnode - javascript (Javascript)

Functions are one of the fundamental building blocks in JavaScript. They allow you to encapsulate What is a Function' A function in JavaScript is a block of code designed to perform a particular task. A function is executed when something invokes it ...


16: Choosing the Right Programming Language for DSA: Finding Your Perfect Fit

https://bitsandblogs.hashnode.dev/choosing-the-right-programming-language-for-dsa-finding-your-perfect-fit

Hashnode - python (python)

For studying Data Structures and Algorithms (DSA), the choice of programming language is a significant decision that can influence your learning process and job prospects later on. There are many programming languages to pick from, each having its ow...


17: Optimize Your React Development with Import Aliases in Vite

https://oyier.hashnode.dev/optimize-your-react-development-with-import-aliases-in-vite

Hashnode - javascript (Javascript)

As your React project expands in size and complexity, maintaining it can become increasingly challenging. One key issue is keeping your code clean and organized. While not well-known, import aliases are a highly effective tool that can simplify your ...


18: How do you delete elements from a tuple in Python'

https://lingarajtechhub.com/how-do-you-delete-elements-from-a-tuple-in-python

Hashnode - python (python)

In Python, tuples are immutable, meaning their elements cannot be modified or deleted after creation. However, you can create a new tuple by excluding the elements you want to "delete." Here are five examples demonstrating different ways to delete el...


19: Hello World!

https://jdbyteblog.hashnode.dev/hello-world

Hashnode - python (python)

#A small greeting from Python. :-) greeting = "Hello World" name = "I'm Jack!" description = "This is my first Blog post ever!" print(greeting+"n"+name+"n"+description) 'Byte-Sized Blogging with Jack. This is my blog. There are many like it, but...


20 / 51

20: More About Functions (Part 2)

https://harsh756.hashnode.dev/more-about-functions-part-2

Hashnode - javascript (Javascript)

In this blog, we will dive into some advanced concepts in JavaScript functions, focusing on the rest and spread operators, passing objects and arrays as function arguments, and understanding their use cases. Rest and Spread Operators The ... syntax i...


21: Deploying a Company Landing Page and Email Page: Python and Streamlit Tutorial

https://notjash.com/deploying-a-company-landing-page-and-email-page-python-and-streamlit-tutorial

Hashnode - python (python)

Introduction In today's digital age, having a professional and responsive online presence is crucial for any company. Whether you are a startup looking to make your mark or an established business aiming to enhance your online interface, creating an ...


22: Mon avis sur Lua avoir avoir codé un jeu de 60 000 lignes de code

https://blog.luden.io/what-do-i-think-about-lua-after-shipping-a-project-with-60-000-lines-of-code-bf72a1328733

Humancoders ()

Dans cet article, l'auteur partage son expérience après avoir utilisé Lua pour un projet de 60 000 lignes de code. Il discute des points forts et des limitations du langage, en mettant en avant sa simplicité et sa flexibilité, ainsi que les défis rencontrés, comme la gestion de grandes bases de code. L'auteur conclut par des recommandations pour les développeur·se·s envisageant d'utilis [...]


23: How To Implement Swagger In Django Rest Framework (drf)

https://mamuro.hashnode.dev/how-to-implement-swagger-in-django-rest-framework-drf

Hashnode - python (python)

INTRODUCTION: Swagger is an open-source framework that helps developers design, build, document, and consume RESTFUL web services. It is used to document APIs, which helps the developers to understand the basic behavior of every endpoint created. It...


24: Le Forum PHP 2024, riche en nouveautés, est annoncé ! Le CFP est en cours.

https://afup.org/news/1213-forum-php-2024-annonce

Humancoders ()

C'est un Forum PHP encore amélioré que nous avons eu le plaisir de lancer, lors de la keynote de clôture de l'AFUP Day 2024 ! Un programme davantage axé sur la technique, passage à 3 tracks en parallèle, plusieurs actions visant à faciliter votre accueil et alléger vos budgets, objectif de labelisation Evénement à Ambition Durable, et toujours la promesse de deux jours d'échanges et de [...]


25: Day 10 of 100DaysOfCode - Simple Calculator

https://keiran-portfolio.hashnode.dev/day-10-of-100daysofcode-simple-calculator

Hashnode - python (python)

On Day 10 of #100DaysofCode, I have created a Simple Calculator using the following python concepts I have learned from Dr Angela Yu's 100DaysOfCode: The Complete Python Bootcamp Udemy course: Functions with Outputs Recursion Python Dictionary Wh...


26: 37 Tips from a Senior Frontend Developer

https://ndeyefatoudiop.com/37-tips-from-a-senior-frontend-developer

Hashnode - javascript (Javascript)

I have been a software engineer for +5 years. These are tips I wished I had received when I just started. Ready' Let's dive in '. 1. Master the fundamentals A house ' built on shaky grounds will fall apart at the smallest issue. Similarly, if you d...


28: Rate Limiting in Express.js: Ensuring Fair and Secure API Usage

https://danieladesoji.blog/rate-limiting-in-expressjs-ensuring-fair-and-secure-api-usage

Hashnode - javascript (Javascript)

Introduction Rate limiting is a crucial technique used to control the number of requests a user can make to an API within a specific timeframe. This helps prevent abuse, manage load, and ensure fair usage among users. In Express.js, a popular web fra...


29: Understanding Validation: Ensuring Robust and Secure Applications

https://danieladesoji.blog/understanding-validation-ensuring-robust-and-secure-applications

Hashnode - javascript (Javascript)

Introduction Validation is a fundamental aspect of software development, crucial for maintaining data integrity, security, and the overall robustness of applications. Whether you are building a simple web form or a complex API, validating user input ...


30 / 51

30: Cool Profile Picture Animation in HTML, CSS, and JS

https://blog.daviddodda.com/cool-profile-picture-animation-in-html-css-and-js

Hashnode - javascript (Javascript)

I saw this cool pixilation filter in the About Us section of a landing page, but it was static and boring. So, I created this effect using pure HTML, CSS, and JS and animated it on hover to reveal the faces. The Demo Photo by Alex Suprun on Unsplash...


31: Mastering List Copying Techniques in Python

https://codewithchandra.hashnode.dev/mastering-list-copying-techniques-in-python

Hashnode - python (python)

Lists are a fundamental data structure in Python, and understanding how to copy them effectively is crucial for any programmer. In this blog post, we'll explore various methods to copy lists in Python, highlighting their use cases and potential pitfa...


32: Step-by-Step Guide to Custom Error Classes in TypeScript with AppError

https://codeforhad.hashnode.dev/step-by-step-guide-to-custom-error-classes-in-typescript-with-apperror

Hashnode - javascript (Javascript)

In modern web development, effective error handling is crucial for building robust and user-friendly applications. TypeScript, with its static typing and object-oriented features, allows developers to create custom error classes that enhance error ma...


33: How Modularization in Flutter Helped Us Deliver Apps Faster

https://geekaid.in/how-modularization-in-flutter-helped-us-deliver-apps-faster

Hashnode - Flutter (Flutter)

One fine day, our team gathered in the boardroom where the project lead briefed us on a new feature/sub-product we were introducing to our product, which we will call Feature X. Feature X is quite extensive and big in itself, involving numerous exist...


34: To-Do List Project

https://raajaryan.tech/to-do-list-project

Hashnode - javascript (Javascript)

Project:- 1/500 To-Do List Project Description The To-Do List project is designed to help users efficiently manage their daily tasks. This project demonstrates how to build a simple yet functional application using fundamental web development technol...


35: Rio: WebApps in pure Python. No JavaScript, HTML and CSS needed

https://riodev.hashnode.dev/rio-webapps-in-pure-python-no-javascript-html-and-css-needed

Hashnode - python (python)

Rio is a brand new GUI framework designed to let you create modern web apps with just a few lines of Python. Rio's goal is to simplify web and app development, allowing you to focus on what matters most instead of getting stuck on complicated user in...


36: 344. Reverse String

https://tapanrachchh.hashnode.dev/344-reverse-string

Hashnode - python (python)

class Solution: def reverseString(self, s: List[str]) -> None: # Time : o(n) | Space : o(1) # return s.reverse() # Time : o(n ^ 2) | Space : o(1) # for i, e in enumerate(s): # val = s.pop(i) ...


37: Day 1 Learning Python

https://sunil-codes.hashnode.dev/day-1-learning-python

Hashnode - python (python)

At first, I wondered why this file was created automatically. Later, I learned the reason and gained a deeper understanding. You will never see this __pycache__.pyc if you are working on top level files (Single file in the folder). __pycache__.pyc is...


38: Why Python __pycache__ file' '

https://sunil-codes.hashnode.dev/python-pycache-file

Hashnode - python (python)

At first, I wondered why this file was created automatically. Later, I learned the reason and gained a deeper understanding. You will never see this __pycache__.pyc if you are working on top-level files (Single file in the folder). __pycache__.pyc is...


39: Ten Ten ' la nouvelle application controversée

https://macternelle.fr/2024/06/02/ten-ten-la-nouvelle-application-controversee/

Macternelle (enfant / Formation)

Inventé dans les années 1930, le talkie-walkie aurait pu paraître dépassé. Pourtant, l'application Ten Ten, lancée le 4 avril par un développeur français, reprend ce concept et connaît un succès fulgurant, notamment chez les jeunes. Déjà disponible sur iOS et Android, elle a dépassé le million de téléchargements. Le principe est simple : après avoir … Lire la suite Ten Ten & [...]


40 / 51

40: Javascript Execution Context

https://tejas20.hashnode.dev/javascript-execution-context

Hashnode - javascript (Javascript)

JavaScript is a synchronous single threaded language Execution context in JavaScript when a code is executed, javascript creates an execution context. Everything in Javascript happens inside the execution context. Execution context in javascript i...


41: Choosing Between Node.js with JavaScript and Node.js with TypeScript

https://vshall-yadav.hashnode.dev/choosing-between-nodejs-with-javascript-and-nodejs-with-typescript

Hashnode - javascript (Javascript)

Node.js has become a cornerstone for server-side development, leveraging JavaScript outside the browser. However, the decision to use JavaScript or TypeScript with Node.js is crucial and can significantly affect your project's development. This blog ...


42: 10 Essential Frameworks Every Full Stack Developer Should Master

https://lyzer.hashnode.dev/10-essential-frameworks-every-full-stack-developer-should-master

Hashnode - javascript (Javascript)

Introduction In the rapidly evolving landscape of web development, being a full stack developer requires a diverse skill set. Full stack developers are expected to be proficient in both front-end and back-end technologies, along with various framewor...


43: Python Cheat Sheet: Essential Guide for Beginners

https://www.developerchronicles.com/python-cheat-sheet-essential-guide-for-beginners

Hashnode - python (python)

This cheat sheet is designed as a helpful guide for those who have a solid understanding of Python basics. It serves as a convenient reference while coding in Python. Variables and Strings Variables are used as containers to store data values in pyth...


44: Intl.RelativeTimeFormat trong JavaScript

https://blog.thanhnamnguyen.dev/intlrelativetimeformat-trong-javascript

Hashnode - javascript (Javascript)

N'u b'n 'ang ''nh xây d'ng tính n'ng '' tính toán kho'ng th'i gian t''ng ''i (nh' "sau 3 ngày n'a", "4 tháng tr''c", "1 phút tr''c") mà không c'n s' d'ng th' vi'n bên ngoài' Trong bài vi't này, chúng ta s' tìm hi'u v' Intl.RelativeTimeFormat, m't tín...


45: Flutter Riverpod Tutorial Part 7: Advanced Riverpod Patterns

https://harishkunchala.com/flutter-riverpod-tutorial-part-7-advanced-riverpod-patterns

Hashnode - Flutter (Flutter)

In this tutorial we'll dive into advanced Riverpod patterns. Sections Covered: Using the family Modifier Using the AutoDispose Modifier Keeping Providers Alive with keepAlive Declaring Dependencies with dependencies 1. Using thefamily Modifier ...


46: Frontend Interview Experience at Healthify

https://jaynil-gaglani.hashnode.dev/frontend-interview-experience-at-healthify

Hashnode - javascript (Javascript)

Hello folks,I had the opportunity to interview recently at Healthify for the Software Engineer 2 - Frontend role. This role is more inclined towards the frontend domain & I will share my interview experience in this post. How did I get to know about ...


47: Implementando Soluciones IoT con AWS GreenGrass

https://jfduque.hashnode.dev/iot-logica-negocio

Hashnode - python (python)

En este artículo, continuaremos nuestra serie sobre cómo aprender a usar AWS GreenGrass, implementando la lógica de negocio como se mencionó en el artículo anterior. Vamos directo al grano, en un archivo llamado main.py vas a escribir lo siguiente: f...


48: JavaScript In Action: The Ultimate Guide To Coding A Photo Gallery

https://colddsam.com/javascript-in-action-the-ultimate-guide-to-coding-a-photo-gallery

Hashnode - javascript (Javascript)

JavaScript in Action: The Ultimate Guide to Coding a Photo Gallery Introduction Welcome to the ultimate guide on coding a photo gallery using JavaScript. This comprehensive tutorial will take you through every step necessary to create a dynamic and u...


49: Programming Basics: Pass by Value and Pass by Reference

https://vaishd.hashnode.dev/programming-basics-pass-by-value-and-pass-by-reference

Hashnode - javascript (Javascript)

Honestly, JavaScript, or any language for that matter, is about two things: how values are passed and how values are stored. If you have a clear concept of this, understanding complicated logic or structures won't be difficult. When I understood how ...


50 / 51

50: Best Practices for Safe JavaScript "onclick" Events

https://mahakpandey.dev/best-practices-for-safe-javascript-onclick-events

Hashnode - javascript (Javascript)

In the world of web development, ensuring the security of user interactions is paramount. One common area where security vulnerabilities can arise is in handling onclick events in JavaScript. These events are crucial for creating interactive web appl...




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