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

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


Vendredi 20 Janvier 2023 (375)

1: Capital One Eliminates 1,100 Tech Jobs

https://www.webpronews.com/capital-one-eliminates-1100-tech-jobs/

WebProNews SEO (Développement)

WebProNews Capital One Eliminates 1,100 Tech Jobs Capital One has eliminated 1,100 agile tech jobs, part of its "overall tech transformation." Capital One Eliminates 1,100 Tech Jobs Staff


2: Understand Linked Lists in 5 Minutes [Python]

https://hello-dayana.hashnode.dev/understand-linked-lists-in-5-minutes-python

Hashnode - python (python)

What are Linked Lists' A linked list is like a sequence of nodes, where each node stores a value and a reference (or pointer) to the next node. What's a node' A node, in the context of linked lists, is an object with two global variables. One variabl...


3: State Of JS 2022: You Won't Believe What's New in the World of JavaScript

https://yshtyagi.hashnode.dev/state-of-js-2022

Hashnode - javascript (Javascript)

The regular introduction of new frameworks Astro, Remix, and Next.js (among others) and libraries in the JavaScript ecosystem are driving us to reassess how much code we genuinely need to deliver to the client. New front-end frameworks like Solid, Qw...


4: JavaScript Generator Functions: Zero to Hero

https://srjsdev.hashnode.dev/javascript-generator-functions

Hashnode - javascript (Javascript)

Welcome. Huh' You're going to teach me about something I don't absolutely need to know' Yes, that's right. Let me explain first, and then you can decide whether to read on or not. But if you stick around, I think you'll enjoy the ride while learning ...


5: Meaning of the Chinese New Year meal

https://flowingdata.com/2023/01/20/meaning-of-the-chinese-new-year-meal/

Flowing data (dataviz)

In celebration of Chinese New Year, Julia Janicki, Daisy Chung, and Joyce Chou…Tags: Lunar New Year, Taiwan Data Stories


6: TikTok has a secret 'Heating' (cheating') button

https://searchengineland.com/tiktok-has-a-secret-heating-cheating-button-391983

Search engine land (Référencement)

Employees of TikTok and ByteDance are misusing "heating" privileges by boosting the view count of their own and their loved ones' accounts in violation of company policies, as revealed by sources and documents reviewed by Forbes. The post TikTok has a secret “Heating” (cheating') button appeared first on Search Engine Land.


7: How to Convert an Image to ASCII Art With Python in 5 Steps

https://trandafire.hashnode.dev/how-to-convert-an-image-to-ascii-art-with-python-in-5-steps-efbac8996d5e

Hashnode - python (python)

In this simple and straightforward article, we'll convert an image into ASCII characters with Python. If you are a Junior developer looking for a new challenge, this might be a good exercise! 1. ASCII Characters Map Firstly, we'll create a String wit...


8: Day 15,Day16,Day17 task complete Day 15 Task: Python Libraries for DevOps

https://safiakhatoon.hashnode.dev/day-15day16day17-task-complete-day-15-task-python-libraries-for-devops

Hashnode - python (python)

Reading JSON and YAML in Python As a DevOps Engineer, you should be able to parse files, be it txt, JSON, YAML, etc. You should know what libraries one should use in Python for DevOps. Python has numerous libraries like os, sys, JSON, YAML etc tha...


9: Stop hardcoding your API keys

https://edgar.codes/stop-hardcoding-your-api-keys

Hashnode - python (python)

I've seen this scenario way too often and it merited me to make a post about it. Let's pose a real-life example. Imagine you are making a discord bot. After finding a discord library, say discord.py, you are eager to test the code to see if it works....


10 / 375

10: Access Our Exclusive Report and Upcoming '2023 Global Forecast' Webinar on VC+

https://www.visualcapitalist.com/access-our-exclusive-report-and-upcoming-2023-global-forecast-webinar-on-vc/

Visual Capitalist (dataviz)

See what the beginning of 2023 may hold, starting with our Global Forecast Report which summarizes hundreds of expert predictions. The post Access Our Exclusive Report and Upcoming ‘2023 Global Forecast’ Webinar on VC+ appeared first on Visual Capitalist.


11: Javascript ES6

https://codewithanjum.hashnode.dev/javascript-es6

Hashnode - javascript (Javascript)

JavaScript ES6, also known as ECMAScript 6 or ECMAScript 2015, is the latest version of JavaScript, the programming language that runs on web browsers and servers. ES6 introduces several new features and improvements that make JavaScript more powerfu...


12: Web Scraping Explained

https://sidddhesh.hashnode.dev/web-scraping-28be42832d40

Hashnode - python (python)

' What is Web Scraping' Web scraping, also known as data scraping, is the process of extracting and collecting data from the internet or websites. The scraped data can be saved on a local system or can be utilised for data analysis. Web scraping, fo...


13: Python in English: Simple Optimization 1

https://ezzescience.hashnode.dev/python-in-english-simple-optimization-1

Hashnode - python (python)

You've probably faced this scenario. Or not. But imagine you want to buy rice, beans and meat to cook, you know you need at least 1.5 kg of rice at 400 naira per kg but not more than 4kg, 1.5kg of beans at 800 naira per kg but not more than 3kg, and ...


14: The Drawbacks of Self-Learning in Tech

https://mickeythebrave.hashnode.dev/the-drawbacks-of-self-learning-in-tech

Hashnode - python (python)

Introduction I make no assumptions about you who are staring at your phone or computer reading this article right now, except that I'll pretend you've never heard of the term 'self-learn' before. If you really haven't come across that word or idea, y...


15: 14. Longest Common Prefix - JavaScript Solution - by Abu Saleh Faysal

https://abusalehfaysal.hashnode.dev/14-longest-common-prefix-javascript-solution-by-abu-saleh-faysal

Hashnode - javascript (Javascript)

After seeing the problem, I determined that iterating the first element of the array and iterating the whole array could be a straightforward approach to solving this problem. Solution: Step 01: declare a variable named "prefix" and set the initial v...


16: Day 7 of 100DaysOfCode

https://tanishastechhaven.com/day-7-of-100daysofcode

Hashnode - javascript (Javascript)

Today I Up until yesterday, I was watching a YouTube tutorial (crash course sorta thing) to learn JavaScript and I tried to make a simple game with it. But I didn't feel very confident in my understanding of the basics. So, I decided to switch to a c...


17: Async/Await in JavaScript

https://bobby-sadhwani.hashnode.dev/asyncawait-in-javascript

Hashnode - javascript (Javascript)

We use the then() and catch() method to handle promises. But we have another way of handling promises and that is async/await. Sometimes, using too many then() and catch() creates messy and unreadable code. async/await is just a more elegant way of h...


18: Is AI-written content replacing cheap old content farms'

https://searchengineland.com/is-ai-written-content-replacing-cheap-old-content-farms-391979

Search engine land (Référencement)

The Verge covers Red Ventures' use of AI to write content that ranks well in search at a low cost. The post Is AI-written content replacing cheap old content farms' appeared first on Search Engine Land.


19: 17 Productivity Tools to Improve your Developer Workflow ''

https://zordcoder.live/17-productivity-tools-to-improve-your-developer-workflow

Hashnode - javascript (Javascript)

In the fast-paced world of tech, developing an effective workflow has become more important than ever. Productivity has emerged as one of the most critical metrics to improve to beat the competition. In this article I have compiled some of the most u...


20 / 375

20: Async and await in JavaScript

https://prabeshbista.hashnode.dev/async-and-await-in-javascript

Hashnode - javascript (Javascript)

Having knowledge of async and await is definitely the biggest advantage a programmer can have. What exactly is an async, await in JavaScript' JavaScript uses something called Event Loop which takes every action to the stack to get the job done. Howev...


21: CSS nesting is coming

https://zordcoder.live/css-nesting-is-coming

Hashnode - javascript (Javascript)

