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

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


Lundi 26 Juin 2023 (140)

1: Live Regions in React

https://abbeyperini.hashnode.dev/live-regions-in-react

Hashnode - javascript (Javascript)

What is a Live Region' Accessible Rich Internet Applications (ARIA) is a set of roles and attributes you can add to HTML elements to give more information to the accessibility tree. Assistive technologies like a screen reader use the accessibility tr...


2: Javascript: How to use await in for loops

https://codingbites.info/javascript-how-to-use-await-in-for-loops

Hashnode - javascript (Javascript)

In Javascript we get the benefit of working with async with its API being fairly simple, allowing the slower task to run in parallel instead of in a series. However, if you are newish to programming, there are some easy traps to fall into. function m...


3: Efficiently Trapping Rainwater: A Two-Pointer Approach

https://tanvirux.hashnode.dev/efficiently-trapping-rainwater-a-two-pointer-approach

Hashnode - javascript (Javascript)

leetcode Problem: Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining. Introduction: Rainwater trapping is a common problem in algorithmic interviews and codin...


4: JavaScript iterations: for...in, for...of and forEach

https://gregarrific.hashnode.dev/javascript-iterations-forin-forof-and-foreach

Hashnode - javascript (Javascript)

As a JavaScript beginner, most people learn the basics of iterating over objects like arrays using while and for loops. Advancing beyond the basics adds some new options including for...in, for...of, and forEach. It may not always be clear which one ...


5: DAY 12 of PYTHON top 100 questions : from Basic to Advanced !!

https://priyachakraborty.hashnode.dev/day-12-of-python-top-100-questions-from-basic-to-advanced

Hashnode - python (python)

Write a Python program to Check whether the given number is prime or not. n=int(input("Enter the number: ")) if n < 2 : is_prime= False else: is_prime= True for i in range(2,int(n**0.5)+1): if n%i==0: is_prime= False...


6: Day 8 of learning JavaScript: Arrays and changes at the game

https://svensblog.hashnode.dev/day-8-of-learning-javascript-arrays-and-changes-at-the-game

Hashnode - javascript (Javascript)

Today, the first thing I learned was something that counts overall. There is a better way to select an HTML element than document.getElementById(): // old way document.getElementById("id") //new way document.querySelector("#id") //it's better, becau...


7: RxJS Operators: buffer

https://drownedintech.hashnode.dev/rxjs-operators-buffer

Hashnode - javascript (Javascript)

RxJS is a JavaScript library that enables the creation of asynchronous and event-based programs. The main type is the Observable and a suite of functions and operators are provided to make it easier to work with the data coming through. This series w...


8: CI/CD Pipeline with Git,Docker, Kubernetes on Google Cloud using Jenkins (Python application using MongoDB)

https://vishaljudoka.hashnode.dev/cicd-pipeline-with-gitdocker-kubernetes-on-google-cloud-using-jenkins-python-application-using-mongodb

Hashnode - python (python)

In this tutorial, we'll use Python FastAPI application with MongoDB, Jenkins, Docker, and Google Kubernetes to build an automated CI/CD pipeline. Every time you push new code to your GitHub repository, this pipeline will automatically build, test, an...


9: Enhancing Data Analysis with PandasAI

https://cognibits.hashnode.dev/enhancing-data-analysis-with-pandasai

Hashnode - python (python)

In the realm of Python libraries, PandasAI is a revolutionary tool that seamlessly integrates generative artificial intelligence capabilities into Pandas, transforming data frames into conversational interfaces. This integration enables users to inte...


10 / 140

10: Drawing the Hirst spot painting with python

https://backenders.hashnode.dev/drawing-the-hirst-spot-painting-with-python

Hashnode - python (python)

