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

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


16 Juillet 2023 (54)

1: Intro to Programming: Portfolio Project

https://rizzpylib.com/intro-to-programming-portfolio-project

Hashnode - python (python)

For my portfolio project in Intro to Programming, we had to do a Python Terminal Game. This was my opportunity to create a Choose Your Own Adventure (CYOA) game. CYOA from a Computer Science perspective is not about the A - the narrative in the Adven...


2: Code Smell 218 - Magic Concatenation

https://maximilianocontieri.com/code-smell-218-magic-concatenation

Hashnode - python (python)

TL;DR: Watch out for fancy language assumptions Problems Possible defects The least surprise principle violation Hidden Assumptions Solutions Be declarative Use good linters Prefer declarative languages Context Many programming languages f...


3: Bringing Data Together: An Introduction to Objects in JavaScript

https://ayoolaayodele.hashnode.dev/bringing-data-together-an-introduction-to-objects-in-javascript

Hashnode - javascript (Javascript)

Objects are a fundamental concept in JavaScript that allow you to organize and encapsulate related data and functionality. In this article, we will explore the basics of objects, how to create instances of objects, and different ways to access object...


4: Guide to react form hook and watch vs useWatch

https://buggycode.hashnode.dev/guide-to-react-form-hook-and-watch-vs-usewatch

Hashnode - javascript (Javascript)

I have never used react-form-hook before my current project. I was creating a boilerplate and he suggested I use react-form-hook in this project. So I am using it now. There is a bundle of options other than react-form-hook still it is much cleaner a...


5: TypeScript: A Comprehensive Guide to a Powerful JavaScript Superset

https://yashgaur.hashnode.dev/typescript-a-comprehensive-guide-to-a-powerful-javascript-superset

Hashnode - javascript (Javascript)

What is TypeScript' TypeScript is an open-source programming language developed by Microsoft. It is a statically typed superset of JavaScript that compiles down to plain JavaScript code. TypeScript adds optional static typing and additional features ...


6: Compose Canvas API

https://otsembo.hashnode.dev/compose-canvas-api

Hashnode - Kotlin (Mobiles)

Jetpack Compose has continued to evolve in its set of APIs that offers developers a comprehensive suite of tools that can be used to create rich user experiences. The Canvas API from Jetpack Compose lets us fine-tune the items we want to draw on the ...


7: Introduction to DevOps : Day 1 90DaysOfDevOps

https://snehasamudre.hashnode.dev/introduction-to-devops-day-1-90daysofdevops

Hashnode - python (python)

What is DevOps' ''' DevOps is a culture or a methodology where the development team and operations teams collaborate to deliver the product faster and better. It focuses on breaking down the traditional barriers between these two groups to enable...


8: Learning JS - 2

https://thecodingcodex.hashnode.dev/learning-js-2

Hashnode - javascript (Javascript)

16/06/2023 Day 2 of Coding Day 2 of JavaScript I'm learning JavaScript. Starting from scratch, as I'm new to JS. I'm currently a student studying Computer Science Engineering. Feel free to discuss any topic I post. Feel free to discuss related projec...


9: JavaScript Obfuscation: A Beginner's Guide to Protecting and Optimizing Your Code

https://cluelessguyyy.hashnode.dev/javascript-obfuscation-a-beginners-guide-to-protecting-and-optimizing-your-code

Hashnode - javascript (Javascript)

Introduction: In the vast world of JavaScript, protecting your code from prying eyes and ensuring its security is a top priority. This is where JavaScript obfuscation comes into play. In this beginner-friendly guide, we'll unravel the mysteries of Ja...


10 / 54

10: I want the reference !

https://uva.hashnode.dev/i-want-the-reference

Hashnode - javascript (Javascript)

When developing React applications, it is common to create reusable components that can be used in multiple places by passing appropriate props to achieve the desired behavior. However, there may be situations where you want to control the state of a...


11: Git Notes: A Comprehensive Guide

https://codingtute.com/git-notes/

codingtute.com (Développement)