While Browsing, I found a pleasant surprise: a little green flag in a red box for a feature I'd been waiting for a long time. CSS nesting will soon be supported on Chrome: Yes, it's behind a flag and only in future versions, but it is a huge step fo...


22: Python Facts.

https://thetarget018.hashnode.dev/python-facts

Hashnode - javascript (Javascript)

Do you know why python language called python' This name 'Python' is extracted from a British comedy series, 'Monty Python's Flying Circus'. It is not named a snake. It is said that this was the favorite series of its inventor Guido Van Rossum. He na...


23: Guerre des IA : Google DeepMind veut lancer son rival de ChatGPT dès 2023

https://www.lebigdata.fr/google-deepmind-sparrow-guerre-ia

Le Big Data (dataviz)

Face au succès viral de ChatGPT, DeepMind s’apprête à dévoiler Sparrow : son propre chatbot IA. Une bêta privée pourrait … Cet article Guerre des IA : Google DeepMind veut lancer son rival de ChatGPT dès 2023 a été publié sur LeBigData.fr.


24: What is a javascript Date Object'

https://daminda.hashnode.dev/what-is-a-javascript-date-object

Hashnode - javascript (Javascript)

JavaScript Date-object is a built-in object that stores date and time. It provides a variety of helpful methods for developers to set and get dates and times in different forms. It is useful to have some basic knowledge with regard to time zones and ...


25: I made a website to rickroll my friends

https://pranshujha.hashnode.dev/i-made-a-website-to-rickroll-my-friends

Hashnode - javascript (Javascript)

For a long time, I've wanted to use my skills for the greater good, like trolling my friends. But then I had a genius idea pop up in my head. What if there was a website that rickrolled you when you opened it' But there in fact were websites that r...


26: Report: Google search will debut chatbot features this year

https://searchengineland.com/google-search-chatbot-features-this-year-391977

Search engine land (Référencement)

Google has put A.I. 'front and center' and sought help from founders Larry Page and Sergey Brin on their A.I. strategy. The post Report: Google search will debut chatbot features this year appeared first on Search Engine Land.


27: Twitter Officially Changes TOS to Ban Third-Party Clients

https://www.webpronews.com/twitter-officially-changes-tos-to-ban-third-party-clients/

WebProNews SEO (Développement)

WebProNews Twitter Officially Changes TOS to Ban Third-Party Clients Twitter has finally broke its silence ' sort of ' on why third-party clients are not working, changing its TOS to ban them. Twitter Officially Changes TOS to Ban Third-Party Clients Matt Milano


28: How to draw ONEVY

https://feeds.feedblitz.com/~/725058185/0/tanglepatterns~How-to-draw-ONEVY.html

TanglePatterns (Zentangle)

Online instructions for drawing CZT® Lin Chiu's Zentangle® pattern: Onevy. To all our friends celebrating Chinese New Year: Wishing you good luck, good health and happiness this new year. Continue reading this article.TanglePatterns.com - An index and graphic guide to the best Zentangle® patterns on the web and how to draw them  


29: How to get your design system under control

https://blog.logrocket.com/ux-design/how-to-get-design-system-under-control/

Log Rocket blog (Web 2)

Keeping a design system up to date is a pain, but here are a few easy steps you can follow to get it under control. The post How to get your design system under control appeared first on LogRocket Blog.


30 / 375

30: The Key To Good Component Design Is Selfishness

https://smashingmagazine.com/2023/01/key-good-component-design-selfishness/

Smashing magazine (Web 2 / CSS)

In this article, Daniel Yuschick demonstrates that building selfish components is the key approach to avoiding different pitfalls on the way to good component design.


31: Businesses, users, and experts defend big tech against algorithm lawsuits.

https://searchengineland.com/businesses-users-and-experts-defend-big-tech-against-algorithm-lawsuits-391976

Search engine land (Référencement)

The outcome of this case could have significant implications for the way that internet companies operate, content curation, and free speech online. The post Businesses, users, and experts defend big tech against algorithm lawsuits. appeared first on Search Engine Land.


32: Javascript fundamentals

https://mcss55.hashnode.dev/javascript-fundamentals

Hashnode - javascript (Javascript)

Semicolon In javascript, we can write code repeatedly. Javascript separate each code with a semicolon (;) : console.log("Javascript"); console.log("Fundamentals"); We can also don't use semicolons. If we don't use semicolons we must write code li...


33: Telex : Le code source de Lisa d'Apple disponible, Shadow acquiert Genymobile, L'Open Metaverse Foundation créée

https://www.lemondeinformatique.fr/actualites/lire-telex-le-code-source-de-lisa-d-apple-disponible-shadow-acquiert-genymobile-l-open-metaverse-foundation-creee-89278.html

Le monde informatique (Internet / Informatique)

- Le code source de Lisa d'Apple disponible. A l'occasion du 40eme anniversaire de ce PC, le Computer History Museum a publié le code (...)


34: React dynamic theming without dependencies.

https://basssoft.hashnode.dev/react-dynamic-theming-without-dependencies

Hashnode - javascript (Javascript)

Working as a web developer, you will sooner or later come across a problem with theming. In my case, I had to implement a dark theme inside of an application that was already using SCSS variables. In my last project, SCSS variables theming worked wel...


35: JavaScript Functions: A detailed Guide

https://ashishjha14.hashnode.dev/javascript-functions-a-detailed-guide

Hashnode - javascript (Javascript)

Javascript is a programming language and it is highly dependent on functions like many other languages to make code more modular and concise. In functional Programming functions are pure Functions, which means if the input is not changed the output o...


36: ChatGPT lancé directement dans Linux avec une extension

https://www.lemondeinformatique.fr/actualites/lire-chatgpt-lance-directement-dans-linux-avec-une-extension-89284.html

Le monde informatique (Internet / Informatique)

Véritable phénomène de société, ChatGPT, l'agent conversationnel d'OpenAI séduit aussi bien les utilisateurs (...)


37: Reservoir refills in California

https://flowingdata.com/2023/01/20/reservoir-refills-in-california/

Flowing data (dataviz)

There’s been a lot of rain in California, which has been good to…Tags: California, drought, New York Times, rain


38: The flow of Code Execution in Javascript

https://ashishjha14.hashnode.dev/the-flow-of-code-execution-in-javascript

Hashnode - javascript (Javascript)

Javascript is a language designed for the Web, Everything that happens in it, happens in an Execution Context. If a program runs in javascript an execution context is created. Everytime an execution context is created it is created in two phases. Cre...


39: Building an Analogue Clock in JavaScript Day95

https://dheerajy1.hashnode.dev/building-an-analogue-clock-in-javascript-day95

Hashnode - javascript (Javascript)

Today #Day95 of #100DaysOfCode, I am coding and explaining by 'Building a Clock in JavaScript' taught by [WebDevSimplified]. HTML create a div with a class clock, create a separate div for each hand for the clock,


40 / 375

40: BeReal, Hive, Gas, de nouveaux réseaux sociaux pour informer différemment ' 

https://www.meta-media.fr/2023/01/20/bereal-hive-gas-de-nouveaux-reseaux-sociaux-pour-informer-differemment.html

Meta Media (Internet)

Moins d'algorithmes, plus de transparence - les nouveaux réseaux, s'ils sont encore parfois à l'état embryonnaire, pourraient représenter de nouvelles opportunités dans la communication des marques et des médias à destination des jeunes générations en quête d'authenticité.    Par Victor Lepoutre, Direction de l'Innovation  La génération Z ne va plus délibérément... The post BeR [...]


41: Manual removal of harmful text to train AI models

https://flowingdata.com/2023/01/20/manual-removal-of-harmful-text-to-train-ai-models/

Flowing data (dataviz)

AI training data comes from the internet, and as we know but maybe…Tags: AI, cleaning, ethics, OpenAI, Sama


42: How to use ChatGPT to web scrape EASILY

