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

« Novembre 2023 »

  • 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 25 Novembre 2023 (54)

1: Weekend Reading ' Darth driver

https://labnotes.org/weekend-reading-darth-driver/

Lab notes (Développement)

This week we realize we need this truck, map the entire internet form Nov 1969, don't obsessed over not getting hired, learn more about our brain and guts, and purchase the 'never obsolete' PC.


2: Python Cool Tricks - How to use logical and arithmetic operators together

https://bulog.tech/python-cool-tricks-how-to-use-logical-and-arithmetic-operators-together

Hashnode - python (python)

1. Connection between logical (boolean) and arithmetic operators When boolean values ''(or boolean expressions within parentheses) are used in an arithmetic expression, Python converts them to integers, and the False value to 0 and the True value to...


3: Log 0. Of new beginnings.

https://grace00.hashnode.dev/log-0-of-new-beginnings

Hashnode - javascript (Javascript)

Hi, I'm Grace, nice to e-meet you! Welcome to my space. I plan to use this as a daily/weekly journal to talk about my growth path as a junior software developer, career switcher and queer woman in engineering. I jumped into tech having a background i...


4: Uploading Images to AWS S3 and Storing S3 Key in DynamoDB using AWS Lambda - Streamlit Web App

https://nebulablogs.com/uploading-images-to-aws-s3-and-storing-s3-key-in-dynamodb-using-aws-lambda-streamlit-web-app

Hashnode - python (python)

I recently worked on a Streamlit web application project that allows users to upload a photo and a completed form. Streamlit is an open-source app framework primarily used by Machine-learning and Data Science communities to quickly develop and share ...


5: javascript.info Notes - Arrays

https://fiftybugsofgrey.hashnode.dev/javascriptinfo-notes-arrays

Hashnode - javascript (Javascript)

Array initiation let arr = new Array(); //almost rarely used let arr = []; // this is what we do //special case let arr = new Array(10); //creates an array of ten elements Accessing array elements let arr = ['a', 'b', 'c'] // the first character c...


6: Learn React Basics: Redux

https://blog.seancoughlin.me/learn-react-basics-redux

Hashnode - javascript (Javascript)

Redux has emerged as a significant player in the realm of state management for modern web applications, particularly those built with React. Powerfully, its utility extends beyond React, making it a versatile choice for developers. However, it is a c...


7: Buzz 101: Why was it built'

https://buzzblog.hashnode.dev/buzz-101-why-was-it-built

Hashnode - python (python)

Hello there, fellow buzdies! Happy to meet you again! I'm writing here to tell the world about an upcoming game-changing programming language' Buzz 101. If you haven't read the introductory article of Buzz 101, you can visit the following link to rea...


8: Generics in TypeScript

https://siddhantsiddh15.hashnode.dev/generics-in-typescript

Hashnode - javascript (Javascript)

Generics are like function arguments, but for types in class and function definitions in TypeScript. Generics always allows us to define the type of a property/argument/ return type value at a future point. it is used heavily when writing re-usable c...


9: How Norton 360 Premium Provide Layers of Protection for Your Connected World

https://www.smashingapps.com/norton-360-premium-layers-of-protection/

Smashing apps (Internet / Design)

Ever wondered if your digital sanctuary is fortified against the myriad cyber threats lurking in […]


10 / 54

10: Decorators in TypeScript : An introduction

https://siddhantsiddh15.hashnode.dev/decorators-in-typescript-an-introduction

Hashnode - javascript (Javascript)

What is a Decorator In this blog we will look into what is the purpose of adding decorators in TypeScript code. We will go through the definition, the implementation and consider this as your go to revision tool for decorators topic. By definition : ...


11: Starting the JavaScript in-depth Journey with History and the Future of JavaScript

https://techthinkers.dev/starting-the-javascript-in-depth-journey-with-history-and-the-future-of-javascript

Hashnode - javascript (Javascript)

The Early Years (1995-1997) In 1995, Netscape Communications was working on a new web browser called Netscape Navigator. They wanted to add a scripting language to the browser that would allow web developers to add interactivity to their pages. At th...


12: Elevating Your Deployment Game with Elastic Beanstalk