Git, a version control system widely used by developers, offers numerous features that enhance collaboration and streamline the development process. Git notes, a powerful but often overlooked command, is one such feature. In this article, we will explore Git notes in-depth, discussing their purpose, usage, and benefits. We will also provide practical examples to help […] The post Git Notes: [...]


12: State Management in Flutter for Beginners

https://growthandtech.hashnode.dev/state-management-in-flutter-for-beginners

Hashnode - Flutter (Flutter)

State Management in Flutter was one of the hardest things to grasp for me while learning Flutter. To be honest, I still have trouble with it even today, after working with Flutter for more than a year. So, in this article, I want to give you a high-l...


13: 10 Useful Python Programming Tips

https://matinmollapur.hashnode.dev/10-useful-python-programming-tips

Hashnode - python (python)

Python is a powerful and versatile programming language that is used for a wide variety of tasks, including data analysis, web development, and machine learning. If you are new to Python, or if you are looking for ways to improve your Python skills, ...


14: Automating the Migration of Your Ghost Publication to Medium with Node.js and Python

https://hashnode.snehasish.dev/automating-the-migration-of-your-ghost-publication-to-medium-with-nodejs-and-python

Hashnode - python (python)

Are you looking to switch your blogging platform from Ghost Publication to Medium' If so, you probably want to import all of your existing articles over. But doing this manually can be quite a pain, especially if you have a large number of posts. In ...


15: Python Programming for Beginners: Jumpstart Your Coding Journey

https://olasquare.hashnode.dev/python-programming-for-beginners-jumpstart-your-coding-journey

Hashnode - python (python)

An Introduction to Python Python is arguably the most popular programming language in 2023 and is sometimes referred to as the future of programming languages. Why is this so' Python is relatively easy to learn as a result of its simplified and Engli...


16: Building a Serverless Slack App With SST

https://polyrenn.hashnode.dev/building-a-serverless-slack-app-with-sst

Hashnode - javascript (Javascript)

' Required: Some knowledge of AWS & Javascript. What we'll be building A simple Slack app with a bot user that can respond to certain events, like a message matching a specific string or when a new member joins a channel. Intro - Serverless Server...


17: Node.js Restful API

https://edunode.hashnode.dev/nodejs-restful-api

Hashnode - javascript (Javascript)

REST stands for Representational State Transfer. REST is a web standards-based architecture and uses HTTP Protocol. REST was first introduced by Roy Fielding in 2000. HTTP methods The following four HTTP methods are commonly used in REST-based archit...


18: AWS Automation: Python and Boto3 for Powerful Service Integration (IAM)

https://mysoftwarediary.com/aws-automation-python-and-boto3-for-powerful-service-integration-iam

Hashnode - python (python)

Let's learn to automate tasks and operations within the Amazon Web Services (AWS) environment using python and boto3 which is the library of python to interact with AWS. Requirements: Pycharm Boto3 Boto3 is a Python library or software development ki...


19: A Step by Step Guide to Code Profiling in Python

https://psycode.com/a-step-by-step-guide-to-code-profiling-in-python

Hashnode - python (python)

As programmers and software developers writing code is not enough, just because the code works doesn't mean it is effective. Optimizing our code for improved performance should be one of the tenets of software development. Code profiling helps us to ...


20 / 54

20: Event in JS (javascript)

https://diwakarkashyap.hashnode.dev/event-in-js-javascript

Hashnode - javascript (Javascript)

In JavaScript, an event is an action or occurrence that takes place in the browser or on a web page. Events can be triggered by user actions, such as clicking a button or submitting a form, or by other actions, such as the page finishing loading or a...


21: Dominating File and Error Handling in Python

https://kralhex.hashnode.dev/dominating-file-and-error-handling-in-python

Hashnode - python (python)

Introduction File and error handling are crucial skills for Python developers, enabling efficient data manipulation, input/output operations, and graceful error management. In this in-depth blog post, we will dive deep into the world of file handling...


22: Day 2 Task: Basics Linux command

https://amanmulla.hashnode.dev/day-2-task-basics-linux-command

Hashnode - python (python)

Linux Linux came from a Unix family, Linux is a free and open-source software operating system, which Linus Torvalds developed in September 1991. In 1991, Linus Torvalds was a student at the University of Helsinki, Finland USA. Today many year pas...