https://blog.adamelitzur.com/how-to-use-chatgpt-to-web-scrape-easily

Hashnode - javascript (Javascript)

By now you have probably heard of ChatGPT, the natural language processing chatbot, as it's been taking the world by storm. But did you know that ChatGPT can web scrape for you' Let's say I am trying to web scrape Reddit to get a list of the post nam...


43: Build a custom Python linter in 5 minutes

https://blog.sylver.dev/build-a-custom-python-linter-in-5-minutes

Hashnode - python (python)

Creating a custom linter can be a great way to enforce coding standards and detect code smells. In this tutorial, we'll use Sylver, a source code query engine to build a custom Python linter in just a few lines of code. Sylver's main interface is a R...


44: What is JavaScript '

https://sadikhzadafarid.hashnode.dev/what-is-javascript

Hashnode - javascript (Javascript)

JavaScript is a cross-platform, object-oriented, and scripting language, which is making webpages interactive. JavaScript has an advanced server version of Node.js, which is to allow you for making more interactive webpages more easily than downloadi...


45: Apple met de côté son projet de lunettes AR et se concentre sur son casque de réalité mixte

https://www.usine-digitale.fr/article/apple-met-de-cote-les-lunettes-ar-et-se-concentre-a-proposer-un-casque-de-realite-mixte-plus-abordable.N2091016

L'usine-digitale (Informatique)

Apple repousse la sortie de ses lunettes de réalité augmentée et se concentre sur une deuxième version de son casque de réalité mixte, moins complexe et plus abordable, qui devrait voir le jour fin 2024 ou début 2025.


46: Architecture Hexagonale & Clean architecture : bonnet blanc, blanc bonnet ' ' Compte-rendu du talk de Christophe Breheret-Girardin du Comptoir x La Duck Conf 2023

https://blog.octo.com/architecture-hexagonale-clean-architecture-bonnet-blanc-blanc-bonnet-compte-rendu-du-talk-de-christophe-breheret-girardin-du-comptoir-x-la-duck-conf-2023/

Octo (Internet)

Afin de pallier aux problèmes des architectures N-tiers, plusieurs alternatives ont émergé après les années 2000, dont l'architecture Hexagonale et la Clean architecture. Seulement, elles ne sont pas toujours bien comprises : pour expliquer l’une, certains utilisent parfois les termes de l’autre ; d'autres se basent sur des croyances plutôt que sur les publications d’origin [...]


47: Performance de l'Internet fixe 2022 : Free vire en tête sur la fibre

https://www.lemondeinformatique.fr/actualites/lire-performance-de-l-internet-fixe-2022-free-vire-en-tete-sur-la-fibre-89276.html

Le monde informatique (Internet / Informatique)

Publiant depuis 2009 un baromètre des connexions Internet et mobiles, nPerf (ex DegroupTest) vient de sortir sa dernière version pour l'année (...)


48: More Real-World Uses for :has()

https://css-tricks.com/more-real-world-uses-for-has/

css-tricks (CSS)

The :has() pseudo-class is, hands-down, my favorite new CSS feature. I know it is for many of you as well, at least those of you who took the State of CSS survey. The ability to write selectors upside down … More Real-World Uses for :has() originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter.


49: Using Contentful CMS with Next.js

https://blog.logrocket.com/using-contentful-cms-next-js/

Log Rocket blog (Web 2)

See how Contentful can be easily integrated into your Next.js app, enabling you to access and display content flexibly and dynamically. The post Using Contentful CMS with Next.js appeared first on LogRocket Blog.


50 / 375

50: La base de données managée Capella de Couchbase arrive sur Azure

https://www.lemondeinformatique.fr/actualites/lire-la-base-de-donnees-managee-capella-de-couchbase-arrive-sur-azure-89282.html

Le monde informatique (Internet / Informatique)

Couchbase, le fournisseur de bases de données NoSQL orientées documents, a annoncé l'ajout du support d'Azure à (...)


51: Add Additional Custom Row to DataTable at First

https://www.yourowncodes.com/add-additional-custom-row-to-datatable-at-first/

Your Own Codes ()

How to add custom additional row to datatable as first row means beginning of the table. The post Add Additional Custom Row to DataTable at First appeared first on YOC.


52: Apple planche sur plusieurs produits dédiés à la domotique

https://www.lemondeinformatique.fr/actualites/lire-apple-planche-sur-plusieurs-produits-dedies-a-la-domotique-89280.html

Le monde informatique (Internet / Informatique)

Si Apple s'est focalisé récemment sur les smartphones et les laptops, il s'intéresse aussi à la domotique comme (...)


53: Le Hand Tracking du Quest reçoit une mise à jour importante

https://www.realite-virtuelle.com/le-hand-tracking-2-0-une-mise-a-jour-importante/

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

 Le Hand Tracking 2.0 du Meta Quest bénéficie d'une mise à jour de qualité qui […] Cet article Le Hand Tracking du Quest reçoit une mise à jour importante a été publié sur Réalité-Virtuelle.com.


54: Javascript Control Flow Explained

https://diki.hashnode.dev/javascript-control-flow-explained

Hashnode - javascript (Javascript)

In JavaScript, control flow refers to the order in which the statements in a program are executed. The flow of control is determined by the structure of the program, using statements such as if, else, switch, for, while, and do-while. if statements ...


55: Quickly deploy JS apps with Cyclic. A free tier with no wake-up time... ''

https://kn8.hashnode.dev/quickly-deploy-js-apps-with-cyclic-a-free-tier-with-no-wake-up-time

Hashnode - javascript (Javascript)

Disclaimer: I am not affiliated with or paid by Cyclic, and this post is not a representation of them. I am simply a developer sharing a valuable resource with the community. Boring intro As a new developer, it is essential to have my existing projec...


56: [Podcast] Sortie de GitLab 15.7

https://lydra.fr/sortie-de-gitlab-15-7-trouvailles

Humancoders ()

Commentaires L'article [Podcast] Sortie de GitLab 15.7 a été posté dans la catégorie DevOps de Human Coders News


57: Manuel de survie de la femme dans la tech

https://www.duchess-france.fr/dossier/women%20in%20tech/alli?s/2023/01/15/manuel-survie-femme-tech.html

Humancoders ()

Je vois de plus en plus de femmes rejoindre l'informatique, et c'est une très bonne chose. Je vois aussi trop de femmes patir de sexisme ordinaire, se remettre en question encore et encore' et quitter le milieu au bout de quelques années. J'ai mis du temps à apprendre certaines choses. Je voudrais vous faire gagner ces dix ans, pour qu'on arrive à une parité réelle dans le secteur numérique [...]


58: javascript

https://javascript01.hashnode.dev/javascript

Hashnode - javascript (Javascript)

Javascript is the world's most popular programing language. It is easy to learn. this is a scripting language. Most websites or web pages are created using javascript. History of Javascript. JavaScript was invented by Brendan Eich in 1995. It was dev...


59: Building a Slack Bot for Fun and Profit: A Guide to Using Slack Bolt JS SDK

https://hamzawaleed.com/building-a-slack-bot-for-fun-and-profit-a-guide-to-using-slack-bolt-js-sdk

Hashnode - javascript (Javascript)

Hey there! Have you ever wanted to create your own Slack bot to automate some tasks or just have some fun with your team' Well, you're in luck because it's quite easy to do with the Slack Bolt JS SDK. In this post, I'll walk you through the process o...


60 / 375

60: Mastering Asynchronous JavaScript with Async and Await

https://blog.ahmedsuliman.com/mastering-asynchronous-javascript-with-async-and-await

Hashnode - javascript (Javascript)

Introduction Asynchronous programming is a crucial concept in JavaScript. It allows the language to handle multiple tasks simultaneously, rather than waiting for one to complete them before moving on to the next. This is particularly important in web...


61: Comment Flowlity facilite la gestion des stocks des industriels