https://explorefarhan.hashnode.dev/elevating-your-deployment-game-with-elastic-beanstalk

Hashnode - javascript (Javascript)

Hey Devops amigos! Today, we're diving into the world of faultless deployments, a crucial aspect of running a software company. Imagine a world where deploying code is smooth, with minimal risk and maximum availability. Well, guess what' I am making ...


13: Implementing a Navigation Drawer in Material 3 with Jetpack Compose

https://rhythamnegi.com/implementing-a-navigation-drawer-in-material-3-with-jetpack-compose

Hashnode - Kotlin (Mobiles)

In this article, we will discuss how to implement a navigation drawer in Material 3 using Jetpack Compose. The navigation drawer is a common UI pattern in Android applications, allowing users to navigate between different screens or destinations in t...


14: ERC-6960: Dual Layer Token

https://panditdhamdhere.hashnode.dev/erc-6960-dual-layer-token

Hashnode - javascript (Javascript)

ERC-6960 is a new token standard designed by the team at Polytrade. It's a unique way to represent Real World Assets (RWAs) on the blockchain and support fractional ownership. This means that it can break down a single asset into smaller parts, each ...


15: How To Create Responsive Website Using HTML CSS and Some jQuery

https://codingcss.hashnode.dev/how-to-create-responsive-website-using-html-css-and-some-jquery

Hashnode - javascript (Javascript)

Learn to build a responsive landing page with HTML, CSS, and jQuery in this beginner-friendly tutorial. The step-by-step guide covers the essentials of responsive website design, demonstrating how to create a full-screen landing page that adapts to v...


16: Setup CRUD App: Express, Typescript and MySQL

https://blog.sumitbhanushali.com/setup-crud-app-express-typescript-and-mysql

Hashnode - javascript (Javascript)

In this post, we will setup our Backend service. We will be using ExpressJS for APIs, MySQL for storage and Prisma for ORM. We will be using Typescript as the primary language. We will be using Docker to host MySQL on our machine. This will only work...


17: Benefits of using Typescript with ExpressJS with Project Template

https://blog.sumitbhanushali.com/benefits-of-using-typescript-with-expressjs-with-project-template

Hashnode - javascript (Javascript)

In this post, we will setup our Backend service. We will be using ExpressJS for APIs, MySQL for storage and Prisma for ORM. We will be using Typescript as the primary language. We will be using Docker to host MySQL on our machine. This will only work...


18: Making a CSV file reader using TypeScript

https://siddhantsiddh15.hashnode.dev/making-a-csv-file-reader-using-typescript

Hashnode - javascript (Javascript)

Assuming you have concepts of classes and how we declare classes in TypeScript, we will look into how we are going to write a CSV filer reader class in this blog. Also, if you are not familiar with what a CSV file is, here is a definition I looked up...


19: How to find which item has been changed in APEX

https://talkapex.com/how-to-find-which-item-has-been-changed-in-apex

Hashnode - javascript (Javascript)

Note: I previously had a similar post about this which I somehow lost so re-writing it. The original link was: https://talkapex.com/2021/01/how-to-find-which-item-has-been-changed-in-apex By default APEX will warn users when leaving a page. When user...


20 / 54

20: Mastering JavaScript Event Handling Techniques: Bubbling, Capturing, Delegation, and Propagation

https://thenomadtechie.hashnode.dev/mastering-javascript-event-handling-techniques-bubbling-capturing-delegation-and-propagation

Hashnode - javascript (Javascript)

Introduction Events in JavaScript are essential and fundamental for creating interactive web pages. They can be considered the driving force behind a browser, enabling it to perform actions on behalf of the user. When you find a button and want to cl...