23: A different approach to Matrix multiplication using Strassen's Algorithm

https://darkmortal.hashnode.dev/strassens-algorithm

Hashnode - python (python)

List of matrices on which we are going to run and compare our functions # 4x4 and 4x3 matrices mat3 = [ [5,2,3,1], [7,6,4,2], [5,6,7,5], [5,7,9,7] ] mat4 = [ [5,2,3], [7,6,4], [5,6,7], [5,7,9] ] # 3x3 and 3x3 matrices...


24: The Journey of a Widget: Understanding the Lifecycle in Flutter

https://pranjal-barnwal.hashnode.dev/widget-lifecycle-flutter

Hashnode - Flutter (Flutter)

In Flutter, widgets have a lifecycle that determines how they are created, updated, and disposed of. Understanding the widget lifecycle is essential for managing state, performing side effects, and optimizing your Flutter application. Let's dive into...


25: ' Day 10 of 100DaysOfCode: Journeying into Web Development and Python Adventures ''

https://tejaswasnik.hashnode.dev/day-10-of-100daysofcode-journeying-into-web-development-and-python-adventures

Hashnode - python (python)

Greetings, fellow coders! Today marks the exciting Day 10 of my immersive #100DaysOfCode challenge, and I am thrilled to share my remarkable progress with you. It has been a day filled with significant milestones, where I dived into Bootstrap, began ...


26: Writing an Encryption Script Using Fernet Cryptography in Python

https://ayobamialaran.tech/writing-an-encryption-script-using-fernet-cryptography-in-python

Hashnode - python (python)

Introduction With the increasing need for data security and privacy, encryption plays a crucial role in safeguarding sensitive information. Python, being a versatile programming language, offers several cryptographic libraries to implement encryption...


27: Advancing Angular Performance: Techniques for Fine-Tuned Template Expressions

https://kodedblog.com/advancing-angular-performance-techniques-for-fine-tuned-template-expressions

Hashnode - javascript (Javascript)

Picture this: you're knee-deep in building your Angular application, committed to delivering a user experience that's as swift as a hare, not a tortoise. But have you considered optimizing your template expressions' This key performance booster is of...


28: A Tale of Git Mishap and PyCharm's Heroic Save

https://afeez1131.hashnode.dev/a-tale-of-git-mishap-and-pycharms-heroic-save

Hashnode - python (python)

Once upon a time, in the realm of software development, a daring coder embarked on a coding adventure filled with triumphs and tribulations. Little did they know that a single command would lead them to the brink of despair, only to be rescued by an ...


29: Intro to Regex

https://nevetsnosdog.hashnode.dev/intro-to-regex

Hashnode - javascript (Javascript)

So I thought it was about time I did some discovery and learned about the use of RegEx and what it can bring to a project. To ensure that I got a structured introduction I undertook the course called REGULAR EXPRESSIONS FOR BEGINNERS ' UNIVERSAL on U...


30 / 54

30: JavaScript Functions: An Introduction to Harnessing Their Power

https://ayoolaayodele.hashnode.dev/javascript-functions-an-introduction-to-harnessing-their-power

Hashnode - javascript (Javascript)

Welcome to a captivating journey into the fascinating world of JavaScript functions! Functions serve as the true powerhouses of JavaScript, acting as the building blocks that empower developers to create modular, efficient, and reusable code. In this...


31: Exploring APIs with JavaScript: A Deep Dive into Fetch and Axios Libraries

https://blog.snehasishnayak.com/exploring-apis-with-javascript-a-deep-dive-into-fetch-and-axios-libraries

Hashnode - javascript (Javascript)

Hello, fellow developers! Today, we're diving deep into the fascinating world of JavaScript and APIs. JavaScript is the engine behind modern web development, enabling us to create interactive web pages. APIs, or Application Programming Interfaces, ar...


32: Exploring APIs with JavaScript: A Deep Dive into Fetch and Axios Libraries

https://hashnode.snehasish.dev/exploring-apis-with-javascript-a-deep-dive-into-fetch-and-axios-libraries

Hashnode - javascript (Javascript)