https://www.usine-digitale.fr/article/flowlity-facilite-la-gestion-des-stocks-des-industriels.N2086806

L'usine-digitale (Informatique)

Fondée en 2019, Flowlity répond aux problèmes de stock des entreprises en s'appuyant sur l'intelligence artificielle. Après avoir utilisé la technologie pour s'adrersser aux besoins de la planification opérationnelle, la start-up lancera un nouvel outil en février, destiné cette fois aux managers chargés de piloter la supply chain.


62: Composition-based Classes in JavaScript & TypeScript

https://kirudev.hashnode.dev/composition-based-classes-in-javascript-and-typescript

Hashnode - javascript (Javascript)

Inheritance in JavaScript is unreliable. instanceof merely checks if a given object has another object in its prototype chain. But just because that object is present doesn't mean that the object ultimately hasn't overridden a property or method. Jav...


63: Le Forum économique mondial (WEF) a un plan pour réunir les organisations dans le metaverse

https://www.realite-virtuelle.com/le-forum-economique-mondial-wef-a-un-plan-pour-reunir-les-organisations-dans-le-metaverse/

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

Le Forum économique mondial (WEF) veut créer un metaverse à but non lucratif. Les organisations […] Cet article Le Forum économique mondial (WEF) a un plan pour réunir les organisations dans le metaverse a été publié sur Réalité-Virtuelle.com.


64: Using React Native VisionCamera: Demo and alternatives

https://blog.logrocket.com/react-native-visioncamera-demo-alternatives/

Log Rocket blog (Web 2)

We explore React Native VisionCamera as an alternative to the now-deprecated React Native Camera library by building a QR code scanner. The post Using React Native VisionCamera: Demo and alternatives appeared first on LogRocket Blog.


65: The Ultimate Developer's Handbook: 150+ Tips and Tricks for React, JavaScript, TypeScript, and Node.js

https://djaytechdiary.com/the-ultimate-developers-handbook-1

Hashnode - javascript (Javascript)

As a developer, it's essential to stay up-to-date with the latest industry trends and techniques to excel in your career. But with the fast-paced nature of the tech industry, it can be challenging to find the time and resources to do so. That's why I...


66: How to create an action plan (with template and examples)

https://blog.logrocket.com/product-management/how-to-create-action-plan-template-examples/

Log Rocket blog (Web 2)

An action plan is like a music sheet: if you have a defined set of notes, you know exactly what the music is going to sound like. The post How to create an action plan (with template and examples) appeared first on LogRocket Blog.


67: 13 key SEO metrics to track in 2023

https://searchengineland.com/seo-metrics-track-391864

Search engine land (Référencement)

The right SEO metrics to track will depend on your marketing goals. Get started with these useful metrics recommended by top SEO experts. The post 13 key SEO metrics to track in 2023 appeared first on Search Engine Land.


68: Meta sanctionné d'une amende de 5,5 millions d'euros pour manquement au RGPD

https://www.usine-digitale.fr/article/meta-sanctionnee-d-une-amende-de-5-5-millions-d-euros-pour-manquement-au-rgpd.N2090961

L'usine-digitale (Informatique)

La maison-mère de Facebook a de nouveau été sanctionnée pour son traitement des données personnelles, le 19 janvier. Il lui est cette fois reproché d'avoir utilisé celles-ci "à des fins d'amélioration du service et de sécurité", toujours sans le consentement des utilisateurs.


69: Javascript Promises

https://bobby-sadhwani.hashnode.dev/javascript-promises

Hashnode - javascript (Javascript)

A Promise is an object which is used to find out if the asynchronous operation is completed or not. The Promise object has two properties: state and result. State: pending: initial state, neither fulfilled nor rejected. fulfilled: meaning that the ...


70 / 375

70: How to properly organize your API EndPoints in Flutter

https://blog.albertobonacina.com/how-to-properly-organize-your-api-endpoints-in-flutter

Hashnode - Flutter (Flutter)

Hi everyone, in this post, I'll show you how I organize my API call in one class to manage my API endpoint better and pass parameters to them. If you've got an app that syncs or gets information from a third-party service you must call some API from ...


71: Get Kubernetes POD restart count with Python client

https://cylee.hashnode.dev/get-kubernetes-pod-restart-count-with-python-client

Hashnode - python (python)

It takes some time to search right keywords. #!/usr/bin/python3 import sys from kubernetes import client, config from kubernetes.client.api import core_v1_api from kubernetes.client import configuration def main(): config.load_kube_config("/ho...


72: Temporal Graph Neural Networks With Pytorch - How to Create a Simple Recommendation Engine on an Amazon Dataset

https://memgraph.hashnode.dev/temporal-graph-neural-networks-with-pytorch-how-to-create-a-simple-recommendation-engine-on-an-amazon-dataset

Hashnode - python (python)

PYTORCH x MEMGRAPH x GNN = ' Over the course of the last few months, we at Memgraph have been working on something that we believe could be helpful with classical graph prediction tasks. With our latest newborn query module, you will have the option...


73: Google rejoint la cohorte des plans sociaux et supprime 12 000 postes dans le monde

https://www.usine-digitale.fr/article/google-rejoint-la-cohorte-des-plans-sociaux-et-supprime-12-000-postes.N2090951

L'usine-digitale (Informatique)

Le groupe Alphabet, maison mère de Google, a annoncé le 20 janvier la suppression de 12 000 emplois à travers diverses filiales et différents pays. La même semaine que les 10 000 licenciements planifiés par Microsoft.


74: 21 Must Have JavaScript One Liners

https://jaxongir-rahimov.hashnode.dev/21-must-have-javascript-one-liners

Hashnode - javascript (Javascript)

Hi guys, in this post, I'm going to introduce JavaScript one liners that make you better JavaScript developer as they are very useful in most practical cases 1. Reverse a string const reverseString = (str) => str.split("").reverse().join(""); console...


75: 37 millions de comptes T-Mobile touchés par un piratage

https://www.lemondeinformatique.fr/actualites/lire-37-millions-de-comptes-t-mobile-touches-par-un-piratage-89269.html

Le monde informatique (Internet / Informatique)

Le 5 janvier 2023, T-Mobile US a identifié qu'un acteur malveillant est parvenu à obtenir des données via une seule API. Le résultat (...)


76: Snowflake s'empare de SnowConvert, une suite d'outils Mobilize.Net

https://www.lemondeinformatique.fr/actualites/lire-snowflake-s-empare-de-snowconvert-une-suite-d-outils-mobilizenet-89271.html

Le monde informatique (Internet / Informatique)

Cette semaine, Snowflake a annoncé avoir signé un accord définitif pour acquérir SnowConvert, une suite d'outils créée (...)


77: Bluebugging ou comment votre smartphone peut être piraté via Bluetooth

https://www.lebigdata.fr/bluebugging-smartphone-piratage-bluetooth

Le Big Data (dataviz)

Le bluebugging est un type piratage qui vise les appareils Bluetooth et principalement les smartphones. L'attaque peut sembler inoffensive au … Cet article Bluebugging ou comment votre smartphone peut être piraté via Bluetooth a été publié sur LeBigData.fr.


78: How Google's continuous scroll can impact SEO

https://searchengineland.com/google-continuous-scroll-seo-impact-391905

Search engine land (Référencement)

Ranking on Google's first page will be useless if there's only one page of search results. Learn what else can happen with this change. The post How Google's continuous scroll can impact SEO appeared first on Search Engine Land.


79: Le top des meilleurs clones de Pokémon surAndroid

https://www.realite-virtuelle.com/top-clones-de-pokemon-android/

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

Vous souhaiteriez jouer au jeu mobile Pokémon Go mais sortir dehors pour chasser ces petits […] Cet article Le top des meilleurs clones de Pokémon surAndroid a été publié sur Réalité-Virtuelle.com.


80 / 375

80: Javascript Guide: Basics of JS

