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://jansoe.hashnode.dev/a-coding-journey
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...
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...
https://codewithkin.hashnode.dev/python-is-it-really-worth-it
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...
https://andremichelle.hashnode.dev/splitting-text-into-chars-the-right-way
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...
https://techblog.geekyants.com/things-developers-need-to-know-about-devops
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, [...]
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...
https://techblog.geekyants.com/securing-web-based-applicationsplatforms-with-proper-response-headers
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 [...]
https://gssakash.hashnode.dev/ipython-magic-commands
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...
https://techblog.geekyants.com/building-an-hr-bot-using-chatgpt
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
https://kamaldeen.hashnode.dev/eventtarget-vs-eventcurrenttarget-in-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...
https://techblog.geekyants.com/isolates-in-dart-and-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, there are two terms that we should understand: parallelism and concurrency. Parallelism refers to the concept wherein more than one task runs simulta [...]
https://udayraj.sawant.com/date-object-and-its-methods-in-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...
https://techblog.geekyants.com/enhancing-vuetify-data-table-performance-with-infinite-scroll
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 comp...
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 [...]
https://techblog.geekyants.com/mastering-the-details-revealing-subtle-contrasts-in-ui-elements
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 [...]
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 [...]
https://techblog.geekyants.com/how-to-train-yolov3-to-detect-custom-objects-demo-video-included
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 [...]
https://sauravblog.hashnode.dev/http-methods-in-nextjs
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...
https://hemantjangir.hashnode.dev/crate-a-python-virtual-invironment-in-linux
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
https://tommirfin.com/northcoders-week4-promises-callbacks
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...
https://www.lebigdata.fr/elon-musk-travail
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.
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...
https://hashnode.bartick.me/understanding-javascript-concepts-prototype-vs-proto
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 ...
https://arindam1729.hashnode.dev/understanding-javascript-call-stack
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 ...
https://harshita.dev/finding-the-majority-element-in-an-array
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...
https://maaz-blogs.hashnode.dev/how-to-set-up-a-node-project-with-typescript
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...
https://www.lebigdata.fr/tout-perdu-dans-nft-temoignages
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.
https://blog.fahimbinamin.com/how-to-start-learning-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...
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
https://saurabhsuryavanshi.hashnode.dev/understanding-call-apply-and-bind-in-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...
https://www.lebigdata.fr/ia-vs-artistes
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.
https://roehl.dev/weekly-indie-log-9
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...
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...
https://anurag24.hashnode.dev/setting-up-a-react-project-without-using-create-react-app
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...
https://hasanrahman55.hashnode.dev/understanding-the-difference-between-and-in-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...
https://teamgeek.geekpython.in/secure-passwords-by-hashing-using-bcrypt-library-in-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 ...
https://pixel17.hashnode.dev/my-journey-creating-a-portfolio-website
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: ...
https://varadgondepatil.hashnode.dev/the-top-5-front-end-libraries-to-learn-in-2024
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...
https://dyagee.hashnode.dev/python-for-web-development
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.
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.