21: Performing retries '''', struct, interface & concurrency in go | Techletter 49

https://prajwalhaniya.hashnode.dev/performing-retries-struct-interface-concurrency-in-go-techletter-49

Hashnode - javascript (Javascript)

How to perform retries' Performing retries is one of the important functionalities while performing a transaction, making an API call to a third-party application, etc. Imagine a scenario where you need to perform retries multiple times until you get...


22: JavaScript Basics

https://mharez.hashnode.dev/javascript-basics

Hashnode - javascript (Javascript)

Conditionals Loops (for, do .... while, while) Functions JavaScript is one of the most understandable languages in coding. Therefore, understanding it's basics is a game changer in ones journey to crafting whatever amazing software is in mind. What a...


23: Éclairage sur les métiers de la Tech : Équilibre entre points forts et contraintes

https://medium.com/linkvalue/metiers-tech-points-forts-contraintes-73cd13ea8041

Humancoders ()

Huit collaborateurs, avec différents profils allant du product management au développement web et mobile, partagent ainsi leurs expériences. Leurs témoignages sur leur poste, leur quotidien et leurs' Commentaires L'article Éclairage sur les métiers de la Tech : Équilibre entre points forts et contraintes a été posté dans la catégorie Développement de Human Coders News


24: Data storytelling : Raconter des histoires avec des données

https://blog.ostraca.fr/blog/guide-data-storytelling-exemple-avec-donnees/

Humancoders ()

Découvrez comment le data storytelling transforme l'analyse en récits qui engagent et influencent les décisions. Guide Complet. Commentaires L'article Data storytelling : Raconter des histoires avec des données a été posté dans la catégorie Data de Human Coders News


25: Comment fonctionne l'encodage en base64

https://www.akshaykhot.com/base64-encoding-explained

Humancoders ()

Vous vous êtes déjà demandé comment fonctionnait l'encodage en base64 ' Cet article explique de façon simple comment fonctionne l'algorithme avec des exemples. Commentaires L'article Comment fonctionne l'encodage en base64 a été posté dans la catégorie Développement de Human Coders News


26: Value Type and Reference Type in Dart

https://blogs.jaytillu.in/value-type-and-reference-type-in-dart

Hashnode - Flutter (Flutter)

Google's versatile programming language, Dart, is equipped with a strong type system that encompasses two fundamental concepts: value types and reference types. Having a thorough understanding of these concepts is crucial for writing Dart code that i...


27: Explaining useMemo, useCallBack and useRef Hooks in interviews

https://paraskaushik.hashnode.dev/explaining-usememo-usecallback-and-useref-hooks-in-interviews

Hashnode - javascript (Javascript)

useMemo (cache a function value across renders) useMemo lets you cache the result of a calculation between re-renders(state updates/props change) Suppose we have a heavy operation running on every render , we may consider memoizing it for an unrel...


28: VisualShaderNodeTextureSDF in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexturesdf-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to our journey through the realm of Godot 4’s VisualShaderNodeTextureSDF! As we all know, the visual aspect of a game can profoundly influence the player’s experience, and shaders play ... Read more


29: VisualShaderNodeTextureParameterTriplanar in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetextureparametertriplanar-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to our comprehensive tutorial on the VisualShaderNodeTextureParameterTriplanar class in Godot 4! It's an exciting time to dive into the world of visual shaders, where the power of graphical effects ... Read more


30 / 54

30: VisualShaderNodeTextureParameter in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetextureparameter-in-godot-complete-guide/

Game dev academy (Jeux)

Visual shaders in Godot Engine have transformed the way we design and implement graphic elements in our games. By abstracting shader programming into more visually digestible nodes, Godot has made ... Read more


31: VisualShaderNodeTexture3DParameter in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexture3dparameter-in-godot-complete-guide/

Game dev academy (Jeux)

Diving into the world of shader programming can often seem intimidating, but it’s an essential skill for creating visually stunning games and interactive experiences. As you embark on this learning ... Read more


32: VisualShaderNodeTexture3D in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexture3d-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to our exploration of the VisualShaderNodeTexture3D in Godot 4, a powerful tool for game developers who aim to create stunning 3D visual effects. Godot’s VisualShaderNode system allows artists and ... Read more


33: VisualShaderNodeTexture2DParameter in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexture2dparameter-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to this in-depth exploration of the VisualShaderNodeTexture2DParameter within the context of Godot Engine 4! As we dive into the world of shaders and game development, understanding how to effectively ... Read more


34: VisualShaderNodeTexture2DArrayParameter in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexture2darrayparameter-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to your newest journey into the world of game development with Godot 4! Today, we’ll delve into a rather specific, yet crucial component of the Godot Engine’s VisualShader system ... Read more


35: VisualShaderNodeTexture2DArray in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexture2darray-in-godot-complete-guide/

Game dev academy (Jeux)

Welcome to the fascinating world of Godot 4’s VisualShaderNodeTexture2DArray class! If you’ve been eager to dive into the realm of shaders within Godot’s robust engine, you’re exactly where you need ... Read more


36: VisualShaderNodeTexture in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodetexture-in-godot-complete-guide/

Game dev academy (Jeux)

Visual shaders in Godot are an incredible tool for developers looking to add a touch of visual flair to their games without diving deep into the complex world of shader ... Read more


37: VisualShaderNodeSwitch in Godot ' Complete Guide

https://gamedevacademy.org/visualshadernodeswitch-in-godot-complete-guide/

Game dev academy (Jeux)

When diving into the world of game development, particularly with Godot Engine, one can find a plethora of nodes and classes designed to enhance and simplify the creation process. Among ... Read more


38: Handling Operational Errors: Express And MongoDB

https://ebohgoodness.hashnode.dev/handling-operational-errors-express-and-mongodb

Hashnode - javascript (Javascript)

Errors are unavoidable in software development, and Node js is no exception. As developers, we must incorporate excellent error-handling techniques into our software. This is a necessary criterion for creating an efficient codebase. This tutorial wou...


39: Usage of JavaScript array methods

https://blog.msar.me/usage-of-javascript-array-methods

Hashnode - javascript (Javascript)

In JavaScript, an array is a data structure that contains a collection of elements. Arrays are very useful because you can store, access, and manipulate multiple elements in a single array. In this article, we will discuss the usage of JavaScript arr...


40 / 54

40: Bit Manipulation made simple

https://chelot.hashnode.dev/bit-manipulation-made-simple

Hashnode - javascript (Javascript)

Bitwise Operation Bit manipulation (or bitwise operation) are used in Data compression (data is compressed by converting it from one representation to another, to reduce the space), Exclusive-Or Encryption (an algorithm to encrypt the data for safety...


41: Voldemort DJ, Hermione défoncée' l'IA imagine une Rave Party dans Harry Potter

https://www.lebigdata.fr/voldemort-dj-ia-imagine-rave-party

Le Big Data (dataviz)

Voldemort, le sorcier le plus craint, abandonne ses sombres desseins pour devenir DJ. Dans les images créées par l’IA, il … Cet article Voldemort DJ, Hermione défoncée… l’IA imagine une Rave Party dans Harry Potter a été publié sur LEBIGDATA.FR.


42: Enhancing Search Functionality in React with Debouncing

https://mritunjay.hashnode.dev/enhancing-search-functionality-in-react-with-debouncing

Hashnode - javascript (Javascript)

Are you looking to improve the search experience in your React application' Utilizing debouncing can be a game-changer, especially when integrating API calls with user input. In this article, we'll explore how to implement debouncing in a search feat...


43: Surprise ! Le rival d'OpenAI lance une IA deux fois plus avancée que GPT-4 Turbo

https://www.lebigdata.fr/claude-gpt-4-turbo

Le Big Data (dataviz)

Le nouveau grand modèle de langage Claude 2.1 possède le double des capacités de GPT-4 Turbo. OpenAI et son populaire … Cet article Surprise ! Le rival d’OpenAI lance une IA deux fois plus avancée que GPT-4 Turbo a été publié sur LEBIGDATA.FR.


44: Lexique Reddit : 15 acronymes pour mieux comprendre ce réseau social

https://www.blogdumoderateur.com/lexique-reddit-15-acronymes-mieux-comprendre-plateforme/

Blog du Moderateur ()

Découvrez les acronymes les plus fréquemment utilisés sur le site communautaire Reddit.


45: javascript.info Notes - Strings

https://fiftybugsofgrey.hashnode.dev/javascriptinfo-notes-strings

Hashnode - javascript (Javascript)

Three ways to declare strings in JS let single = 'single-quoted'; let double = "double-quoted"; let backticks = `backticks`; Accessing characters let str = `Hello`; // the first character console.log( str[0] ); // H console.log( str.at(0) ); // H ...


46: An introduction to classes in TypeScript

https://siddhantsiddh15.hashnode.dev/an-introduction-to-classes-in-typescript

Hashnode - javascript (Javascript)

Classes As we all know classes are blueprints of some real world entity with some values and some methods to represent that entity. It promotes code re-usability and occupies not memory until we create an instance of a class. I am assuming you know h...


47: Troubleshooting Unity: Scene and Hierarchy Not Showing' Here's a Quick Fix!

https://akashrj.hashnode.dev/troubleshooting-unity-scene-and-hierarchy-not-showing-heres-a-quick-fix

Hashnode - Unity (unity)

Are you a Unity developer encountering an issue where the Scene and Hierarchy panels mysteriously disappear from your screen' Don't worry; you're not alone. This common problem can be a tad perplexing for beginners and seasoned developers alike. Howe...


48: Responsive Product Card Landing Page HTML CSS JAVASCRIPT

https://codingcss.hashnode.dev/responsive-product-card-landing-page-html-css-javascript

Hashnode - javascript (Javascript)

Hey everyone. Welcome to today's tutorial. In today's tutorial, we will learn how to create a Product Card Landing page. To build this Landing Page, we need HTML, CSS and JavaScript. This project is suitable for JavaScript intermediates. If you are l...


49: Day 11: Mastering Dictionaries and Sets in Python for DevOps

https://chandreshpatle.com/day-11-mastering-dictionaries-and-sets-in-python-for-devops

Hashnode - python (python)

Welcome back to our Python for DevOps series! In today's session, we'll dive into the powerful world of dictionaries and sets, key components in Python for managing and organizing data efficiently. Let's explore their functionalities and delve into p...


50 / 54

50: L'Arbre et le Climat - Conférence Parc Naturel Régional du Golfe du Morbihan

http://amisdekervoyal.viabloga.com/news/l-arbre-et-le-climat-conference-parc-naturel-regional-du-golfe-du-morbihan

Amis de Kervoyal (Divers...)

Sur le sujet:Normal021falsefalsefalseMicrosoftInternetExplorer4/* Style Definitions */table.MsoNormalTable{mso-style-name:"Tableau Normal";mso-tstyle-rowband-size:0;mso-tstyle-colband-size:0;mso-style-noshow:yes;mso-style-parent:"";mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-para-margin:0cm;mso-para-margin-bottom:.0001pt;mso-pagination:widow-orphan;font-size:10.0pt;font-family:"Times New Roman";mso-fa [...]


51: A Big Thank You to Our Robo.js Hacktoberfest Contributors!

https://waveplay.hashnode.dev/thank-you-hacktoberfest-2023

Hashnode - javascript (Javascript)

As we reflect on this year's Hacktoberfest, we're truly amazed by the energy and creativity shown by the Robo.js community. Your contributions have been the highlight of our month, and we're excited to showcase the innovative plugins and valuable con...


52: Ansible Callback Plugins: Tailoring Automation Feedback for Your Needs ''

https://blog.prasadsuman.me/ansible-callback-plugins-tailoring-automation-feedback-for-your-needs

Hashnode - python (python)

Introduction to Ansible Callback Plugins In the symphony of automation, communication is key. Ansible Callback Plugins are the conductors, allowing you to customize how Ansible communicates and provides feedback during playbook execution. In this blo...


53: Web Styling .1

https://mirageazlit.hashnode.dev/web-styling-1

Hashnode - javascript (Javascript)

Is it a language' CSS, or Cascading Style Sheets, is a style sheet language used for describing the presentation of a document written in HTML or XML (including XML dialects like SVG or XHTML). CSS (Cascading Style Sheets) is a style sheet language. ...


54: Using YAML file to create PyTorch model

https://siddhibajracharya.hashnode.dev/using-yaml-file-to-create-pytorch-model

Hashnode - python (python)

Soooo. I was working on tuning a model for my college research thesis. I was already using YAML files to control parameters such as learning rates, dropout rates, so on. But, I also wanted to tune the model while changing the number of layers and neu...




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