https://anujnegi.hashnode.dev/javascript-guide-basics-of-js

Hashnode - javascript (Javascript)

Welcome ' to the world of JavaScript, the backbone of the interactive web. From simple button clicks to complex web applications, JavaScript brings websites to life. In this blog post, we will explore the basics of JavaScript and learn how to use it...


81: L'école de code 42 ouvre un 7e campus au Havre

https://www.lemondeinformatique.fr/actualites/lire-l-ecole-de-code-42-ouvre-un-7e-campus-au-havre-89275.html

Le monde informatique (Internet / Informatique)

Depuis sa création en 2013 par Xavier Niel le fondateur de Free, l'emblématique école d'informatique 42 n'a cessé (...)


82: Alphabet to lay off 12,000 roles across various product areas, levels, functions, and regions

https://searchengineland.com/alphabet-to-lay-off-12000-roles-across-various-product-areas-levels-functions-and-regions-391946

Search engine land (Référencement)

For the first time in the company's 25 year history, Google parent Alphabet has announced a mass layoff. The post Alphabet to lay off 12,000 roles across various product areas, levels, functions, and regions appeared first on Search Engine Land.


83: Rotating Twisted 3D Typography with Three.js and Shaders

https://tympanus.net/codrops/2023/01/20/rotating-twisted-3d-typography-with-three-js-and-shaders/

Codrops (Design / Internet)

A brief exploration into how to twist and rotate text in 3D using Three.js and Shader magic.


84: Case Study: ATMOS

https://www.awwwards.com/case-study-atmos.html

awwwards (Internet)

As creatives, we're lucky to have the Leeroy Lab, where we can get a bit crazy and experiment on things that inspire us technically or visually. As...


85: Unlocking the Power of Promises

https://blog.ahmedsuliman.com/unlocking-the-power-of-promises

Hashnode - javascript (Javascript)

Introduction: Asynchronous programming is a fundamental concept in JavaScript, and promises are one of the key tools used to handle it. In this post, we'll take a closer look at what promises are and how they work, and explore some of the ways they c...


86: my first js course!

https://machinecode.hashnode.dev/my-first-js-course

Hashnode - javascript (Javascript)

alright! I just finished my first JavaScript course with the help of Scrimba and freeCodeCamp! check out my Twitter account if you want! https://twitter.com/Matin200101


87: Why do you need multiple versions of Node.js on your PC and how to Install them'

https://chiragdogra.hashnode.dev/why-do-you-need-multiple-versions-of-nodejs-on-your-pc-and-how-to-install-them

Hashnode - javascript (Javascript)

You just found a "cool" open-source project on GitHub. You decided to contribute to it. You just forked the repo and cloned it in your system. And when you're trying to build it you're getting all sorts of colorful errors, exclaiming that the node ve...


88: Vous avez une box WiFi ' Les hackers peuvent voir à travers vos murs

https://www.lebigdata.fr/wifi-espionner-travers-murs

Le Big Data (dataviz)

Une équipe de chercheurs de la Carnegie Mellon University a créé un système permettant de voir les personnes à travers … Cet article Vous avez une box WiFi ' Les hackers peuvent voir à travers vos murs a été publié sur LeBigData.fr.


89: Use let Instead Of var Keyword

https://lets-do-this.hashnode.dev/use-let-instead-of-var-keyword

Hashnode - javascript (Javascript)

One of the biggest problems with declaring variables with the var the keyword is that you can easily overwrite variable declarations: var camper = "James"; var camper = "David"; console.log(camper); In the code above, the camper the variable is orig...


90 / 375

90: Learning JavaScript '' Know these things first

https://yogeesh.hashnode.dev/learning-javascript-know-these-things-first

Hashnode - javascript (Javascript)

JavaScript is a client-side programming language, meaning it runs in the user's web browser rather than on a server. JavaScript is primarily used to create interactive front-end web experiences, such as responsive forms and dynamic content. JavaScr...


91: Hoisting in javascript

https://myblog.omkar/hoisting-in-javascript

Hashnode - javascript (Javascript)

In JavaScript, hoisting is the behavior of moving variable and function declarations to the top of their scope. When a variable is declared with the var keyword, the variable is hoisted to the top of the current scope and is initialized with the valu...


92: Google annonce la suppression de 12 000 postes

https://www.lemondeinformatique.fr/actualites/lire-google-annonce-la-suppression-de-12-000-postes-89273.html

Le monde informatique (Internet / Informatique)

Le compteur des licenciements s'est brusquement accéléré cette semaine. En début de semaine, c'est Microsoft qui (...)


93: Do u need to be master in coding to become a web developer ''

https://blog.techlearnindia.com/do-u-need-to-be-master-in-coding-to-become-a-web-developer

Hashnode - javascript (Javascript)

As we all are familiar with web development still I want to remind you a little bit. Web development refers to the creating, building, and maintaining of websites. It includes different aspects such as web design, web publishing, web programming, and...


94: Sendinblue, spécialiste du marketing digital, dépasse les 100 millions d'euros de revenus annuels

https://www.usine-digitale.fr/article/le-francais-sendinblue-specialiste-du-marketing-digital-devient-centaure.N2090841

L'usine-digitale (Informatique)

Le français Sendinblue a annoncé hier avoir dépassé les 100 millions d'euros de chiffre d'affaires récurrent. L'éditeur de solutions SaaS, spécialisé dans le marketing digital, atteint ainsi le statut de "centaure".


95: JavaScript 101: Understanding Map and Set Data Types

https://hojaleaks.com/javascript-101-understanding-map-and-set-data-types

Hashnode - javascript (Javascript)

JavaScript's Map and Set data types are powerful tools that allow developers to store and manipulate data in a more efficient and organized way. Map A Map is a collection of key-value pairs where each key is unique. It is similar to an object in Java...


96: iPhone : 5 astuces pour prendre de meilleures photos et vidéos

https://www.blogdumoderateur.com/iphone-astuces-prendre-meilleures-photos-videos/

Blog du Moderateur ()

Découvrez quelques astuces pratiques pour améliorer votre prise de photos et de vidéos sur l'iPhone.


97: La France épargnée par le plan de licenciements d'Amazon

https://www.usine-digitale.fr/article/la-france-epargnee-par-le-plan-de-licenciements-d-amazon.N2090811

L'usine-digitale (Informatique)

La suppression de 18 000 emplois au sein d'Amazon ne touchera pas les effectifs français, selon les informations communiquées aux instances représentatives du personnel.


98: RGPD : l'UE inflige une nouvelle amende à Meta concernant WhatsApp

https://www.blogdumoderateur.com/rgpd-amende-meta-whatsapp-2023/

Blog du Moderateur ()

Meta écope d'une amende de 5,5 millions d'euros pour violation du RGPD concernant la messagerie WhatsApp.


99: HPE et Oracle clôturent discrètement le procès Solaris

https://www.lemondeinformatique.fr/actualites/lire-hpe-et-oracle-cloturent-discretement-le-proces-solaris-89270.html

Le monde informatique (Internet / Informatique)

Cette semaine, HPE et Oracle ont décidé de négocier pour clore la bataille sur le support du système d'exploitation Unix (...)


100 / 375

100: Handling Blob URL's in Flutter WebView

https://gayathridevisrinivasan.hashnode.dev/handling-blob-urls-in-flutter-webview-1

Hashnode - Flutter (Flutter)

Flutter is a popular open-source framework for building mobile and web applications. The WebView widget in Flutter allows you to display web content in your app. However, sometimes you may need to handle blob URLs in a WebView. A blob URL is a type o...


101: Nordpass : le choix numéro 1 des internautes pour une authentification sans mots de passe

https://www.lebigdata.fr/nordpass-authentification-sans-mots-de-passe

Le Big Data (dataviz)

