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


5 Novembre 2023 (41)

1: A Coding Journey

https://jansoe.hashnode.dev/a-coding-journey

Hashnode - python (python)

Like many before me, I have begun my journey of learning to write code. I will tell you about this in more detail, but first, let me tell you a bit about myself and my journey until now. Early beginnings I started having an interest in coding at a fa...


2: Exploring the World of Car Rental Management: Building a Python Application - Part 10

https://bryanjames.hashnode.dev/exploring-the-world-of-car-rental-management-building-a-python-application-part-10

Hashnode - python (python)

Article 10: Adding New Customers Welcome back to our journey in building a Python-based car rental management system. In Part 10, we'll focus on adding new customers to the system, explaining the process and how we generate unique customer IDs. The S...


3: Python: Is it really worth it '

https://codewithkin.hashnode.dev/python-is-it-really-worth-it

Hashnode - python (python)

Introduction 'Python is the 'Swiss Army knife' of programming languages.' '''Charles Severance The year was 1991. Python was the new kid in town. A lot of people were excited by it, but no one could have predicted the extent to which it would be l...


4: Splitting text into chars the right way

https://andremichelle.hashnode.dev/splitting-text-into-chars-the-right-way

Hashnode - javascript (Javascript)

The first thing that comes into your mind is probably writing "AB".split("") which results correctly into ['A', 'B']. However, if you have an emoji in between your text such as "A'B".split("") it will return ['A', 'uD83D', 'uDC7B', 'B'], because t...


5: Things Developers Need to Know About DevOps

https://techblog.geekyants.com/things-developers-need-to-know-about-devops

Geek y Ants ()

Introduction This article breaks down the talk by Robin Biju Thomas, Technical Architect at IoTIFY.io, during the DevOps Meetup held at GeekyAnts. Let's get a brief overview of DevOps and related terminology that can improve workflows in our day-to-day jobs. As developers, we may work on frontend, backend, full-stack, or DevOps roles. While working on a product, we handle the design, development, [...]


6: Unveiling the Secrets of XSS Bypass: Harnessing JavaScript Symbols for Code Execution

https://tutorialboy24.hashnode.dev/unveiling-the-secrets-of-xss-bypass-harnessing-javascript-symbols-for-code-execution

Hashnode - javascript (Javascript)

Preface I have been looking at Intigriti, yeswehack, HackerOne and Bugcrowd bounty platforms recently. It is really uncomfortable to bypass WAF. I will record the bypass scenario. Preliminary testing When I first tried XSS, I found that the user's in...


7: Securing Web-Based Applications/Platforms with Proper Response Headers

https://techblog.geekyants.com/securing-web-based-applicationsplatforms-with-proper-response-headers

Geek y Ants ()

Introduction This article breaks down the talk by Kuldeep Pisda, Lead Software Engineer at STGI, during the recent DevOps meet-up at GeekyAnts. How can one secure the front-end of an application' When it comes to security, people usually talk about setting up firewalls and other network security measures. However, one basic thing we can do to make the front-end more secure is to avoid touching any [...]


8: IPython Magic Commands

https://gssakash.hashnode.dev/ipython-magic-commands

Hashnode - python (python)

Warning : This is not to be confused with the official Magic functions of Python. IPython magic commands are a special piece of syntax used in Python programming commonly inside Jupyter / Google Colab notebooks to be able to solve various complex pro...


9: Building an HR-bot Using ChatGPT

https://techblog.geekyants.com/building-an-hr-bot-using-chatgpt

Geek y Ants ()

This article summarizes the talk by the ChatGPT challenge winners at GeekyAnts. They explain their OpenAI-powered HR bot that simplifies employee record management and empowers employees to access the necessary information without relying on HR. Introduction We created an HR chatbot as part of the ChatGPT challenge. This article will discuss how we built the bot, the different factors we conside [...]


10 / 41

10: event.target Vs event.currentTarget in JavaScript

https://kamaldeen.hashnode.dev/eventtarget-vs-eventcurrenttarget-in-javascript

Hashnode - javascript (Javascript)

Purpose of the Blog Post In this blog post, I will take you into the journey of the world of Javascript. As you might have known, JavaScript is capable of doing wonders. Or how can you explain the magic of pressing a button on your webpage or applic...


11: Isolates in Dart and Flutter

https://techblog.geekyants.com/isolates-in-dart-and-flutter

Hashnode - Flutter (Flutter)

Introduction In this article, we will learn how to implement the multi-threading concept in Dart and Flutter. Multi-threading concept generally refers to handling more than one task, more than one type of code running simultaneously. Before starting,...


12: Date object and its methods in javascript

https://udayraj.sawant.com/date-object-and-its-methods-in-javascript

Hashnode - javascript (Javascript)

Date object in js The Date object in JavaScript is used for working with dates and times. The Date object represents a specific moment in time, including the year, month, day, hour, minute, second, and milliseconds. The date object in JavaScript prov...


13: Enhancing Vuetify Data Table Performance with Infinite Scroll

https://techblog.geekyants.com/enhancing-vuetify-data-table-performance-with-infinite-scroll

Geek y Ants ()

Introduction Vue.js is a popular JavaScript framework that allows developers to build dynamic and interactive user interfaces. When it comes to UI components, Vuetify is a powerful library that provides a wide range of pre-designed, customizable components. In this article, we will focus on: Vuetify's data table component, How to optimize its performance when dealing with large datasets, and Ho [...]


14: Creating Classic Bluetooth Turbo Module Using React Native New Architecture

https://techblog.geekyants.com/creating-classic-bluetooth-turbo-module-using-react-native-new-architecture

Geek y Ants ()

Introduction This article discusses the creation of a Bluetooth module using React Native's new architecture. The module is designed to enable Bluetooth communication between mobile devices and other Bluetooth-enabled devices. New Architecture React Native's new architecture is designed to improve performance and reliability in mobile applications. It includes several new features that make it ea [...]


15: Mastering the Details: Revealing Subtle Contrasts in UI Elements

https://techblog.geekyants.com/mastering-the-details-revealing-subtle-contrasts-in-ui-elements

Geek y Ants ()

Introduction During our various projects, we noticed some UI components that seem similar but have unique uses. Recently, we were involved in a Design System project, researching various UI components to enhance the experience for both designers and developers. It was fascinating to uncover subtle yet crucial differences that set them apart, like Popovers vs. Tooltips or Modals vs. Dialogs. These [...]


16: How to Build a Basic Speech Recognition Network with Tensorflow (Demo Video Included)

https://techblog.geekyants.com/how-to-build-a-basic-speech-recognition-network-with-tensorflow-demo-video-included

Geek y Ants ()

Introduction This tutorial will show you how to build a basic speech recognition network that recognizes simple speech commands. Speech recognition is a subfield of computer science and linguistics that identifies spoken words and converts them into text. A Basic Understanding of the Techniques Involved When speech is recorded using a voice recording device like a microphone, it converts physical [...]


17: How to Train YOLOv3 to Detect Custom Objects' (Demo Video Included)

https://techblog.geekyants.com/how-to-train-yolov3-to-detect-custom-objects-demo-video-included

Geek y Ants ()

This is a step-by-step tutorial on training object detection models on a custom dataset. What is Object Detection' Object Detection (OD) is a computer vision technique that allows us to identify and locate objects in digital images/videos. It is basically a combination of localizing objects in images/videos and classifying them into respective classes. Object detection is used extensively in many [...]


18: HTTP Methods in NextJS

https://sauravblog.hashnode.dev/http-methods-in-nextjs

Hashnode - javascript (Javascript)

Every website we visit often has its own API, including popular platforms like Twitter. Let's take Twitter as an example. When we search for a user, such as Saurav_Pant_, Twitter utilizes its REST API to handle our request. The API acts as a bridge b...


19: crate a python virtual invironment in linux

https://hemantjangir.hashnode.dev/crate-a-python-virtual-invironment-in-linux

Hashnode - python (python)

first of all, create a virtual environment pip install virtualenv then check the version of the virtual environment virtualenv --version create a virtual environment and now you see a new folder create in your present dir. virtualenv


20 / 41

20: NorthCoders Week4-Promises & Callbacks

https://tommirfin.com/northcoders-week4-promises-callbacks

Hashnode - javascript (Javascript)

This blog is worth a read, I promise First of all, I got through review day last Monday unscathed! Although we were assured by our tutors that there was nothing to worry about, it was always nerve-wracking for your skills to be put on the line. Our r...


21: Elon Musk est clair : Il n'y aura bientôt plus aucun travail, car l'IA va tout faire

https://www.lebigdata.fr/elon-musk-travail

Le Big Data (dataviz)

Elon Musk parle du travail comme une espèce en voie de disparition. La remarquable évolution de l'intelligence artificielle menace la … Cet article Elon Musk est clair : Il n’y aura bientôt plus aucun travail, car l’IA va tout faire a été publié sur LEBIGDATA.FR.


22: Virtual Scrolling in React: Implementation from scratch and using react-window

https://vedanshmehra.hashnode.dev/virtual-scrolling-in-react-implementation-from-scratch-and-using-react-window

Hashnode - javascript (Javascript)

How many times you've been in a situation where you have to render a list of items in your web application' It is a very common thing when building modern web apps these days. Well, the problem comes when you have to render very huge datasets let's s...


23: Understanding JavaScript Concepts: prototype vs. __proto__

https://hashnode.bartick.me/understanding-javascript-concepts-prototype-vs-proto

Hashnode - javascript (Javascript)

When embarking on your JavaScript journey, you may have encountered the terms prototype and __proto__. These terms may appear somewhat interchangeable at first glance, leading to some confusion for newcomers. However, they serve distinct purposes in ...


24: Understanding Javascript Call-Stack

https://arindam1729.hashnode.dev/understanding-javascript-call-stack

Hashnode - javascript (Javascript)

Introduction One of the fundamental concepts of JavaScript is the call stack, which is a mechanism that tracks the execution of code in a JavaScript program. In this article, we will explore the call stack of JavaScript, its role in the execution of ...


25: Finding the Majority Element in an Array:

https://harshita.dev/finding-the-majority-element-in-an-array

Hashnode - python (python)

In many programming tasks, we encounter the need to find the majority element in an array, which is the element that appears more than half the time. In this blog, we'll explore three different approaches to solving this problem using Python. We'll p...


26: How To Set Up a Node Project With Typescript

https://maaz-blogs.hashnode.dev/how-to-set-up-a-node-project-with-typescript

Hashnode - javascript (Javascript)

Introduction Node is a run-time environment that makes it possible to write server-side JavaScript. It has gained widespread adoption since its release in 2011. Writing server-side JavaScript can be challenging as a codebase grows due to the nature o...


27: Ils voulaient devenir riches, mais ont tout perdu dans les NFT : voici leurs témoignages

https://www.lebigdata.fr/tout-perdu-dans-nft-temoignages

Le Big Data (dataviz)

La folie des NFT a secoué le monde financier, attirant des investisseurs avides de richesses rapides. Cependant, les rêves d’opulence … Cet article Ils voulaient devenir riches, mais ont tout perdu dans les NFT : voici leurs témoignages a été publié sur LEBIGDATA.FR.


28: How to Start Learning Python

https://blog.fahimbinamin.com/how-to-start-learning-python

Hashnode - python (python)

If you are thinking about learning Python, then this article is for you. Why You Should Learn Python Learning Python is a smart thing to do for various reasons: Versatility and Popularity Python is a widely used, versatile programming language that i...


29: Arif Qayoom: From Setbacks to Triumph - The Visionary Behind the Most Secure Chat App

https://amirwani39.hashnode.dev/arif-qayoom-from-setbacks-to-triumph-the-visionary-behind-the-most-secure-chat-app

Hashnode - Flutter (Flutter)

In the ever-evolving world of technology and entrepreneurship, the story of Arif Qayoom ( Arif Qayoom ) is nothing short of remarkable. His journey, marked by dedication, resilience, and groundbreaking innovation, is a testament to the heights one ca...


30 / 41

30: Understanding Call, Apply and Bind in JavaScript

https://saurabhsuryavanshi.hashnode.dev/understanding-call-apply-and-bind-in-javascript

Hashnode - javascript (Javascript)

JavaScript is a versatile programming language that offers various ways to manipulate functions and their execution contexts. Among these methods are call, apply, and bind, which allow developers to control how functions are invoked and what this ref...


31: IA vs artistes : Midjourney et Stability viennent de gagner leur procès

https://www.lebigdata.fr/ia-vs-artistes

Le Big Data (dataviz)

Depuis quelques mois, les droits d'auteurs sont les centres du bras de fer entre l'IA et les artistes. Et le … Cet article IA vs artistes : Midjourney et Stability viennent de gagner leur procès a été publié sur LEBIGDATA.FR.


32: Weekly Indie Log 9

https://roehl.dev/weekly-indie-log-9

Hashnode - Flutter (Flutter)

This week was full of new milestones. First, let's take a look at the hard numbers of my app business in October: $5822 revenue (+32%) $1993 MRR (+19%) 2439 subscribers (+20%) These numbers are absolutely amazing and mark the (current) peak of m...


33: Implementing A Dark Mode Feature Using Css And Simplified Javascript Codes

https://daney.hashnode.dev/implementing-a-dark-mode-feature-using-css-and-simplified-javascript-codes

Hashnode - javascript (Javascript)

There's no denying that the Dark mode feature has grown to become one of the most highly sought-after software features of all time. This feature is so popular that we tend to see it in apps we use every day. From mobile to web apps, Dark mode has b...


34: Setting Up a React Project Without Using Create React App

https://anurag24.hashnode.dev/setting-up-a-react-project-without-using-create-react-app

Hashnode - javascript (Javascript)

Introduction:- Create React App (CRA) is a popular tool for setting up React projects, but it's not the only option. In this blog post, we'll learn how to set up a React project without CRA. This will give us more control over the configuration of ou...


35: Understanding the Difference Between "==" and "===" in JavaScript

https://hasanrahman55.hashnode.dev/understanding-the-difference-between-and-in-javascript

Hashnode - javascript (Javascript)

Introduction: If you're new to JavaScript, you might find the == and === operators a bit confusing. But don't worry, by the end of this blog post, you'll have a clear idea of what they do and when to use them. The Basics: == vs. === Both == and === a...


36: Secure Passwords by Hashing Using bcrypt Library in Python

https://teamgeek.geekpython.in/secure-passwords-by-hashing-using-bcrypt-library-in-python

Hashnode - python (python)

Web-based services and websites store hashed versions of your passwords, which means your actual password isn't visible or stored in their database instead a string of fixed-length characters is stored. Hashing is a security technique used to secure ...


37: My Journey Creating a Portfolio Website

https://pixel17.hashnode.dev/my-journey-creating-a-portfolio-website

Hashnode - javascript (Javascript)

Introduction: As a part of GDSC web developers task I decided to make my own website to show off my skills, projects, and experiences. This was a fun way for me to practice making websites and also to share what I've been working on. Design Choices: ...


38: The Top 5 Front-End Libraries to Learn in 2024

https://varadgondepatil.hashnode.dev/the-top-5-front-end-libraries-to-learn-in-2024

Hashnode - javascript (Javascript)

React: Popularity: React has been a dominant front-end library for several years. Reasons to Learn: It provides a component-based architecture, enabling developers to build complex UIs with ease. React is widely used in the industry, and its ecosys...


39: Python for Web Development

https://dyagee.hashnode.dev/python-for-web-development

Hashnode - python (python)

If you are reading this, it's either you're a programming beginner trying to figure out if Python is better option for you or you've been using other programming languages and want to transition to python or you've be using python programming languag...




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