Hello, fellow developers! Today, we're diving deep into the fascinating world of JavaScript and APIs. JavaScript is the engine behind modern web development, enabling us to create interactive web pages. APIs, or Application Programming Interfaces, ar...


33: My first Vue app

https://hellosambhavi.com/my-first-vue-app

Hashnode - vuejs (Javascript)

Introduction Tutorial paralysis is true beyond words. Whenever we learn a new technology or framework or language, the first step will be to purchase a course in Edtech platforms like Udemy, Pluralsight, and the like. Nothing wrong! There has to be s...


34: Unraveling JavaScript's Enigma: Exploring the Mysterious NaN and Peculiar Object Properties

https://priyankuhazarika.hashnode.dev/unraveling-javascripts-enigma-exploring-the-mysterious-nan-and-peculiar-object-properties

Hashnode - javascript (Javascript)

Welcome, curious minds, to the debut article of our "Weird JavaScript" series! Prepare to embark on an exciting journey through the realm of JavaScript's peculiarities as we unravel the mysteries of NaN and delve into the world of peculiar object pro...


35: Frontend Engineer Interview Experience @ Amazon

https://vinayakvvg.hashnode.dev/frontend-engineer-interview-experience-amazon-bdf8b3d66d40

Hashnode - javascript (Javascript)

While applying for Amazon I was searching/looking for the interview process for Frontend Engineer. To be honest there are not many resources available for guidance. I wanted to know how many rounds would be there, and whether we will have a coding te...


36: L'IA révèle à quoi ressemble la plus belle personne de chaque pays

https://www.lebigdata.fr/ia-plus-belle-personne

Le Big Data (dataviz)

Comme l'IA générative gagne de plus en plus de notoriété, nombreux sont ceux qui se laissent tentés par l’exploration des … Cet article L'IA révèle à quoi ressemble la plus belle personne de chaque pays a été publié sur LEBIGDATA.FR.


37: Revamping, Refactoring or Rewriting

https://vvaibhavdesai.hashnode.dev/revamping-refactoring-or-rewriting

Hashnode - javascript (Javascript)

Undoubtedly, revamps, rewrites, and refactors (will refer to these terms as RRR in this blog) pose considerable challenges due to various factors such as existing code complexities and information gaps. In this blog, we will delve into the intricacie...


38: Understanding Primitive Types, Type Annotations and Non-Primitive Types in TypeScript

https://sridharmaskeri.hashnode.dev/understanding-primitive-types-type-annotations-and-non-primitive-types-in-typescript

Hashnode - javascript (Javascript)

' Intro Welcome to the second episode of the TypeScript 101 series! In this blog post, we'll delve into the fundamental concepts of primitive types, type annotations, and non-primitive types in TypeScript. Understanding these concepts is crucial for ...


39: How to Build Your First Android App with Kotlin

https://sihuynh.dev/how-to-build-your-first-android-app-with-kotlin

Hashnode - Kotlin (Mobiles)

Kotlin is a modern and concise programming language that is officially supported for Android development. If you want to learn how to build your first Android app with Kotlin, this article will guide you through the steps of creating a simple app tha...


40 / 54

40: Starting your first Data Visualisation with Yahoo Finance

https://ayush-singh.hashnode.dev/starting-your-first-data-visualisation-with-yahoo-finance

Hashnode - python (python)

Data visualization is the process of transforming data into a visual format that makes it easier to understand and interpret. This can be a powerful tool for financial analysis, as it can help to identify patterns, trends, and outliers that might not...


41: Cybersécurité : 6 défis auxquels sont confrontées les établissements de santé

https://www.lebigdata.fr/cybersecurite-6-defis-etablissements-sante

Le Big Data (dataviz)

La cybersécurité constitue désormais un enjeu majeur pour les établissements de santé. Ces derniers sont de plus en plus ciblés … Cet article Cybersécurité : 6 défis auxquels sont confrontées les établissements de santé a été publié sur LEBIGDATA.FR.


42: 1.4. classes - method calls

https://ninajarah.xyz/14-classes-method-calls

Hashnode - javascript (Javascript)