Finis les mots de passe complexes et difficiles à retenir'! Avec NordPass, les internautes peuvent désormais bénéficier d’une authentification sans … Cet article Nordpass : le choix numéro 1 des internautes pour une authentification sans mots de passe a été publié sur LeBigData.fr.


102: Generate thumbnail from video using react custom hook

https://lukman.hashnode.dev/generate-thumbnail-from-video-using-react-custom-hook

Hashnode - javascript (Javascript)

Hi there, Good day. Today I will share with you how to create a thumbnail from a video file using the react.js custom hook. We all do video uploading while developing web applications. Usually, after uploading to the server, we take a cover photo of ...


103: How to use Gradient-Boosted Decision Trees in Python'

https://cryp.to/how-to-use-gradient-boosted-decision-trees-in-python

Hashnode - python (python)

Gradient-Boosted Decision Trees is one of the most popular techniques in machine learning and for a good reason. It is one of the most powerful algorithms in existence, works fast and can give very good solutions. In this article, we will look at how...


104: Mastering the V-Model in Vue 3: Building Reactive and Interactive User Interfaces

https://gmcodes.hashnode.dev/mastering-the-v-model-in-vue-3-building-reactive-and-interactive-user-interfaces

Hashnode - vuejs (Javascript)

The V-Model in Vue 3 is a powerful tool for building dynamic user interfaces. It allows developers to create reusable components that can be easily integrated into a variety of different applications. This article will take a closer look at the V-Mod...


105: All you need to know about JavaScript Array methods

https://nayem.hashnode.dev/all-you-need-to-know-about-javascript-array-methods

Hashnode - javascript (Javascript)

In this article, I will explain to you what JavaScript array is and why should you learn this, and show you some examples of the most commonly used array methods in JavaScript. So, let's get started. What is Array in JavaScript' In JavaScript, an arr...


106: How To Setup Automatic Redirects In Your React Application

https://octagon.hashnode.dev/how-to-setup-automatic-redirects-in-your-react-application

Hashnode - javascript (Javascript)

In today's article, I will show you how you can set up an automatic redirect to a secured/restricted page in your react application after the user is authenticated. INTRODUCTION Let's assume that in your app, you have a page that needs authentication...


107: Vue Localization - Internationalize with i18next

https://i18n.hashnode.dev/vue-localization-internationalize-with-i18next

Hashnode - javascript (Javascript)

Since Vue.js is an approachable, performant and versatile framework for building web user interfaces, it also needs a best-in-class internationalization solution. You may know vue-i18n, but for those who already know i18next a Vue.js adapted version ...


108: How to get the summary of a WordPress blog

https://ashokiyyanar.hashnode.dev/how-to-get-the-summary-of-a-wordpress-blog

Hashnode - python (python)

WordPress provides API to read the content of the site. I have written a python script that would pull the number of posts in the last x days with the author and post details as a summary. It takes 3 values as input; Site(WP backed) URL that we look...


109: Collective 748

https://tympanus.net/codrops/collective/collective-748/

Codrops (Design / Internet)

Annual Awards * GSAP Codepens 2022 * Precedent * Own Your Data * How To Make a Website


110 / 375

110: What is Local Storage in browsers and How can you use it'

https://ksridhar.xyz/what-is-local-storage-in-browsers-and-how-can-you-use-it-cld4aq0gc000l09jqdv8fg7f2

Hashnode - javascript (Javascript)

Basic Definition: The read-only localStorage property allows you to access a Storage object for the Document's origin; the stored data is saved across browser sessions. localStorage is similar to sessionStorage, except that while data stored in loc...


111: 4 Use Cases for reduce() in JavaScript

https://devlawrence.hashnode.dev/4-use-cases-for-reduce-in-javascript

Hashnode - javascript (Javascript)

Hey guys, In this article, we would continue our discussion on the reduce method but we are going to focus more on the use cases. As this is the second part of a two-series article, it is important that you've read the first part of the reduce method...


112: Votre voiture intelligente est-elle à l'abri des hackers '

https://www.lebigdata.fr/voiture-intelligente-hackers

Le Big Data (dataviz)

Dans quelle mesure votre voiture est-elle à l'abri des hackers ' Les systèmes connectés comme le GPS ou l'écran d'info-divertissement … Cet article <strong>Votre voiture intelligente est-elle à l’abri des hackers '</strong> a été publié sur LeBigData.fr.


113: JavaScript Interview Questions

https://kansi.hashnode.dev/javascript-interview-questions

Hashnode - javascript (Javascript)

Q1. why do we call javaScript a dynamic language' -> JavaScript is a dynamic language that means data types of the variable can change during the runtime. EX:- var x = 0 //number x ++; x = "text1"; // stirng x = true // boolean Q2. How does ja...


114: Execute command on Kubernetes POD(multiple containers) using Python client library

https://cylee.hashnode.dev/execute-command-on-kubernetes-podmultiple-containers-using-python-client-library

Hashnode - python (python)

Take note of this problem that takes two hours to Google the web. Environment setup I run on Ubuntu 22.04, so I assume you also run on Linux. # install Kubernetes Python client library pip3 install kubernetes Check Github for how to execute commands...


115: Everything you need to know about the reduce() method

https://devlawrence.hashnode.dev/everything-you-need-to-know-about-the-reduce-method

Hashnode - javascript (Javascript)

There are different high-order array methods in JavaScript, and we have discussed most of them in the past few weeks. But there is this particular high-order array method that was really difficult for me to grasp at first and I did not even know if I...


116: Serverless Technology

https://yellowgem.hashnode.dev/serverless-technology

Hashnode - javascript (Javascript)

The very first thought crosses our minds while hearing Serverless is there won't be any Servers , isn't it' Let me make it very clear,Serverless does not mean that there are No servers.Yes, the name Serverless is deceptive. Before going in more dep...


117: 5 podcasts pour les professionnels du marketing

https://www.blogdumoderateur.com/podcasts-marketing/

Blog du Moderateur ()

Voici notre sélection de podcasts pour suivre les dernières tendances marketing et découvrir des conseils d'experts !


118: History of JavaScript

https://poojamourya.hashnode.dev/history-of-javascript

Hashnode - javascript (Javascript)

Rendan Eich (born 1961) is a computer programmer and creat of the JavaScript scripting language. He is the chief technolog officer. JavaScript was originally developed by Brendan Eich of Netscape under the name Mocha, which was later renamed to LiveS...


119: Saaswedo, Taas et Mobility Plus fusionnent

https://www.lemondeinformatique.fr/actualites/lire-saaswedo-taas-et-mobility-plus-fusionnent-89268.html

Le monde informatique (Internet / Informatique)

Affichant la volonté de renforcer leur positionnement sur le marché de la gestion du digital workplace, les trois entreprises Saaswedo, Taas (...)


120 / 375

120: Vers un recul des ventes de serveurs en Europe en 2023

https://www.lemondeinformatique.fr/actualites/lire-vers-un-recul-des-ventes-de-serveurs-en-europe-en-2023-89264.html

Le monde informatique (Internet / Informatique)

En dépit de la situation économique et géopolitique, le marché européen des serveurs a enregistré une forte croissance (...)


121: La mauvaise qualité logicielle, un coût conséquent

https://www.lemondeinformatique.fr/actualites/lire-la-mauvaise-qualite-logicielle-un-cout-consequent-89263.html

Le monde informatique (Internet / Informatique)

Bugs à répétition, performances dégradées, failles débouchant sur des cyberattaques, retards dans les projets, (...)


122: IBM surprend avec une puce Power10 24 coeurs pour SGBD Oracle

https://www.lemondeinformatique.fr/actualites/lire-ibm-surprend-avec-une-puce-power10-24-coeurs-pour-sgbd-oracle-89265.html

Le monde informatique (Internet / Informatique)

Le mois dernier, IBM a discrètement annoncé qu'il prévoyait de commercialiser un processeur Power10 à 24 c'urs spécifiquement (...)


123: Unleashing the Power of ChatGPT API: A Look at the Various Ways it Can be Utilized