You might have heard of the famous Damien Hirst spot paintings that sold for a huge amount of money, what if you could make them using Python on your local machine. Requirements You need to have Python installed in your machine, an IDE(Integrated D...


11: YouTube Ads: Unlocking high impact at minimal cost

https://searchengineland.com/youtube-ads-unlocking-high-impact-minimal-cost-428567

Search engine land (Référencement)

The secret to creating high-reach, low-cost environments and making your campaigns more effective lies within four specific variables. The post YouTube Ads: Unlocking high impact at minimal cost appeared first on Search Engine Land.


12: Creating a simple Drawing App in flutter

https://minimalprojects.hashnode.dev/creating-a-simple-drawing-app-in-flutter

Hashnode - Flutter (Flutter)

Since we have to create an extremely simple drawing app, we will just keep it limited to being able to draw for now. What do we need' A Canvas to paint on A method to take user input Getting Started: We start by creating a new Flutter project (fo...


13: Numa Health lève 4 millions d'euros pour son application de médecine préventive

https://www.usine-digitale.fr/article/numa-health-leve-4-millions-d-euros-pour-son-application-de-medecine-preventive.N2146877

L'usine-digitale (Informatique)

La jeune pousse française Numa Health lève 4 millions d'euros pour accélérer la commercialisation de Health Pilot, son application de médecine préventive axée sur le stress physiologique. Elle veut également travailler sur une nouvelle activité de prédiction des pathologies, et s'internationaliser.


14: YouTube Test & Compare helps you pick the best video thumbnail

https://searchengineland.com/youtube-test-compare-video-thumbnail-tool-428672

Search engine land (Référencement)

The Test & Compare feature reveals which thumbnails drive the highest CTRs, enabling advertisers to make decisions based on data performance. The post YouTube Test & Compare helps you pick the best video thumbnail appeared first on Search Engine Land.


15: Improve Performances With Dynamic 'Content-Visibility'

https://brunosabot.hashnode.dev/improve-performances-with-dynamic-content-visibility-4393571472ae

Hashnode - javascript (Javascript)

Initial Considerations This article presents a few technologies that are only available on some browsers. This should not be considered as the solution you can use to solve all your performance issues but as the solution to improve some of your users...


16: An Alternative OpenAI API Client: Service Version

https://hashnode.pnambic.com/openai-api-client-service-version

Hashnode - python (python)

Introduction One thing about OpenAI, they have made an API that is very easy to use. Assuming that you are comfortable with Python, using their most common text completion API takes as little as two lines of Python: import openai response = openai....


17: Errors and Exceptions

https://bitsnotion.com/errors-and-exceptions

Hashnode - python (python)

Errors and Exceptions in Python are mechanisms for handling issues that arise during program execution. Errors indicate code issues that prevent successful execution, while exceptions are events that disrupt the normal flow of code. Error types Synta...


18: Exploring the Src vs. Public Dilemma: Where Should You Store Your Images in React'

https://dot-web.hashnode.dev/exploring-the-src-vs-public-dilemma-where-should-you-store-your-images-in-react

Hashnode - javascript (Javascript)

As React developers, we often face the question of where to store our images within our projects. Should we place them in the src folder, where our source code resides, or in the public folder, known for its static assets' In this article, we'll dive...


19: Automate Prettier, ESLint, Husky and Lint-Staged with a NextJS and Typescript Project

https://pratima-adhikari.hashnode.dev/automate-prettier-eslint-husky-and-lint-staged-with-a-nextjs-and-typescript-project

Hashnode - javascript (Javascript)

Recently, I had an exciting opportunity to work on an open-source project where I had the task of setting up a Next.js project with all the necessary tools like Prettier, ESLint, Husky, and Lint-Staged. It was a valuable learning experience, and now ...


20 / 140

20: Hello, Buddies!

https://luffyisalone.hashnode.dev/hello-buddies

Hashnode - javascript (Javascript)

My name is Saravanan and I'm a front-end web developer based in Banglore. I'm always on the lookout to expand my knowledge and skills in the latest web and mobile frameworks, such as React.js and React Native. That's why I started this blog - to shar...


21: Google dévoile le 1er robot capable de s'améliorer seul : la prochaine étape de l'IA '

https://www.lebigdata.fr/google-robot-autonome

Le Big Data (dataviz)

En appliquant la technologie d'IA derrière ChatGPT à la robotique, les chercheurs de Google DeepMind sont parvenus à créer un … Cet article Google dévoile le 1er robot capable de s’améliorer seul : la prochaine étape de l'IA ' a été publié sur LEBIGDATA.FR.


22: What is product operations (aka product ops)' Benefits, responsibilities

http://blog.logrocket.com/product-management/product-operations/

Log Rocket blog (Web 2)

Product ops helps to scale the product team, improves feature adoption, and accelerates feedback loops between product, engineering, and customer success teams. The post What is product operations (aka product ops)' Benefits, responsibilities appeared first on LogRocket Blog.


23: ClippingGPT : l'IA brésilienne qui a surpassé GPT-4

https://larevueia.fr/clippinggpt-lia-bresilienne-qui-a-surpasse-gpt-4/

La revue IA (data)

Article rédigé par Rafael Pinheiro Costa, traduit par Aelia Maury Clipping est une startup qui aide les candidats à exceller dans des examens hautement compétitifs. Avec un taux d'approbation de 94% à l'examen « Brazilian Diplomatic Career Examination », nous construisons avec l'IA et les interfaces conversationnelles dans l'éducation depuis 2018, lorsque nous avons remporté les Bot [&# [...]


24: From Sea to Shining Sea: How Does Shipping Work'

https://www.visualcapitalist.com/sp/how-does-shipping-work/

Visual Capitalist (dataviz)

The surface of Earth is covered by 71% water, so it's no surprise that over 80% of all trade is carried by ship. But how does shipping work' The post From Sea to Shining Sea: How Does Shipping Work' appeared first on Visual Capitalist.


26: The most common baby names are far less common these days

https://blog.datawrapper.de/the-most-common-baby-names-are-far-less-common/

Data Wrapper ()

Hi, this is Lisa! I’m responsible for communications at Datawrapper. And this is my first...


27: Building an online store platform using Appwrite and Flutter - LocalEase

https://asutosh.hashnode.dev/building-an-online-store-platform-using-appwrite-and-flutter-localease

Hashnode - Flutter (Flutter)

In this session, we will try making an online store platform connecting users with local shops and small businesses. The client application would have two interfaces, one for sellers and one for customers. Depending on the type of account you create ...


28: Databricks rachète MosaicML pour 1,3 Md$

https://www.lemondeinformatique.fr/actualites/lire-databricks-rachete-mosaicml-pour-1-3-md%24-90842.html

Le monde informatique (Internet / Informatique)

Le secteur de l'IA générative est en pleine effervescence. Après une vague d'investissements dans différentes start-up (...)


29: Qwik introduction - a framework that goes FAST

https://balastrong.hashnode.dev/qwik-introduction-a-framework-that-goes-fast

Hashnode - javascript (Javascript)

On June 14th I've been in Florence to attend an amazing workshop about Qwik, held by Misko Hevery, the creator of Qwik, and Giorgio Boa, a Qwik core contributor and advocate. In case Misko's name sounds familiar to you, he is also the creator of Angu...


30 / 140

30: How to draw HUSH

https://feeds.feedblitz.com/~/748900181/0/tanglepatterns~How-to-draw-HUSH.html

TanglePatterns (Zentangle)

Online instructions for drawing CZT® Jody Genovese's Zentangle® pattern: Hush. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


31: Les Comptoirs Octo : La formation au c'ur de la stratégie d'éco-conception de l'infra

https://blog.octo.com/les-comptoirs-octo-la-formation-au-coeur-de-la-strategie-deco-conception-de-linfra/

Octo (Internet)

Ce compte-rendu fait écho au replay vidéo de ce comptoir, prochainement disponible, animé par Brice Le Roux (consultant @ OCTO), ainsi que Frédéric Ménétrieux (architecte transverse CA-GIP). Le client CA-GIP, créé en Janvier 2019, regroupe 80% des productions informatiques et des infrastructures du groupe Crédit Agricole, incluant la gestion de 6 datacenters. Son métier : […] L'ar [...]


32: Quandela ouvre une usine à Massy pour industrialiser son ordinateur quantique optique

https://www.usine-digitale.fr/article/quantique-quandela-ouvre-une-usine-a-massy-pour-industrialiser-son-ordinateur-quantique-optique.N2146832

L'usine-digitale (Informatique)

La start-up tricolore Quandela passe du laboratoire à la production en ouvrant une usine à Massy pour son ordinateur quantique photonique. Elle compte ainsi livrer trois machines tous les six mois qui seront vendues en propre ou utilisée pour sa plateforme quantique sur le cloud.


33: Easy way to Solve Captcha Using JavaScript & 2Captcha

https://daslaw.hashnode.dev/easy-way-to-solve-captcha-using-javascript-2captcha

Hashnode - javascript (Javascript)

Introduction We've all encountered the frustration of seemingly endless Captcha challenges with no apparent solution. Whether it's deciphering distorted letters, jumbled numbers, or selecting images that fit certain criteria, these obstacles can grea...


34: Creating prototypes in Figma: How to quickly make effective prototypes

http://blog.logrocket.com/ux-design/creating-prototypes-figma/

Log Rocket blog (Web 2)

Figma's prototyping feature offers a range of tools to make the prototyping process smooth. Here's how to create prototypes in Figma. The post Creating prototypes in Figma: How to quickly make effective prototypes appeared first on LogRocket Blog.


35: IBM rachète Apptio, signant sa septième et plus importante acquisition de l'année

https://www.usine-digitale.fr/article/ibm-rachete-apptio-signant-sa-septieme-et-plus-importante-acquisition-de-l-annee.N2146797

L'usine-digitale (Informatique)

Le groupe informatique américain dépense 4,6 milliards de dollars pour mettre la main sur cet éditeur de logiciels spécialisé dans le contrôle des coûts dans le cloud.


36: Mastering Pandas: A Comprehensive Guide to Data Manipulation in Python

https://ayeshasiddiqha.hashnode.dev/mastering-pandas-a-comprehensive-guide-to-data-manipulation-in-python

Hashnode - python (python)

Introduction: Data manipulation is an essential part of every data analysis work, and Python has a sophisticated package called Pandas that makes the process easier. Mastering Pandas is vital for effective data manipulation and analysis, whether you ...


37: Google to deprecate Sitemaps ping endpoint later this year

https://searchengineland.com/google-to-deprecate-sitemaps-ping-endpoint-later-this-year-428661

Search engine land (Référencement)

Instead, Google is recommending an accurate lastmod date in your Sitemap file. The post Google to deprecate Sitemaps ping endpoint later this year appeared first on Search Engine Land.


38: [Algorithms] Complex Array

https://danakim.hashnode.dev/algorithms-complex-array

Hashnode - javascript (Javascript)

0'' : '' '''' '' '' arr' query' '''''. query' ''''' '' ''' '''''. '' '''''' arr'' query[i]' '''' '''' ''' query[i]' ''' '''' ''' ''''. '' '''''' arr'' query[i]' '''' '''' ''' query[i]' ''' '''' ''' ''''. ' ''' '' ' '' arr' '' ''' return '' solut...


39: Find Second Largest Element in an array

https://h4rsha.hashnode.dev/find-second-largest-element-in-an-array

Hashnode - javascript (Javascript)

Problem Statement: Given an array, find the second smallest and second largest element in the array. Print '-1' if either of them doesn't exist. Example: Example 1: Input: [1,2,4,7,7,5] Output: Second Smallest : 2 Second Largest : 5 Explanation: ...


40 / 140

40: Just JavaScript

https://articles.aishwaryablogs/just-javascript

Hashnode - javascript (Javascript)

As in my previous blog "Simplified JavaScript" you have seen why JavaScript is important and how it has become an integral part of web development. I have mentioned its functions and its features as a programming language so that before diving into i...


41: Declaring JSX types in TypeScript 5.1

http://blog.logrocket.com/declaring-jsx-types-typescript-5-1/

Log Rocket blog (Web 2)

We discuss a new TypeScript 5.1 feature: decoupled type-checking between JSX elements and JSX tag types. Learn what it is and why it matters. The post Declaring JSX types in TypeScript 5.1 appeared first on LogRocket Blog.


42: Unleashing the power of site reliability engineering (SRE)

http://blog.logrocket.com/product-management/site-reliability-engineering/

Log Rocket blog (Web 2)

Site reliability engineering (SRE) is a software management approach that seeks to bridge the gap between development and operations teams. The post Unleashing the power of site reliability engineering (SRE) appeared first on LogRocket Blog.


43: SEO SWOT analysis: How to optimize where it counts

https://searchengineland.com/seo-swot-analysis-focusing-efforts-improve-results-287197

Search engine land (Référencement)

Here's how to identify your business's strengths, weaknesses, opportunities and threats and determine where best to direct your SEO efforts. The post SEO SWOT analysis: How to optimize where it counts appeared first on Search Engine Land.


44: New ES6 string methods

https://karlakz.hashnode.dev/new-es6-string-methods

Hashnode - javascript (Javascript)

ES6 introduced new string methods such as startsWith(), endsWith(), includes(), padStart(), padEnd(), repeat(). To check if a string starts with a specified substring, use startsWith() . It returns true or false console.log("Atlanta, Ga".startsW...


45: Bibliotecas Python para DevOps

https://eriknathan.hashnode.dev/bibliotecas-python-para-devops

Hashnode - python (python)

A linguagem Python é amplamente utilizada para automação no contexto do DevOps, sendo considerada uma habilidade essencial para engenheiros que atuam nessa área. Neste artigo, iremos discutir algumas bibliotecas Python indispensáveis para profissiona...


46: Building Modern Web Interfaces: Unleashing the Power of Nuxt.js and Vuetify

https://radiantcodes.hashnode.dev/building-modern-web-interfaces-unleashing-the-power-of-nuxtjs-and-vuetify

Hashnode - vuejs (Javascript)

Introduction: In the world of Vue.js development, Nuxt.js and Vuetify have emerged as popular frameworks that offer incredible capabilities for building robust and visually stunning web applications. Nuxt.js, a framework based on Vue.js, provides a p...


47: Optimizing Fonts in Next.js: A Journey from the Library to the Web

https://emreturan.hashnode.dev/optimizing-fonts-in-nextjs-a-journey-from-the-library-to-the-web

Hashnode - javascript (Javascript)

Imagine you're a librarian, and your library is filled with books written in different languages and scripts. Each book represents a font, and the language or script it's written in represents the font's subset. Now, imagine your library is visited b...


48: Red Hat restreint l'accès au code source de RHEL

https://www.lemondeinformatique.fr/actualites/lire-red-hat-restreint-l-acces-au-code-source-de-rhel-90840.html

Le monde informatique (Internet / Informatique)

Un tour de vis supplémentaire pour Red Hat autour de sa distribution Enterprise Linux (RHEL). Dans un blog, Mike McGrath, vice-président (...)


49: RangeForce mesure la capacité des entreprises à se protéger des cyberattaques

https://www.lemondeinformatique.fr/actualites/lire-rangeforce-mesure-la-capacite-des-entreprises-a-se-proteger-des-cyberattaques-90838.html

Le monde informatique (Internet / Informatique)

La société RangeForce, spécialisée dans l'amélioration de la cyberdéfense, a annoncé le lancement (...)


50 / 140

50: Bad ways you're probably using react | part 3| Large Components'' '

https://daboigbae.hashnode.dev/bad-ways-youre-probably-using-react-part-3-large-components

Hashnode - javascript (Javascript)

Something I see a lot when inheriting projects from previous teams is the use of large components. Files with 500+, 1k+ or even 2k+ lines, aren't uncommon. It makes inheriting a project a lot harder since it's hard to follow what's going on. Here's w...


51: React: How I'd respond to the Task for Frontend Engineer!

https://13x.hashnode.dev/react-how-id-respond-to-the-task-for-frontend-engineer

Hashnode - javascript (Javascript)

It's June 26, 2023, and 2 AM and here I am writing a blog for my wonderful people who've been waiting for my next article to be published. This article is about how I faced a frontend task for the position of remote frontend engineer. Here's the sou...


52: How to Create a Donation Website with ReactJS, Sanity, and BudPay: A Step-by-Step Guide

https://reuben09.hashnode.dev/how-to-create-a-donation-website-with-reactjs-sanity-and-budpay-a-step-by-step-guide

Hashnode - javascript (Javascript)

A fantastic way to raise money for your cause is through donation websites. They make it simple for you to accept contributions from people all over the world and can be an effective tool for raising awareness of and support for your cause. In this a...


53: Les détails sur l'approche de Vision Pro vis-à-vis des limites de l'espace de jeu VR

https://www.realite-virtuelle.com/vision-pro-limites-de-lespace-de-jeu-vr/

realite-virtuelle.com (Réalité Virtuelle)

En raison d’un système de limites restrictives, les applications VR peuvent rencontrer plus de difficultés […] Cet article Les détails sur l’approche de Vision Pro vis-à-vis des limites de l’espace de jeu VR a été publié sur REALITE-VIRTUELLE.COM.


54: JavaScript - Basics to Advanced Flow

https://shrf.ai/javascript-basics-to-advanced

Hashnode - javascript (Javascript)

Introduction to JavaScript: Basic syntax and structure Variables and data types Operators and expressions Control flow (if statements, loops) Functions: Defining and invoking functions Parameters and return values Scope and closures Anonym...


55: Ultimate React Roadmap No one told you: Mastering React

https://harshalingole.hashnode.dev/ultimate-react-roadmap

Hashnode - javascript (Javascript)

Hello, fellow developers! While learning, working on real applications, and facing challenges, I discovered gaps in my understanding of React. I encountered difficulties due to the scattered and poorly structured knowledge available online which ofte...


56: Building a To-do app with PackageJS (Part 1)

https://ric-dev.hashnode.dev/building-a-to-do-app-with-packagejs-part-1

Hashnode - javascript (Javascript)

Prelude (ensure node is running in the virtual environment) It is important to note that after downloading the node-v14.18.2-linux-x64.tar.gz (for Linux) on your system, it is stored in the local storage, most likely the Downloads folder. so, you wil...


57: Pépi-Dev' veut accompagner 200 étudiants par an aux métiers du code

https://www.lemondeinformatique.fr/actualites/lire-pepi-dev-veut-accompagner-200-etudiants-par-an-aux-metiers-du-code-90821.html

Le monde informatique (Internet / Informatique)

Un an seulement après son lancement dans la région lyonnaise, le programme Pépi-Dev' vient d'être labellisé (...)


58: How Turbowatch compares to Nodemon

http://blog.logrocket.com/how-turbowatch-compares-nodemon/

Log Rocket blog (Web 2)

Compare the features and use cases for Nodemon and Turbowatch, two tools for file monitoring and application restarting in Node.js projects. The post How Turbowatch compares to Nodemon appeared first on LogRocket Blog.


59: Drawbacks of using AI tools in product management

http://blog.logrocket.com/product-management/drawbacks-of-using-ai-tools/

Log Rocket blog (Web 2)

Nowadays, AI is incredibly efficient ' so much so that members of product management teams might believe they can wholly depend on it for their work. The post Drawbacks of using AI tools in product management appeared first on LogRocket Blog.


60 / 140

60: How to use entities in schema to improve Google's understanding of your content

https://searchengineland.com/entities-seo-schema-google-content-428602

Search engine land (Référencement)

A step-by-step entity SEO guide for identifying the most relevant entities for your article and adding them to your schema markup.  The post How to use entities in schema to improve Google’s understanding of your content appeared first on Search Engine Land.


61: 8 façons de considéer les mauvais conseils sur l'IT

https://www.lemondeinformatique.fr/actualites/lire-8-facons-de-consideer-les-mauvais-conseils-sur-l-it-90823.html

Le monde informatique (Internet / Informatique)

Bienvenue dans l'âge d'or des experts. De nos jours, où que vous alliez dans le domaine des technologies de l'information, physiquement ou (...)


62: 8 façons de considérer les mauvais conseils sur l'IT

https://www.lemondeinformatique.fr/actualites/lire-8-facons-de-considerer-les-mauvais-conseils-sur-l-it-90823.html

Le monde informatique (Internet / Informatique)

Bienvenue dans l'âge d'or des experts. De nos jours, où que vous alliez dans le domaine des technologies de l'information, physiquement ou (...)


63: Python for Technical Writers: A Beginner's Guide

https://karanja.hashnode.dev/python-for-technical-writers-a-beginners-guide

Hashnode - python (python)

Introduction Getting started Installing python Installing an IDE Creating files The print function Strings in python Conclusion Introduction Newbie technical writers often question whether they need to understand programming for them to have...


64: Unleashing the Power of GraphQL: Revolutionizing Web Development

https://blog.arjunsingh.tech/unleashing-the-power-of-graphql-revolutionizing-web-development

Hashnode - javascript (Javascript)

Introduction Are you ready to take your web development skills to the next level' Look no further than GraphQL! In this blog post, we'll explore the ins and outs of GraphQL, a powerful query language for APIs. Brace yourself for an exciting journey a...


65: Fix React.useState using "as const"

https://blog.asciibi.dev/as-const-in-react

Hashnode - javascript (Javascript)

Let's take a typical React Component that fetches data from an external source and updates the UI based on the network state // Users.tsx import { useState, useEffect } from "react"; export const REQUEST_STATUS = { idle: "IDLE", pending: "PENDIN...


66: 3 Essential Design Trends, July 2023

https://www.webdesignerdepot.com/2023/06/3-essential-design-trends-june-2023/

Webdesigner depot (Design)

While the summer season seems to be the time when trends slow down some, there are still new things happening in website design. Often this is a season of design evolution, rather than complete overhauls of standard design practices.


67: Charted: Companies in the Nasdaq 100, by Weight

https://www.visualcapitalist.com/cp/nasdaq-100-companies-by-weight/

Visual Capitalist (dataviz)

Just seven companies make up over 50% of the Nasdaq 100 by weight, and most of them are from the technology sector. The post Charted: Companies in the Nasdaq 100, by Weight appeared first on Visual Capitalist.


68: Guide to Interfaces in Python

https://stackabuse.com/guide-to-interfaces-in-python/

Stack Abuse (Javascript)

Introduction As you likely know, Python is a dynamically-typed, object-oriented language loved for its simplicity and readability. Its unique approach to object-oriented programming is one of its many strengths. However, if you've previously worked with statically typed languages such as Java or C#, you might find Python's way of handling


69: How to master the enterprise SEO procurement process

https://searchengineland.com/enterprise-seo-tech-procurement-process-428621

Search engine land (Référencement)

Learn the ins and outs of the enterprise tech procurement process and tips for finding the right services and tools that support SEO efforts.  The post How to master the enterprise SEO procurement process appeared first on Search Engine Land.


70 / 140

70: Le vrai but de ChatGPT est de vous espionner selon cette experte : voici comment

https://www.lebigdata.fr/chatgpt-espionnage

Le Big Data (dataviz)

ChatGPT n'a rien de magique, mais repose sur une armée d'esclaves modernes et sa principale raison d'être est de permettre … Cet article Le vrai but de ChatGPT est de vous espionner selon cette experte : voici comment a été publié sur LEBIGDATA.FR.


71: Getting Started with React: Building User Interfaces Made Easy

https://quinnkiwalabye.hashnode.dev/getting-started-with-react-building-user-interfaces-made-easy

Hashnode - javascript (Javascript)

User interfaces are essential to the success of an application in the realm of web development. A strong and effective framework is needed to create interactive and aesthetically pleasing interfaces. React enters the picture in this situation. React,...


72: Les miroirs AR peuvent-ils être utilisés comme substituts aux magasins physiques '

https://www.realite-virtuelle.com/ar-store-zero10-substituts-aux-magasins-physiques/

realite-virtuelle.com (Réalité Virtuelle)

Dans les années à venir, il y a de fortes chances que le marché des […] Cet article Les miroirs AR peuvent-ils être utilisés comme substituts aux magasins physiques ' a été publié sur REALITE-VIRTUELLE.COM.


73: MFA Is Locking Out LastPass Users

https://www.webpronews.com/mfa-is-locking-out-lastpass-users/

WebProNews SEO (Développement)

WebProNews MFA Is Locking Out LastPass Users It has not been a good year to be a LastPass user, with many now reporting issues logging in due to a multi-factor authentication reset. MFA Is Locking Out LastPass Users Staff


74: Django: Building Web Applications with Python

https://quinnkiwalabye.hashnode.dev/django-building-web-applications-with-python

Hashnode - python (python)

Strong Python web framework Django is renowned for its high-level architecture and quick development capabilities. Django gives developers the tools they need to quickly build reliable and scalable web applications thanks to its simple, practical des...


75: Your Guide to Implementing Vue Placeholder Loading

https://renanfranca.hashnode.dev/your-guide-to-implementing-vue-placeholder-loading

Hashnode - javascript (Javascript)

Originally published at renanfranca.github.io In today's fast-paced digital world, user experience is paramount. As developers, we're always looking for ways to make our applications more responsive and enjoyable. One effective strategy to enhance th...


76: Attaque contre MOVEit : Sony, PWC, Norton et Calpers également victimes

https://www.usine-digitale.fr/article/attaque-contre-moveit-sony-pwc-norton-et-calpers-egalement-victimes.N2146657

L'usine-digitale (Informatique)

Le groupe de hackers russes Clop a publié une nouvelle liste de victimes de son attaque contre le logiciel de transfert de fichiers MOVEit. Il menace de partager les données qu'il a dérobées.


77: Unleashing JavaScript Runtime Environment Hidden Champion

https://championvikashblog.hashnode.dev/unleashing-javascript-runtime-environment-hidden-champion

Hashnode - javascript (Javascript)

The browser is capable of executing code because it contains a JavaScript runtime environment. Unlike a machine, a JavaScript engine can be thought of as a set of code written in a low-level language. JavaScript Interpreted or Compiled' JavaScript i...


78: 10 types of data that should be on your keyword clustering wish list by Nozzle

https://searchengineland.com/types-of-data-that-should-be-on-your-keyword-clustering-wish-list-428506

Search engine land (Référencement)

Use SERP data for keyword clustering to understand why URLs rank, what entities are used and the PAA/FAQ to answer. The post 10 types of data that should be on your keyword clustering wish list appeared first on Search Engine Land.


79: Day 34 of 100daysojs

https://arpanmukherjee.hashnode.dev/day-34-of-100daysojs

Hashnode - javascript (Javascript)

Table Navigation In this lesson, we will learn how to use table navigation to access the table element and its child nodes. We will also learn how to use table navigation to access the table rows and cells. Table Links Certain DOM elements may provid...


80 / 140

80: Autoflight va tester ses taxis volants à Paris lors des Jeux Olympiques de 2024

https://www.usine-digitale.fr/article/autoflight-va-tester-ses-taxis-volants-a-paris-lors-des-jeux-olympiques-de-2024.N2146737

L'usine-digitale (Informatique)

Les aéronefs d'Autoflight seront testés sans passagers lors des Jeux Olympiques de 2024 depuis le vertiport de Pontoise grâce à un partenariat signé avec le Groupe ADP.


81: Google Gloud a versé plus de 300 000$ de primes bug bounty en 2022

https://www.lemondeinformatique.fr/actualites/lire-google-gloud-a-verse-plus-de-300-000%24-de-primes-bug-bounty-en-2022-90836.html

Le monde informatique (Internet / Informatique)

Depuis 2017, Google n'a cessé d'augmenter le montant des primes distribuées aux découvreurs de plus de 2 900 vulnérabilités (...)


82: Google Gloud a versé plus de 300K$ de primes bug bounty en 2022

https://www.lemondeinformatique.fr/actualites/lire-google-gloud-a-verse-plus-de-300k%24-de-primes-bug-bounty-en-2022-90836.html

Le monde informatique (Internet / Informatique)

Depuis 2017, Google n'a cessé d'augmenter le montant des primes distribuées aux découvreurs de plus de 2 900 vulnérabilités (...)


83: XSS Vulnerability: A Quick Guide for Entry-Level Developers

https://blog.usamav.dev/xss-vulnerability-a-quick-guide-for-entry-level-developers

Hashnode - javascript (Javascript)

XSS aka Cross Site Scripting is one of the strong enemies of developers. It ruins the whole app. Let me explain: What's XSS btw' Imagine you have a magical input box on your website where users can leave comments. You as a developer expect a comment ...


84: Arnaque FranceConnect : gare à ces faux fonctionnaires voleurs de données !

https://www.lebigdata.fr/arnaque-franceconnect

Le Big Data (dataviz)

Méfiez-vous des escrocs de FranceConnect : ces imposteurs, véritables architectes d’arnaque, se faisant passer pour des fonctionnaires Cette fraude, qui … Cet article Arnaque FranceConnect : gare à ces faux fonctionnaires voleurs de données ! a été publié sur LEBIGDATA.FR.


85: JavaScript Objects: Real Life Objects, Properties, and Methods

https://iruemu.hashnode.dev/javascript-objects-real-life-objects-properties-and-methods

Hashnode - javascript (Javascript)

In JavaScript, objects are a fundamental concept used to represent real-life entities, their properties, and the actions they can perform. Let's explore how objects are defined, how properties are accessed, and how methods can be utilized. Object Def...


86: Tips to create a Modern animated gradient background website with React/Next.js 13 (very easy )

https://alimprodev.hashnode.dev/tips-to-create-a-modern-animated-gradient-background-website-with-reactnextjs-13-very-easy

Hashnode - javascript (Javascript)

Some people don't care about design until it's done poorly. -Evan Williams Here is a quick overview of the final result ' https://twitter.com/DevTaiAlain/status/1673085191881990144 Why does design matter more than ever in 2023' In the digital age...


87: CSS Webkits : A Complete Guide

https://yuvrajshrirame.hashnode.dev/css-webkits-a-complete-guide

Hashnode - javascript (Javascript)

CSS webkits are pre-defined sets of CSS properties and values designed to add unique and eye-catching effects to web pages. They are typically vendor-specific and can enhance the visual appeal of your website without relying on complex JavaScript or ...


88: Comment Nickel a réussi là où Orange Bank a échoué

https://www.usine-digitale.fr/article/comment-nickel-a-reussi-la-ou-orange-bank-a-echoue.N2146672

L'usine-digitale (Informatique)

Nickel, néobanque du groupe BNP Paribas, compte aujourd'hui 3 millions de clients en France et poursuit son développement international. Cette banque a réussi à être rentable, une rareté dans le secteur, grâce à un modèle original.


89: YouTube va proposer un outil pour comparer les performances des miniatures

https://www.blogdumoderateur.com/youtube-outil-comparer-performances-miniatures/

Blog du Moderateur ()

En phase d'expérimentation, la fonctionnalité permettra de comparer les performances de trois miniatures associées à une vidéo.


90 / 140

90: Deux fois moins de démence chez les seniors qui utilisent souvent Internet

https://www.rtflash.fr/deux-fois-moins-demence-chez-seniors-qui-utilisent-souvent-internet/article

Tregouet.org ()

Une nouvelle étude menée à long terme par des chercheurs de l'Université de New York sur 18 154 adultes a montré que les personnes âgées qui utilisaient régulièrement l'Internet avaient deux fois moins de risques de démence que celles qui n'étaient pas familières du Web. en lire plus


91: The Python Jobs Guide

https://pythonsden.hashnode.dev/python-jobs-guide

Hashnode - python (python)

Introduction Python is a flexible and potent programming language that has grown in popularity over the past few years. Python has grown to be a favourite among developers and businesses alike thanks to its ease of use, readability, and variety of ap...


92: Elon Musk vs Mark Zuckerberg : les milliardaires vont se battre et les paris sont ouverts

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

Le Big Data (dataviz)

Dans l’arène de l’innovation, une confrontation épique est sur le point de se dérouler : Elon Musk contre Mark Zuckerberg. … Cet article Elon Musk vs Mark Zuckerberg : les milliardaires vont se battre et les paris sont ouverts a été publié sur LEBIGDATA.FR.


93: [ML 2] 'Custom Linear Regression Class from scratch '

https://haochengcodedev.hashnode.dev/ml-2-custom-linear-regression-class-from-scratch

Hashnode - python (python)

'How to build a gradient-descent-based linear regression model' ' ' Define a prediction function using the weights. ' Update the weights through gradient descent. ' Compute the model costs J(w). ' Train the model over 100 iterations. ' Re...


94: 11. Simple Logic for Complex Password Generation

https://maroofs.hashnode.dev/11-simple-logic-for-complex-password-generation

Hashnode - javascript (Javascript)

Given a set of characters, generate a password with random characters from the set of characters, with the length of the password given by the user [which should be


95: Creating a React QR Generator

https://ananyawritescodes.hashnode.dev/creating-a-react-qr-generator

Hashnode - javascript (Javascript)

Introduction: In this tutorial, we will explore how to build a QR Code Scanner application using React. We'll cover everything from setting up the project to executing it, along with code snippets and explanations. By the end, you'll have a fully fun...


96: Offline data persistence in Flutter with Hive

https://adekunleadeyemo.hashnode.dev/offline-data-persistence-in-flutter-with-hive

Hashnode - Flutter (Flutter)

Introduction Offline mode is a crucial requirement for almost every app, from e-commerce apps to social media apps. This involves storing data locally on a user's device for later use. For example: Current logged-in user information like username, e...


97: IBM convoite Apptio pour 5 Md$

https://www.lemondeinformatique.fr/actualites/lire-ibm-convoite-apptio-pour-5-md%24-90835.html

Le monde informatique (Internet / Informatique)

De plus en plus de DSI cherchent à mieux contrôler les dépenses IT et évaluer notamment les coûts réels du cloud. (...)


98: IBM s'empare d'Apptio pour 4,6 Md$

https://www.lemondeinformatique.fr/actualites/lire-ibm-s-empare-d-apptio-pour-4-6-md%24-90835.html

Le monde informatique (Internet / Informatique)

De plus en plus de DSI cherchent à mieux contrôler les dépenses IT et évaluer notamment les coûts réels du cloud. (...)


99: Exploring Different Types of Dependency Injection in Kotlin

https://amanbhatt.hashnode.dev/exploring-different-types-of-dependency-injection-in-kotlin

Hashnode - Kotlin (Mobiles)

Dependency Injection (DI) is a popular design pattern used in software development to manage dependencies between different components of an application. It promotes loose coupling, modularity, and testability by allowing objects to be created and co...


100 / 140

100: Emobot, le robot qui décèle les signes de dépression chez les plus âgés

https://www.rtflash.fr/emobot-robot-qui-decele-signes-depression-chez-plus-ages/article

Tregouet.org ()

Imaginez une petite machine ressemblant à une enceinte connectée que l'on peut poser dans le salon ou la chambre d'une personne âgée. Grâce à une caméra et à un micro, la voix et les expressions du visage sont enregistrées et analysées par un programme d'intelligence artificielle pour y repérer des signes avant-coureurs d'anxiété ou d'apathie et aider les médecins à établir un diag [...]


101: Binance sommé de quitter la Belgique pour non-respect de la réglementation

https://www.usine-digitale.fr/article/binance-somme-de-quitter-la-belgique-pour-non-respect-de-la-reglementation.N2146647

L'usine-digitale (Informatique)

L'autorité des marchés financiers belge, la FSMA, a émis une injonction intimant à Binance de cesser immédiatement ses activités en Belgique. La plateforme de cryptomonnaies y fournirait ses services à partir de sociétés basées hors de l'Espace Économique Européen.


102: Recycler la terre d'excavation en isolant pour l'habitat

https://www.rtflash.fr/recycler-terre-d-excavation-en-isolant-pour-l-habitat/article

Tregouet.org ()

A la Colle-sur-Loup près de Nice, le thermomètre grimpe à 40 degrés les après-midi d'été. Mais Michel Daniel est sûr que ses maisons préfabriquées en panneaux de bois remplis d'un béton de terre, une première, se passeront de climatisation. Faites de bois, de terre et d'un peu de béton, les trois maisons, en cours de construction, tentent de conjurer les effets du réchauffement autou [...]


103: Comment digitaliser ses RH pour gagner en productivité

https://www.blogdumoderateur.com/comment-digitaliser-rh-gagner-productivite/

Blog du Moderateur ()

La gestion des tâches et processus RH est encore assez peu digitalisée, notamment dans les PME. Pourtant, utiliser les bons logiciels RH permet de gagner beaucoup de temps et de productivité.


104: Le CHU de Rennes victime d'une cyberattaque, des données dérobées

https://www.usine-digitale.fr/article/le-chu-de-rennes-victime-d-une-cyberattaque-des-donnees-derobees.N2146632

L'usine-digitale (Informatique)

L'établissement n'a pas encore déterminé si les données volées sont celles de ses patients. Il assure que l'impact de cette attaque sur son activité est limité.


105: Map of electric grid required for cleaner energy

https://flowingdata.com/2023/06/26/map-of-electric-grid-required-for-cleaner-energy/

Flowing data (dataviz)

To power the United States with more clean energy, you might think it’s…Tags: electricity, grid, New York Times


106: AMD présente les puces de la gamme Ryzen Pro 7040

https://www.lemondeinformatique.fr/actualites/lire-amd-presente-les-puces-de-la-gamme-ryzen-pro-7040-90794.html

Le monde informatique (Internet / Informatique)

AMD met les bouchées doubles avec ses derniers processeurs Ryzen Pro 7040 pour ordinateurs portables et desktops. Dans ces puces, le fabricant a (...)


107: Quandela ouvre une usine à Massy pour ses systèmes quantiques photoniques

https://www.lemondeinformatique.fr/actualites/lire-quandela-ouvre-une-usine-a-massy-pour-ses-systemes-quantiques-photoniques-90827.html

Le monde informatique (Internet / Informatique)

Celle qui n'était encore qu'une start-up couvée par l'Etat semble enfin prendre son envol. Quandela, la jeune pousse française (...)


108: Clonage de voix par IA : des risques croissants de fake news et d'escroqueries

https://www.blogdumoderateur.com/clonage-voix-ia-fake-news-escroqueries/

Blog du Moderateur ()

Alors que les yeux sont rivés sur les générateurs de texte et d'image par IA, les outils de clonage de voix se développent progressivement. On fait le point sur ce que cela implique.


109: Nissan Motor accélère dans le PLM pour ses logiciels embarqués

https://www.lemondeinformatique.fr/actualites/lire-nissan-motor-accelere-dans-le-plm-pour-ses-logiciels-embarques-90824.html

Le monde informatique (Internet / Informatique)

Les véhicules électriques représentent depuis longtemps un axe de croissance pour le constructeur japonais Nissan Motor, connu notamment (...)


110 / 140

110: Microsoft en première ligne dans les audits de licences

https://www.lemondeinformatique.fr/actualites/lire-microsoft-en-premiere-ligne-dans-les-audits-de-licences-90822.html

Le monde informatique (Internet / Informatique)

Le récent rapport de l'éditeur Flexera (lire SaaS, IaaS, PaaS, on-premise : un euro d'investissement sur trois est gaspillé) (...)


111: Jean-François Théard prend la présidence de Partitio

https://www.lemondeinformatique.fr/actualites/lire-jean-francois-theard-prend-la-presidence-de-partitio-90825.html

Le monde informatique (Internet / Informatique)

L'intégration de Partitio au sein Konica Minolta France a franchi une nouvelle étape, en l'occurrence celle du management. Devenue une (...)


112: DDN adopte la QLC sur sa baie de stockage HPC A1400x2

https://www.lemondeinformatique.fr/actualites/lire-ddn-adopte-la-qlc-sur-sa-baie-de-stockage-hpc-a1400x2-90833.html

Le monde informatique (Internet / Informatique)

Avec les développements tous azimuts des solutions IA génératives, les plateformes de traitement se bonifient pour faire face à (...)


113: Python for Beginners: Installing, Creating Virtual Environments, and Freezing Requirements Made Easy

https://davidmarquis.hashnode.dev/python-for-beginners-installing-creating-virtual-environments-and-freezing-requirements-made-easy

Hashnode - python (python)

Welcome to the world of Python! In this beginner's guide, we'll walk you through the steps of installing Python, creating virtual environments, and freezing requirements. Learning and understanding the role of virtual environments changed the way I s...


114: Étude 2023 : Comment travaillent les freelances et agences web en France '

https://wpmarmite.com/etude-freelance-agence/

WP Marmite (wordpress)

Si vous suivez WPMarmite ou mon compte personnel sur LinkedIn, vous avez dû voir passer l'étude de WP Umbrella sur l'état des agences et de freelances web en France, en collaboration avec Weglot. L'objectif de cette étude est de comprendre... Étude 2023 : Comment travaillent les freelances et agences web en France ' est un article de WPMarmite, le blog qui vous aide à tirer le meilleur de Wo [...]


115: Étude 2023 : Comment travaillent les freelances et agences web en France '

https://wpmarmite.com/etude-freelance-agence/

WP Marmite (wordpress)

Si vous suivez WPMarmite ou mon compte personnel sur LinkedIn, vous avez dû voir passer l'étude de WP Umbrella sur l'état des agences et de freelances web en France, en collaboration avec Weglot. L'objectif de cette étude est de comprendre... Étude 2023 : Comment travaillent les freelances et agences web en France ' est un article de WPMarmite, le blog qui vous aide à tirer le meilleur de Wo [...]


116: Freelance : 10 idées de publications efficaces sur LinkedIn

https://www.blogdumoderateur.com/freelance-idees-publications-efficaces-linkedin/

Blog du Moderateur ()

Partage d'astuces, rebond sur l'actualité : découvrez les formats de publications à privilégier en tant que freelance.


117: Photoshop : 10 erreurs courantes et comment les éviter

https://www.blogdumoderateur.com/photoshop-comment-eviter-erreurs-courantes/

Blog du Moderateur ()

Photoshop est un logiciel puissant mais complexe, au sein duquel il est rapidement possible de faire des erreurs longues à réparer. Voici comment les éviter !


118: Mastering JavaScript Array Methods: A Comprehensive Guide

https://divyeshgodhani.hashnode.dev/mastering-javascript-array-methods-a-comprehensive-guide

Hashnode - javascript (Javascript)

Introduction: Arrays are an essential part of JavaScript programming, and being proficient in working with arrays can greatly enhance your coding skills. In this blog post, we will dive into the world of JavaScript array methods. We will explore the ...


119: Choosing the Right Front-end Framework.

https://lindseyk.hashnode.dev/choosing-the-right-front-end-framework

Hashnode - vuejs (Javascript)

Frontend development has witnessed an explosion of frameworks, each offering unique features and advantages. With numerous options available, choosing the right front-end framework for your project can be a daunting task. In this blog post, we will e...


120 / 140

120: Closures in JavaScript

https://indracit.hashnode.dev/closures-in-javascript

Hashnode - javascript (Javascript)

A closure is the combination of a function bundled together (enclosed) with references to its surrounding state (the lexical environment). In other words, a closure gives you access to an outer function's scope from an inner function. In JavaScript, ...


121: Node.js VS Python - Which is More Preferable Backend Technology in 2023'

https://omdevsinh.hashnode.dev/nodejs-vs-python

Hashnode - python (python)

Python and Node.js are powerful programming languages that can be used for both frontend and backend applications. However, deciding on a backend technology for 2023 is a bit tricky. Therefore, in order to find out which is ideal for developing scala...


122: A better way to use Dotenv

https://hn.coderspirit.xyz/a-better-way-to-use-dotenv

Hashnode - javascript (Javascript)

Preface In the ever-changing world of NodeJS development, the choice of tools can profoundly impact a developer's journey. Among these tools, the dotenv package has long been a trusted partner, enabling developers to load environment variables from ....


123: Mastering React Forms: A Comprehensive Guide to User Input and Validation

https://gauravpatil.hashnode.dev/mastering-react-forms-a-comprehensive-guide-to-user-input-and-validation

Hashnode - javascript (Javascript)

Introduction: Forms play a vital role in capturing user input and enabling interactive functionality in React applications. In this article, we will delve into the fundamentals of building forms in React, handling form submissions, and implementing b...


124: Using Console in JavaScript

https://blogs.prahladinala.in/using-console-in-javascript

Hashnode - javascript (Javascript)

Introduction When we create front-end websites and applications, we work in the browser environment. We can use JavaScript to manipulate the DOM (Document Object Model) and display different elements and values, but many times, we just need a quick w...


125: Here's Why Flutter Is Now Ready to Build Enterprise Apps

https://xongolab.hashnode.dev/flutter-for-enterprise-app-development

Hashnode - Flutter (Flutter)

In today's fast-paced digital landscape, enterprise app development plays a pivotal role in enabling organizations to streamline their operations, enhance productivity, and deliver exceptional user experiences. Choosing the right technology stack for...


126: How To Avoid Breaking Your React Application On Production

https://blog.yogeshchavan.dev/how-to-avoid-breaking-your-react-application-on-production

Hashnode - javascript (Javascript)

https://www.youtube.com/watch'v=gVj84413hVg Do you know that your React app deployed on production can crash anytime due to unhandled errors' React Error Boundaries are here to save your day! Whenever any type of error happens during the renderi...


127: React: Make theme toggler with just 10 lines of code.

https://13x.hashnode.dev/make-theme-toggler-with-just-10-lines-of-code

Hashnode - javascript (Javascript)

Theming is an important feature in many applications, allowing users to customize the color scheme and improve accessibility. In this article, we'll build a theme toggler in React that can switch between a light and dark theme. Here's the live demo a...


128: Handling Secrets of a Django Application in Different Environments

https://diptonil.hashnode.dev/handling-secrets-of-a-django-application-in-different-environments

Hashnode - python (python)

Introduction We know that the development and production environments of an application are vastly different. We also know that it is a common habit among beginners to simply check their application secrets (such as the SECRET_KEY, database credentia...


129: How to Build a Weather Forecast App in Flutter using Geolocator and OpenWeather API

https://dreamspace.hashnode.dev/how-to-build-a-weather-forecast-app-in-flutter-using-geolocator-and-openweather-api

Hashnode - Flutter (Flutter)

Introduction In today's fast-paced world, having up-to-date weather information is crucial for planning our daily activities. Weather forecast apps provide us with real-time weather data, helping us make informed decisions. In this article, we will e...


130 / 140

130: Versioning Files with Python, IPFS, and Pinata: A Comprehensive Guide

https://ankuraxz.hashnode.dev/versioning-files-with-python-ipfs-and-pinata-a-comprehensive-guide

Hashnode - python (python)

In this digital era of decentralization, maintaining accurate and organized versions is vital for collaboration and data integrity. In this comprehensive guide, we delve into the powerful combination of Python, IPFS (InterPlanetary File System), and ...


131: Compact function

https://smavisswag.hashnode.dev/compact-function

Hashnode - python (python)

Removes falsey values from a list. Use filter() to filter out falsey values (False, None, 0, and ""). def compact(lst): return list(filter(bool, lst)) Here are the input and output: compact([0, 1, False, 2, '', 3, 'a', 's', 34]) # [ 1, 2, 3, 'a'...


132: Intale Python en Ubuntu / WSL

https://initcode.hashnode.dev/intale-python-en-ubuntu-wsl

Hashnode - python (python)

El propósito de este breve artículo es proporcionar instrucciones sencillas sobre cómo instalar Python en Ubuntu o Windows Subsystem for Linux. Sin embargo, estos pasos son aplicables a cualquier distribución de Linux, siempre y cuando ya hayas ident...


133: The making of EventGlee: A Full-stack application

https://oneharry.hashnode.dev/the-making-of-eventglee-a-full-stack-application

Hashnode - javascript (Javascript)

The big task in front of my software engineering career was to find a real problem and develop a software solution for this need. This did seem like a daunting task at that point, but my conviction about finishing up this task before the deadline was...


134: Electronic Data Bedroom Features

https://catswhocode.com/electronic-data-bedroom-features/

Cats who code (wordpress / Javascript / PHP)

There are a variety of virtual info room features that allow users to work quickly and proficiently. These features include file templates and drag-and-drop upload competencies. These features help to reduces costs of the process of populating a VDR with paperwork and simplifying complex file structures. Additionally, they make that easier to discuss content documents … Electronic Data Bedr [...]


135: Running both nodejs and bun apps in turborepo

https://mahmadrehan.hashnode.dev/running-both-nodejs-and-bun-apps-in-turborepo

Hashnode - javascript (Javascript)

So finally today, after a little bit of tinkering about, I figured out how to use a bun-powered app, simultaneously with my other nodejs apps in a turborepo. And so here I am, writing this article so that someone else who is seeking a solution on the...


136: Mapped: Average Internship Salary By U.S. State in 2022

https://www.visualcapitalist.com/cp/average-internship-salary-us-state/

Visual Capitalist (dataviz)

Which states and industries in the U.S. pay a good internship salary' Which pay the worst, or none at all' The post Mapped: Average Internship Salary By U.S. State in 2022 appeared first on Visual Capitalist.


137: Problems participants of hackathons struggle with

https://creativecoder.hashnode.dev/problems-participants-of-hackathons-struggle-with

Hashnode - javascript (Javascript)

Before we take part in any activity, we as humans usually want to know what we are really getting into and usually we do this by surveying the worst scenarios possible so we know what we could possibly lose. Many are scared of what they might face at...


138: Web Weekly 105 (blogPost)

https://www.stefanjudis.com/blog/web-weekly-105/

Stefan Judis (Développement)

Happy Monday, party people! 'Are you desperately waiting for CSS state queries' Do you wonder how to speed up your sites' Or do you want to know how to build web apps that work on flaky connections' This week's Web Weekly includes all the answers and much more. ' Roman Komarov published a real CSS custom property head-scratcher. [...]




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