class Surgeon { constructor(name, department) { this._name = name; this._department = department; this._remainingVacationDays = 20; } get name() { return this._name; } get department() { return this._department; } ...


43: Introducing depextract: A Convenient CLI Tool for dependency extraction!

https://ashutosh887.hashnode.dev/introducing-depextract

Hashnode - javascript (Javascript)

depextract is a powerful CLI tool designed to simplify the process of extracting dependencies from a package.json file. Whether you're upgrading an existing project or creating a new one with similar dependencies, depextract offers a convenient solut...


44: Python For DevOps Engineer

https://goutamdevops.hashnode.dev/python-for-devops-engineer

Hashnode - python (python)

What should we learn in Python for DevOps' Python Learning Roadmap For DevOps Engineers If you are starting your DevOps engineer journey and want to learn Python, the question you might have is, how much Python is required for DevOps' Here is a Pytho...


45: Understanding setTimeout() in JavaScript: Delay and Asynchronous Execution

https://harshal.dev/understanding-settimeout-in-javascript-delay-and-asynchronous-execution

Hashnode - javascript (Javascript)

Introduction: JavaScript is a versatile and powerful programming language used to create interactive and dynamic web applications. One of its essential features is the setTimeout() function, which allows developers to schedule the execution of a spec...


46: A Comprehensive Guide to Setting up Mixpanel in Vue 3 with Quasar 2

https://mohitransubhe-supernatural.hashnode.dev/a-comprehensive-guide-to-setting-up-mixpanel-in-vue-3-with-quasar-2

Hashnode - javascript (Javascript)

Introduction: Welcome to our comprehensive guide on setting up Mixpanel analytics in Vue 3 with Quasar 2! In today's digital landscape, understanding user behaviour and making data-driven decisions are crucial for the success of any application. That...


47: useState in React. js

https://progsriaramech.hashnode.dev/usestate-in-react-js

Hashnode - javascript (Javascript)

Sure, here is some information about the useState hook in React JS: What is useState' The useState hook is a React hook that allows you to manage state in functional components. State is data that can change over time, and it is used to keep track ...


48: Python Interview Questions And Answers for Freshers' Section - 1

https://blog.skillsafari.in/python-interview-questions-and-answers-for-freshers-section-1

Hashnode - python (python)

Python has become a critical programming language in the modern world due to its strength and versatility. Its importance stems from its clarity, readability, and variety of uses. Python is frequently used in web development, data analysis, automatio...


49: is vs ==

https://code-11.hashnode.dev/is-vs

Hashnode - python (python)

In Python, is and == are two different comparison operators. is is used to test object identity. It checks whether two variables refer to the same object in memory. == is used to test for value equality. It checks whether the values of two objects ar...


50 / 54

50: Flutter Extensions: A Must-Have for Any Developer

https://sungod.hashnode.dev/flutter-extensions

Hashnode - Flutter (Flutter)

Introduction : Flutter extensions are a powerful tool that can be used to extend the functionality of Flutter apps. They allow developers to add new features, improve performance, and simplify their code. There are a wide variety of Flutter extension...


51: Python Exception Handling: Mastering Errors and Exceptions

https://codinginsights.tech/python-exception-handling-mastering-errors-and-exceptions

Hashnode - python (python)

Welcome back, dear readers! We're excited to continue our journey through Python. In this article, we'll explore the world of exception handling in Python. Exception handling allows us to gracefully handle errors and exceptional situations in our cod...


52: Mastering Basic Operators: Your Ultimate Guide to Mathematical Operations

https://aryansharma.hashnode.dev/mastering-basic-operators-your-ultimate-guide-to-mathematical-operations

Hashnode - javascript (Javascript)

Basic math operators From school, we know operators. They include operations such as addition +, multiplication *, subtraction -, and division /. In this chapter, we'll start with basic operators before focusing on JavaScript-specific features that s...


53: How to Extend the Default Django User Model

https://johananoppongamoateng.hashnode.dev/how-to-extend-the-default-django-user-model

Hashnode - python (python)

Introduction: The Django web framework provides a powerful authentication system out-of-the-box with its default User model. However, there are often cases where we need to add additional fields or functionality to the User model to suit our applicat...




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