https://ghettotech.hashnode.dev/unleashing-the-power-of-chatgpt-api-a-look-at-the-various-ways-it-can-be-utilized

Hashnode - javascript (Javascript)

An API, or application programming interface, is a set of rules and protocols for building and integrating software applications. It allows different software systems to communicate with each other by specifying how data should be exchanged between t...


124: Objects in JavaScript

https://naveenpolasa.hashnode.dev/objects-in-javascript

Hashnode - javascript (Javascript)

Understanding Objects in JavaScript is very important as Objects and Arrays will be used extensively while working with JavaScript. Objects are nothing but the collection of a bunch of variables also called properties and methods Objects are declared...


125: CNET a laissé ChatGPT écrire ses articles, c'est un échec total

https://www.lebigdata.fr/cnet-chatgpt-echec-total

Le Big Data (dataviz)

Le site de la technologie en ligne CNET a récemment essayé d’utiliser l'IA ChatGPT pour écrire certains de ses articles. … Cet article CNET a laissé ChatGPT écrire ses articles, c'est un échec total a été publié sur LeBigData.fr.


126: October, Shark Robotics, Lizee... Les levées de fonds de la French Tech cette semaine

https://www.usine-digitale.fr/article/october-shark-robotics-lizee-les-levees-de-fonds-de-la-french-tech-cette-semaine.N2090606

L'usine-digitale (Informatique)

Les start-up de la French Tech ont levé plus de 62 millions d'euros cette semaine, d'après le décompte hebdomadaire d'eCAP PARTNER pour L'Usine Digitale.


127: "TypeError: Cannot convert object to float."

https://krieater.hashnode.dev/typeerror-cannot-convert-object-to-float

Hashnode - python (python)

"Why Your Image Data is Throwing a TypeError: Can't Convert Object to Float" When working with image data, it's common to run into an error message that reads "TypeError: Cannot convert object to float." This error occurs when you try to convert imag...


128: Introduction à Python : les variables

https://lushidev.com/introduction-a-python-les-variables

Hashnode - python (python)

Nous avons introduit dans le précédent article la présentation de Python et avons écrit notre premier programme. Dans cet article nous allons parler des variables, ce qu'elles sont, leur utilité et leur manipulation en Python. 1. Qu'est-ce qu'une var...


129: Why We Use Javascript in the Webpage and its Applications

https://kamilapreetisamuel.hashnode.dev/why-we-use-javascript-in-the-webpage-and-its-applications

Hashnode - javascript (Javascript)

JavaScript is a programming language that is commonly used in web development to add interactivity and dynamic functionality to web pages. Why JavaScript is used in web development includes: JavaScript makes the user experience more seamless and resp...


130 / 375

130: crossinline in Kotlin

https://amitshekhar.hashnode.dev/crossinline-in-kotlin

Hashnode - Kotlin (Mobiles)

I am Amit Shekhar, a mentor helping developers in getting high-paying tech jobs. Before we start, I would like to mention that, I have released a video playlist to help you crack the Android Interview: Check out Android Interview Questions and Answer...


131: The Modern JavaScript : Part 1

https://tarung.hashnode.dev/the-modern-javascript-part-1

Hashnode - javascript (Javascript)

An Introduction to JavaScript What is JavaScript' JavaScript is a scripting or programming language that allows you to implement complex features on web pages ' every time a web page does more than just sit there and display static information fo...


132: The Modern JavaScript : Part 1

https://tarungupta.com/the-modern-javascript-part-1

Hashnode - javascript (Javascript)

An Introduction to JavaScript What is JavaScript' JavaScript is a scripting or programming language that allows you to implement complex features on web pages ' every time a web page does more than just sit there and display static information fo...


133: Using setTimeout, setImmediate and setInterval on useEffect

https://asherl.com/using-settimeout-setimmediate-and-setinterval-on-useeffect

Hashnode - javascript (Javascript)

Scenario these can be used: httpError is cutting the execution of my useEffect instantly. If the httpError variable is cutting your useEffect right away, it likely means that the httpError variable is being set immediately and the effect is only runn...


134: Html, Css, Javascript

https://riyadhiryan.hashnode.dev/html-css-javascript

Hashnode - javascript (Javascript)

Content: HTML CSS JavaScript EcmaScript As we are going to understand HTML, CSS and JavaScript let's take an example to understand it. Just Suppose the Human body , The basic structure of the body is skeleton , Now the skeleton is HTML which ...


135: This day in search marketing history: January 20

https://searchengineland.com/search-marketing-history-january-20-391943

Search engine land (Référencement)

Matt Cutts forks guest blogging, plus: Semrush buys Backlinko, ranking factor study, a Google search quality rater interview and more. The post This day in search marketing history: January 20 appeared first on Search Engine Land.


136: CoffeeScript vs JavaScript'

https://pulkitgovrani.hashnode.dev/coffeescript-vs-javascript

Hashnode - javascript (Javascript)

What is JavaScript' It is a loosely typed language that is mainly used in development. We can use javascript both in frontend as well as backend development. The nature of programs is synchronous and they are executed line by line. You can run javasc...


137: Resetting form fields - a forwardRef use case

https://amandecodes.hashnode.dev/resetting-form-fields-a-forwardref-use-case

Hashnode - javascript (Javascript)

I encountered a seemingly common problem in one of the projects I was working on, which was to reset form fields to their default values with the click of a 'Reset' button. On first look, the solution appears to be straightforward right' You can go w...


138: Day 14 - Python while Loop

https://viveky.hashnode.dev/day-14-python-while-loop

Hashnode - python (python)

As the name suggests, while loops execute statements while the condition is True. As soon as the condition becomes False, the interpreter comes out of the while loop. Example: count = 5 while (count > 0): print(count) count = count - 1 Output: 5...


139: What is Full Stack Developer'

https://abhi18cs.hashnode.dev/what-is-full-stack-developer

Hashnode - javascript (Javascript)

Full Stack Developer=FrontEnd+BackEnd. A Full-Stack developer is a software developer who is proficient in both the Front-End and back-end aspects of web development. This typically includes expertise in HTML, CSS, JavaScript, and various programming...


140 / 375

140: WebGL. Or... how to draw a single point, the hard way.

https://blog.jrlgs.dev/webgl-or-how-to-draw-a-single-point-the-hard-way

Hashnode - javascript (Javascript)

This time let's start with WebGL. For today let's walk through setting up a project and writing a basic WebGL program. If you are familiar with Three.js, you will notice that WebGL is much much more low level. WebGL is just an API for using the GPU t...


141: 6 Tips To Save On Videography Services

https://www.bestfreewebresources.com/6-tips-to-save-on-videography-services

Best Free Web Resources (Veille)

Ideally, you don't want to scrimp on videography services for your wedding. After all, the videographer is responsible for documenting the entire day, giving you something tangible that allows you to relive your wedding day. However, wedding videography can be very expensive. Hiring a Vancouver wedding videographer can take up to 10% of your overall […] The post 6 Tips To Save On Videography [...]


142: I asked ChatGPT to give me a design system for Flutter

https://markangelohernandez.hashnode.dev/i-asked-chatgpt-to-give-me-a-design-system-for-flutter

Hashnode - Flutter (Flutter)

Flutter Design System Proposed Here is a basic design system that you can use in your Flutter app: Color palette: Choose a set of colors that will be used consistently throughout the app. This might include a primary color, secondary color, and acce...


143: 4 2023 Estate Planning Rules & Changes in California You Should Know

https://www.bestfreewebresources.com/4-2023-estate-planning-rules-changes-in-california-you-should-know

Best Free Web Resources (Veille)

When you first hear the term 'estate planning', you may assume that this is what wealthy people do when trying to decide who should inherit the numerous properties they have. Well, while you wouldn't be technically wrong, there is one thing that you absolutely need to be aware of. This type of planning is certainly […] The post 4 2023 Estate Planning Rules & Changes in California You Sh [...]


