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

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


5 Mai 2024 (42)

1: Django part : 3

https://akashpawar.com/django-part-3

Hashnode - python (python)

What is Redirect and How to Redirect Page in Django A redirect is a HTTP response that instructs the client's web browser to navigate to a different URL. Redirects are commonly used to direct users to a new page after performing a certain action, suc...


2: Understanding WebSocket and creating from Scratch with JavaScript

https://codingmoon.hashnode.dev/understanding-websocket-and-creating-from-scratch-with-javascript

Hashnode - javascript (Javascript)

As developers, we often find ourselves on quests to understand new technologies. This past weekend, while battling a particularly stubborn bug (coffee wasn't helping!), I stumbled upon a cryptic note from my past self: "Explore WebSockets." Curiosity...


3: Setting Up Cross-Region Internal Application Load Balancer on Google Cloud using Terraform CDK: A Comprehensive Guide

https://antonermak.hashnode.dev/gcp-lb-setup

Hashnode - Kotlin (Mobiles)

In this article, I will explain how to set up an Internal Load Balancer in Google Cloud. The article will be useful for those who want to configure an L7 level HTTPS/HTTP balancer for accessing internal services without an external Internet address, ...


4: 17 Libraries You Should Know if You Build with React

https://anmolbaranwal.hashnode.dev/17-libraries-for-building-with-react

Hashnode - javascript (Javascript)

#TL;DR I have gathered React libraries you should know about to build many different types of projects and become a react wiz''''. Each one of these is unique and has their own use case. Don't forget to star them ' Let's get to it! DM me on Twitte...


5: OpenAI intègre le journalisme avec le Financial Times

https://www.lebigdata.fr/openai-financial-times-partenariat-ia

Le Big Data (dataviz)

Le 29 avril, le Financial Times et OpenAI ont marqué un tournant majeur, ces deux géants se sont associés pour … Cet article OpenAI intègre le journalisme avec le Financial Times a été publié sur LEBIGDATA.FR.


6: Ketch ' Android File Downloader Library

https://khushpanchal.hashnode.dev/ketch-android-file-downloader-library

Hashnode - Kotlin (Mobiles)

About Ketch Ketch is simple, powerful, customisable file downloader library for Android built entirely in Kotlin. It simplifies the process of downloading files in Android applications by leveraging the power of WorkManager. Ketch guarantees the down...


7: How Next.js caching works

https://tigerabrodi.blog/how-nextjs-caching-works

Hashnode - javascript (Javascript)

Introduction Let's start by understanding the caching system in Next.js and then dive into "no-store" and "force-dynamic". Next.js Caching System and RSC By default, Next.js uses a caching mechanism to improve performance. When a page is requested, N...


8: Creating physics on the web with three.js and amon.js.

https://theasyncpost.hashnode.dev/creating-physics-on-the-web-with-threejs-and-amonjs

Hashnode - javascript (Javascript)

In this article, we will explain step by step how to create basic physics in Three.js. This article is aimed at those who want to learn how to create physics and establish a solid foundation for understanding future articles on advanced physics. In a...


9: Creating a Wallpaper-App Expo

https://codewithhulk.blogspot.com/creating-a-wallpaper-app-expo

Hashnode - javascript (Javascript)

Working In progress index.js import { View, Text, StyleSheet, Image, Pressable } from "react-native"; import React from "react"; import { StatusBar } from "expo-status-bar"; import { hp, wp } from "../helpers/common"; import { LinearGradient } from "...


10 / 42

10: Learn Flutter by creating your first Flutter app!

https://davidserrano.io/learn-flutter-by-creating-your-first-flutter-app-state-management-stateful-vs-stateless-widgets

Hashnode - Flutter (Flutter)

In this article, I'm going to introduce you to your first Flutter app. We will explore the parts of a Flutter project, their roles, and we'll cover some fundamental concepts of state, including the differences between StatelessWidgets and StatefulWid...


11: L'analytique d'entreprise devient plus intuitive avec l'IA générative de Tableau

https://www.lebigdata.fr/tableau-analytique-2024-nouveautes-ia

Le Big Data (dataviz)

Tableau révolutionne l'analytique en entreprise avec l'introduction de nouvelles fonctionnalités à base d'IA générative. Ces avancées transforment non seulement l'utilisation … Cet article L’analytique d’entreprise devient plus intuitive avec l’IA générative de Tableau a été publié sur LEBIGDATA.FR.


12: Dart Introduction

https://kavyapandey.com/dart-introduction

Hashnode - Flutter (Flutter)

Dart is a free open source programming language that can be used to develop app for any platform . It is a object oriented and is used build mobile and web application on various platforms. Features of Dart Programming Language Dart has multiple feat...


13: How Python internally works'

https://notaprogrammer.hashnode/how-python-internally-works

Hashnode - python (python)

Unlike others, python internal working is quite different than others programming language so let's see the process step by step:- 1)Code Editor:- The first stage of program where we write our source code. This is human-readable code written accordi...


14: Emo inaugure l'ère de la communication non verbale par les robots

https://www.lebigdata.fr/emo-inaugure-lere-de-la-communication-non-verbale-par-les-robots

Le Big Data (dataviz)

Des chercheurs de l'université de Columbia ont créé un robot appelé Emo capable de prédire et de reproduire les expressions … Cet article Emo inaugure l’ère de la communication non verbale par les robots a été publié sur LEBIGDATA.FR.


15: Le programme VELOCI : un nouveau bouclier contre les cybermenaces pour les PME françaises

https://www.lebigdata.fr/palo-alto-westcon-cybersecurite-pme

Le Big Data (dataviz)

Face aux menaces croissantes, la cybersécurité devient une priorité pour les petites et moyennes entreprises (PME) en France. Palo Alto … Cet article Le programme VELOCI : un nouveau bouclier contre les cybermenaces pour les PME françaises a été publié sur LEBIGDATA.FR.


16: Getting started with PostgreSQL and Python

https://vic0de.com/getting-started-with-postgresql-and-python

Hashnode - python (python)

Start by running your Docker Desktop application. Then via the command line run the following command to pull the latest postgres image and start an instance. docker run -d -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword --name postgres_docker pos...


17: Google's huge search market share loss wasn't real: Data revised

https://searchengineland.com/googles-huge-search-market-share-loss-wasnt-real-data-revised-440191

Search engine land (Référencement)

While it wasn't as dramatic a drop as first reported, Google has been consistently losing U.S. search market share since August 2023.


18: Stateless vs Stateful widget

https://summydev.github.io/summydev//stateless-vs-stateful-widget

Hashnode - Flutter (Flutter)

Introduction Widgets are the fundamental building blocks that developers use to create beautiful and interactive user interfaces in Flutter Apps. In this article, we would be looking at the Stateless and Stateful widget which are components of Flutte...


19: List of JavaScript Deobfuscators

https://kurtnettle.hashnode.dev/list-of-javascript-deobfuscators

Hashnode - javascript (Javascript)

javascript-deobfuscator (ben-sb) jsnice synchrony javascript-deobfuscator (seosniffer) restringer js-deobfuscator jsdec de4js


20 / 42

20: validateDOMNesting error in React

https://tigerabrodi.blog/validatedomnesting-error-in-react

Hashnode - javascript (Javascript)

Introduction The validateDOMNesting error in React occurs when the DOM elements are not properly nested according to the HTML specification. Example of how the error looks The error message will look like this: Warning: validateDOMNesting(...): c...


21: JavaScript Jumpstart: A Beginner's Guide to Web Development

https://jamtekk.com/javascript-jumpstart-a-beginners-guide-to-web-development

Hashnode - javascript (Javascript)

JavaScript is a versatile programming language widely used for creating interactive and dynamic functionalities on websites. This beginner-friendly guide delves into the fundamental aspects of JavaScript and its pivotal role in web development. What ...


22: Data Analytics

https://ashutosh25.hashnode.dev/data-analytics

Hashnode - python (python)

In today's data-driven world, information is everywhere. But without the right tools and techniques, it remains just that ' information. This is where data analytics comes into play. "Data analytics is the process of examining raw data to uncover ins...


23: Github account setup and pushing the python code from the MAC local machine

https://vipinmp.hashnode.dev/github-account-setup-and-pushing-the-python-code-from-the-mac-local-machine

Hashnode - python (python)

Prerequisite:GitHub account. Step 1: Configure SSH key in your local machine and add it to git hub profile. ssh-keygen Copy the public key in to the Github profile. Go to Settings->SSH and GPG keys -> New SSH Keys and Save. Step 2: Create personal...


24: Understanding JavaScript Execution Context, Functional Execution Context, and Call Stack

https://utkarshdangarh.hashnode.dev/understanding-javascript-execution-context-functional-execution-context-and-call-stack

Hashnode - javascript (Javascript)

Introduction JavaScript is a synchronous single threaded language which means It can execute one task at a time in particular order, To manage this execution order and track the state of functions being called, it utilises the concepts of execution c...


25: 237. Delete Node in a Linked List

https://outlierchronicles.hashnode.dev/237-delete-node-in-a-linked-list

Hashnode - python (python)

Problem Statement There is a singly-linked list head and we want to delete a node node in it. You are given the node to be deleted node. You will not be given access to the first node of head. All the values of the linked list are unique, and it is g...


26: ''DevSecOps End-to-End CI/CD with SonarQube, OWASP, Trivy, Docker, and Jenkins! '''

https://rahuldevops99.hashnode.dev/devsecops-end-to-end-cicd-with-sonarqube-owasp-trivy-docker-and-jenkins

Hashnode - javascript (Javascript)

Embark on a journey into the realm of DevSecOps as we engineer a comprehensive CI/CD pipeline fortified with cutting-edge security measures. Here's the breakdown: Prerequisites Before you begin, ensure that the following prerequisites are met: Creat...


27: Understanding How dict.get(key) Differs from dict[key]

https://lingarajtechhub.com/understanding-how-dictgetkey-differs-from-dictkey

Hashnode - python (python)

The difference between dict.get(key) and dict[key] lies primarily in how they handle missing keys. Using dict.get(key): Returns the value associated with the specified key. If the key is not found, returns None by default (or a specified default v...


28: Next.js error: "You're importing a component that needs next/headers"

https://tigerabrodi.blog/nextjs-error-youre-importing-a-component-that-needs-nextheaders

Hashnode - javascript (Javascript)

Introduction I had this error at work when working with Next.js You're importing a component that needs next/headers. That only works in a Server Component which is not supported in the pages/ directory.. We're using Next.js 14.1 with App router. I w...


29: WTF is an event loop in Javascript

https://sathwikreddygv.blog/wtf-is-an-event-loop-in-javascript

Hashnode - javascript (Javascript)

You probably already know that JavaScript is a single-threaded language as you read this blog. However, JavaScript can carry out asynchronous actions that may appear to be occurring in parallel. JavaScript accomplishes this with the assistance of som...


30 / 42

30: Cette faille Android menace votre smartphone'! Microsoft sonne le tocsin

https://www.lebigdata.fr/cette-faille-android-menace-votre-smartphone-microsoft-sonne-le-tocsin

Le Big Data (dataviz)

Votre système Android n'est plus sécurisé. Des spécialistes ont décelé des vulnérabilités ouvrant la voie vers vos données personnelles. Tout … Cet article Cette faille Android menace votre smartphone'! Microsoft sonne le tocsin a été publié sur LEBIGDATA.FR.


31: How Python internally works'

https://notaprogrammer.hashnode.dev/how-python-internally-works

Hashnode - python (python)

Unlike others, python internal working is quite different than others programming language so let's see the process step by step:- 1)Code Editor:- The first stage of program where we write our source code. This is human-readable code written accordin...


32: [DAY 18-20] I Built A Game & A Calorie Counter In Javascript

https://thomaslearnscoding.hashnode.dev/day-18-20-i-built-a-game-a-calorie-counter-in-javascript

Hashnode - javascript (Javascript)

Hi everyone! Welcome back to my blog where I document the things I learned in web development. I do this because it helps retain the information and concepts as it is some sort of an active recall. On days 18-20, I built a text-based role-playing gam...


33: How to Install Nuxtlabs UI in NuxtJS

https://web250.hashnode.dev/how-to-install-nuxtlabs-ui-in-nuxtjs

Hashnode - vuejs (Javascript)

In this tutorial, I will show you how to install Nuxtlabs UI in Nuxt 3. Create Nuxtjs Project Run below command in terminal to install nuxt 3 project. # using npx npx nuxi@latest init # using pnpm pnpm dlx nuxi@latest init


34: Useful Web APIs For Your Next Project

https://blog.blakeyeboah.com/useful-web-apis-for-your-next-project

Hashnode - javascript (Javascript)

There are plenty of native web APIs that have a variety of uses. Here are 5 useful APIs that I use quite often in my web development projects. Clipboard API The clipboard API is a simple method to copy text to a user's clipboard. This can be used in ...


35: Beginner's Guide to IndexedDB: Illustrated with Easy-to-Follow Block Diagrams

https://bits2bytes.hashnode.dev/beginners-guide-to-indexeddb-illustrated-with-easy-to-follow-block-diagrams

Hashnode - javascript (Javascript)

What is IndexedDB' In simple terms, IndexedDB is a client-side storage technique like LocalStorage and SessionStorage. But what sets it apart and makes it far more powerful than the other alternatives is it's: Ability to manage large amounts of stru...


36: Basics Of Css

https://chinababu.hashnode.dev/basics-of-css

Hashnode - javascript (Javascript)

What is CSS ' CSS (Cascading style sheets)is a simply designed language intended to simplify the process of making web pages presentable. CSS allows you to apply styles to HTML documents. It describes how a webpage should look. It prescribes colors, ...


37: ' Reproducible Nx Workspace with HugeNx's Conventions

https://gelinjo.hashnode.dev/reproducible-nx-workspace-with-hugenxs-conventions

Hashnode - javascript (Javascript)

After migrating multiple organizations to an Nx Monorepo and maintaining it, I discovered that with each major Nx version, I was generating a new repository on the side, mimicking my existing repo, to compare configuration files and ensure they match...


38: Learn How to Make a Deep Copy of a Dictionary Easily

https://lingarajtechhub.com/learn-how-to-make-a-deep-copy-of-a-dictionary-easily

Hashnode - python (python)

To create a deep copy of a dictionary in Python, you can use the copy.deepcopy() function from the copy module. This function recursively creates copies of all nested objects within the dictionary, ensuring that changes made to the original dictionar...


39: Essential Front-End Interview Topics Explained day 3

https://gautammakavana.hashnode.dev/essential-front-end-interview-topics-explained-day-3

Hashnode - javascript (Javascript)

Explain the concept of hoisting in JavaScript. Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase, allowing them to be used before they are declared....


40 / 42

40: Running Python script with aws lambdas

https://inzamamvirk.live/running-python-script-with-aws-lambdas

Hashnode - python (python)

As a software engineer sometimes you have to write a script to add or update some records which you don't want to handle in your codebase. For a few records, you can run your script locally even for hundreds of records you can use multithreading but ...


41: Set up Jupyter Notebook within an isolated Python environment

https://vipinmp.hashnode.dev/set-up-jupyter-notebook-within-an-isolated-python-environment

Hashnode - python (python)

Prerequisite: Confirm pip3 and python3 are correctly installed. python3 --version pip3 --version Step 1: Install Python virtual environment pip3 install virtualenv Step 2: Create a Virtual environment and activate it. virtualenv mytestvenv source...


42: Canonical Called Out For 'Microsoft-Esque Arrogance' In Ubuntu

https://www.webpronews.com/canonical-called-out-for-microsoft-esque-arrogance-in-ubuntu/

WebProNews SEO (Développement)

WebProNews Canonical Called Out For ‘Microsoft-Esque Arrogance’ In Ubuntu Canonical has been called out for making it harder than ever for users to install .deb, with It's FOSS News saying the company is displaying "Microsoft-esque arrogance." Canonical Called Out For ‘Microsoft-Esque Arrogance’ In Ubuntu Matt Milano




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