144: How to Work With Large Pandas Dataframes and Limited Memory.

https://analytics-ai.hashnode.dev/how-to-work-with-large-pandas-dataframes-and-limited-memory

Hashnode - python (python)

The default configuration when you read a dataframe is suitable for smaller datasets. But for larger datasets, you'd soon need more memory. This post describes compressing your dataframes to fit in your memory without losing any information. Do this ...


145: Traceroute command and how to read a traceroute

https://whatis.hashnode.dev/traceroute-command-and-how-to-read-a-traceroute

Hashnode - python (python)

On operating systems like Windows or Linux, there is an invaluable tool called the traceroute command (on Windows, the equivalent command is called tracert). This command-line tool enables system administrators or network engineers to troubleshoot co...


146: The Birch Gold IRA

https://www.bestfreewebresources.com/the-birch-gold-ira

Best Free Web Resources (Veille)

The Birch Gold IRA is an IRA account that allows you to store your IRA in a secure location and manage it with ease. You can invest in stocks, bonds, and more in this account and pay little or no setup and annual maintenance fees. Low fees If you’re looking for a way to diversify […] The post The Birch Gold IRA appeared first on Free Web Resources.


147: Combining iterators and generators in JavaScript

https://eddy.hashnode.dev/combining-iterators-and-generators-in-javascript

Hashnode - javascript (Javascript)

JavaScript is a powerful programming language that allows developers to work with a variety of data structures, including arrays and objects. One of the most useful features of JavaScript is the ability to iterate over these data structures using ite...


148: Google Dev Library Letters: Monthly Roundup 17

https://google-dev-library.hashnode.dev/google-dev-library-letters-monthly-roundup-17

Hashnode - Flutter (Flutter)

Check out the latest projects and community-authored content from https://goo.gle/DevLibrary . We hope this brings you the inspiration you need for your next project! Highlights of the Month Android Transformers by Daichi Furiya : See the Android t...


149: Six Essential AWS Services to Learn as a Flutter Developer

https://gayathridevisrinivasan.hashnode.dev/six-essential-aws-services-to-learn-as-a-flutter-developer

Hashnode - Flutter (Flutter)

As a Flutter developer, learning the ins and outs of Amazon Web Services (AWS) can be a game-changer for your app development projects. There are several things you should learn about AWS (Amazon Web Services) to build robust and scalable application...


150 / 375

150: Meetings For An Effective Eng Organization

https://lethain.com/eng-org-meetings/

pointer.io (Développement)

"I'd like to recommend 6 core meetings that I recommend every organization start with, and that I've found can go a surprisingly long way. These six are split across three operational meetings, two developmental meetings and finally a monthly engineering Q&A to learn what the organization is really thinking about." Will discusses each in depth. 


151: Awesome Design Patterns

https://github.com/DovAmir/awesome-design-patterns

pointer.io (Développement)

Curated list of software & architecture design patterns.


152: What Big Tech Layoffs Suggest For The Industry

https://newsletter.pragmaticengineer.com/p/what-big-tech-layoffs-suggest-for

pointer.io (Développement)

Gergely discusses rapid shifts in the engineering job market. "It's certain we'll see a correction of 2021-22's hiring frenzy and it's a given that Big Tech will hire much less this year than in 2022, while the question remains whether other large tech companies will follow suit and announce layoffs in the coming months."


153: How To Completely Own An Airline In 3 Easy Steps

https://maia.crimew.gay/posts/how-to-hack-an-airline/

pointer.io (Développement)

"I had trip sheets for every flight, the potential to access every flight plan ever, a whole bunch of image attachments to bookings for reimbursement flights containing yet again more PII, airplane maintenance data, you name it. I had owned them completely in less than a day, with pretty much no skill required besides the patience to sift through hundreds of results".


154: Why Your Team Should Be Using Just-in-Time Access

https://blog.symops.com/2022/10/28/just-in-time-access-least-privilege-cloud/?utm_campaign=nl-2&utm_medium=nl-paid&utm_source=pointer&utm_content=jit-blog-1

pointer.io (Développement)

Least privilege in the cloud is hard, but progress can be made by taking a risk-based approach. Consider an attacker who obtained one of your developer's credentials; what access would they have' By adding a temporal dimension to developer access policies, the attack surface can be significantly reduced for many security-breach scenarios. That's where just-in-time access comes in.


155: Things They Didn't Teach You About Software Engineering

https://vadimkravcenko.com/shorts/things-they-didnt-teach-you/

pointer.io (Développement)

(1) You rarely write something from scratch. (2) Domain knowledge is more important than your coding skills. (3) Writing documentation is not emphasized hard enough. (4) Code is secondary. Business value is first. (5) You'll need to work around incompetence. (6) You work with uncertainty most of the time. (7) Assume everything has bugs. And more.


156: A Few Programming Language Features I'd Like To See

https://neilmadden.blog/2023/01/18/a-few-programming-language-features-id-like-to-see/

pointer.io (Développement)

"I've long thought it was time for a bit more experimentalism to return to programming language design, and not just for type systems! Maybe these ideas will inspire you to think up some whacky new programming languages." Neil discusses E's quasi-literal syntax, Datalog / Prolog as a sub-language, Teleo-Reactive programs, and more.


158: Hello, PNG!

https://www.da.vidbuchanan.co.uk/blog/hello-png.html

pointer.io (Développement)

Davi discusses the mechanics of how PNGs functions:" I'm writing this article to fulfil my role as a PNG evangelist, spreading the joy of good-enough lossless image compression to every corner of the internet... I'll be referencing the Working Draft of the PNG Specification released in October 2022, but every feature I mention here should still be present in the 1.0 spec."


159: Docker-OSX

https://github.com/sickcodes/Docker-OSX

pointer.io (Développement)

Run Mac OS X in Docker with near-native performance. 


160 / 375

160: Let's Build GPT: From Scratch, In Code, Spelled Out

https://www.youtube.com/watch?v=kCc8FmEb1nY

pointer.io (Développement)

"We build a GPT, following the paper "Attention is All You Need" and OpenAI's GPT-2 / GPT-3. We talk about connections to ChatGPT, which has taken the world by storm. We watch GitHub Copilot, itself a GPT, help us write a GPT."


161: GitHub Readme Stats

https://github.com/anuraghazra/github-readme-stats

pointer.io (Développement)

Dynamically generated GitHub stats on your READMEs!


162: Les robots sortent des usines et s'imposent dans les métiers de services à la personne

https://www.rtflash.fr/robots-sortent-usines-et-s-imposent-dans-metiers-services-personne/article

Tregouet.org ()

Longtemps cantonnés dans les usines, les entrepôts, et les blocs opératoires, les robots sont en train de s'imposer dans l'ensemble des activités économiques, et notamment dans les secteurs de la livraison à domicile, de la restauration et de l'accueil, où la pénurie de main d'oeuvre est devenue chronique. Hyundai Motor Group vient de lancer deux projets pilotes de services de livraison du [...]


163: Why document.write() is bad

https://javascriptweekly.com/issues/622

javascriptweekly (Javascript)

#'622 ' January 20, 2023 Read on the Web JavaScript Weekly Why Not document.write()' ' Many moons ago, document.write was a mainstay of client-side JavaScript code, but it's long been considered a bad practice ' why' Harry digs in, noting that it 'guarantees both a blocking fetch and a blocking execution, which holds up the parser for far longer than necessary'. Harry Robe [...]


164: Multiple Python versions on Mac and how to set it up correctly

https://rtriangle.hashnode.dev/multiple-python-versions-on-mac-and-how-to-set-it-up-correctly

Hashnode - python (python)

Introduction It is possible to have multiple versions of Python installed on a single MacBook. This can be done by using a version manager such as conda or using virtual environments with appropriate Python versions for each of your specific tasks. S...




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