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

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


Samedi 19 Aout 2023 (321)

1: Unlocking the Magic of JavaScript Closure

https://seifmahdy.hashnode.dev/unlocking-the-magic-of-javascript-closure

Hashnode - javascript (Javascript)

In the realm of JavaScript programming, there exists a powerful concept that often confuses newcomers and even challenges experienced developers ' closures. At first glance, closures might seem like an enigmatic puzzle, but they reveal a world of ele...


2: Typed fetch with Sveltekit and Hono using RPC

https://spscodes.hashnode.dev/typed-fetch-with-sveltekit-and-hono-using-rpc

Hashnode - javascript (Javascript)

What is Hono' Hono is a fast and simple web framework that works in edge environments like Cloudflare Workers, Vercel Edge, etc. Its API is similar to that of express js, so if you have worked with express in the past, you can be productive with Hono...


3: 27 Native JavaScript Features for Type-Checking & Code Integrity

https://jordanbrennan.hashnode.dev/27-native-javascript-features-for-type-checking-code-integrity

Hashnode - javascript (Javascript)

JavaScript has many built-in features that increase the strictness and correctness of your code, including type-checking. Getting familiar with and using these features are critical to writing safe and robust code that's not going to fail at runtime....


4: Python's Greenhouse: Nurturing Growth with Nested Functions

https://thealgorithmicjourney.com/pythons-greenhouse-nurturing-growth-with-nested-functions

Hashnode - python (python)

Imagine you're a chef crafting a delicious dish. You have a main recipe, but within it, you might have smaller recipes for sauces or toppings. In the world of Python programming, nested functions work similarly. They allow you to create smaller, spec...


5: Shake It, Don't Break It

https://snegicodes.hashnode.dev/tree-shaking

Hashnode - javascript (Javascript)

In the realm of modern web development, optimizing the performance of our applications is a crucial task. One of the powerful tools that aids in achieving this optimization is the "Tree Shaking" algorithm. This seemingly magical process significantly...


6: Writing Pythonic Code Part I: A Guide to Idiomatic Python

https://chislaine.hashnode.dev/writing-pythonic-code-part-i-a-guide-to-idiomatic-python

Hashnode - python (python)

With its minimalist, readable syntax that looks like written English, Python is often the first programming language learned by new developers. However, those familiar with other programming languages frequently make the mistake of directly translati...


7: Writing Pythonic Code Part I: A Guide to Idiomatic Python

https://chiscodes.hashnode.dev/writing-pythonic-code-part-i-a-guide-to-idiomatic-python

Hashnode - python (python)

With its minimalist, readable syntax that looks like written English, Python is often the first programming language learned by new developers. However, those familiar with other programming languages frequently make the mistake of directly translati...


8: Unlocking the Hidden Secrets of How to Make Money Online (Yet Meaningfully)

https://www.smashingapps.com/how-to-make-money-online-but-meaningfully/

Smashing apps (Design / Internet)

Discover innovative ways to make money online and dive into the world of meaningful money-making opportunities. Unleash your potential and learn how to navigate the online landscape effectively.


9: The problem with the default alphabetical sort

https://fullchee.hashnode.dev/the-problem-with-the-default-alphabetical-sort

Hashnode - javascript (Javascript)

Problem The encoding for Ó is way after ASCII characters so it puts Ólafur at the end ['Ólafur', 'A', 'N', 'O', 'P', 'Z'].toSorted() // [ 'A', 'N', 'O', 'P', 'Z', 'Ólafur' ] Solution: Use Intl.Collator const collator = new Intl.Collator("en", { sens...


10 / 321

10: Don't misuse JavaScript Array map

https://thisurathenuka.hashnode.dev/dont-misuse-javascript-array-map

Hashnode - javascript (Javascript)

I've been using the JavaScript Array map() function whenever I needed to iterate an array and manipulate it. But today I learned that even though it gets the job done, it has some disadvantages. Usage map is a higher-order function in JavaScript sinc...


11: Understanding Value vs Reference: A Guide to Data Transfer and State Management in JavaScript and React Hooks

https://debasmitbiswal.hashnode.dev/understanding-value-vs-reference-a-guide-to-data-transfer-and-state-management-in-javascript-and-react-hooks

Hashnode - javascript (Javascript)

When you step into the world of programming, you encounter a fundamental concept: how data is transferred and manipulated. In JavaScript, the mechanisms of "passing by value" and "passing by reference" shape how variables and data structures are hand...


12: Mastering the Art of Communicating between Window postMessage and iframe in JavaScript: A Beginner's Guide

https://saurabhchirde.hashnode.dev/mastering-the-art-of-communicating-between-window-postmessage-and-iframe-in-javascript-a-beginners-guide

Hashnode - javascript (Javascript)

Window postMessage and iframe in JavaScript 1. Introduction When it comes to web development, JavaScript is an essential programming language that allows for dynamic and interactive websites. One particular aspect of JavaScript that developers need t...


13: Diving Deeper into JavaScript Arrays: Unleashing Their Power and Flexibility

https://kushal.com/diving-deeper-into-javascript-arrays-unleashing-their-power-and-flexibility

Hashnode - javascript (Javascript)

Mastering the Building Blocks: Navigating the Depths of JavaScript Arrays. Before diving into the intricacies of JavaScript arrays, let's establish a solid foundation by understanding what arrays are and how they work. What is a JavaScript Array ' At...


14: Extracting Meta Tag Information Using JavaScript

https://stackabuse.com/extracting-meta-tag-information-using-javascript/

Stack Abuse (Javascript)

Introduction When building, analyzing, or scraping web pages, it's often necessary to extract meta tag information. These tags provide data about the HTML document, like descriptions, keywords, author information, and more. In this Byte, we'll explain how to extract this data using JavaScript. Retrieving Meta Tag Data To retrieve meta


15: Why do you need the key prop when rendering lists'

https://blog.thecallum.com/why-do-you-need-the-key-prop-when-rendering-lists

Hashnode - javascript (Javascript)

Have you ever wondered why the key prop is so required when rendering lists in React' In this article, I will break down why you need to pass the prop, and what might happen when you don't. Rendering data from arrays Here is an example that I have pl...


16: Get the Root Project Directory Path in Python

https://stackabuse.com/get-the-root-project-directory-path-in-python/

Stack Abuse (Javascript)

Introduction When working with Python, you may need to access files that reside at different locations within your project directory. One common scenario is when you need to read or write data to a file that's located in your project's root directory, for example. In this Byte, we'll show how


17: [Fixed] The "ValueError: list.remove(x): x not in list" Error in Python

https://stackabuse.com/fixed-the-valueerror-list-remove-x-x-not-in-list-error-in-python/

Stack Abuse (Javascript)

Introduction In Python, or any high-level language for that matter, we commonly have to remove items from a list/array. However, you might occasionally encounter an error like ValueError: list.remove(x): x not in list. This error occurs when you try to remove an item from a list that


18: My Summer Internship with Summer of Bitcoin:

https://harshitvdev.hashnode.dev/my-summer-internship-with-summer-of-bitcoin

Hashnode - Flutter (Flutter)

Introduction: This summer, I had the incredible opportunity to be part of Summer of Bitcoin. It was a thrilling journey filled with learning, challenges, and growth, and I'm excited to share my story with you. Discovering CLNapp and More: At Summer o...


19: Understanding how global scope and function scope works in JavaScript: Variable and Scope

https://ayanpal.hashnode.dev/understanding-how-global-scope-and-function-scope-works-in-javascript-variable-and-scope

Hashnode - javascript (Javascript)

JavaScript has Global Scope in which the variable exists outside a function, is globally defined and is accessible from anywhere in the JavaScript program. Another scope of JavaScript is called Function Scope in which the variable exists inside the f...


20 / 321

20: A Comprehensive Guide to Creating a Scalable Folder Structure for Flutter Apps

https://yatendrakumar.hashnode.dev/a-comprehensive-guide-to-creating-a-scalable-folder-structure-for-flutter-apps

Hashnode - Flutter (Flutter)

Yo wassup flutter devs!!! Flutter, the UI toolkit from Google, has been gaining immense popularity among developers for its flexibility and efficiency. One of the challenges that developers often face when working with Flutter is organizing their pro...


21: Get Notified in Slack for Every New User Sign Up With Authgear

https://boburadvocate.hashnode.dev/get-notified-in-slack-for-every-new-user-sign-up-with-authgear

Hashnode - javascript (Javascript)

User sign-ups are a crucial aspect of most web applications, and keeping track of them can provide valuable insights. Getting notified when a new user signs up is not just about knowing the numbers, but also about immediate user engagement. For examp...


22: Navigating the World of Testing: A Journey into QA/QE.

https://mophat.hashnode.dev/navigating-the-world-of-testing-a-journey-into-qaqe

Hashnode - javascript (Javascript)

Hey there, fellow tech enthusiasts! ' I'm thrilled to share my journey through the Quality Assurance and Quality Engineering (QA/QE) cohort training at The Jitu. Strap in, because we're diving headfirst into the world of testing JavaScript-powered a...


23: Create a React Application in Your Current Directory

https://stackabuse.com/create-a-react-application-in-your-current-directory/

Stack Abuse (Javascript)

Introduction In this Byte we'll walk you through the process of creating a React app, from setting up your environment to actually creating the app. We'll try to make the process as straightforward as possible, even if you're new to React :) Prerequisites Before we start, there are a few things


24: Flattening Array of Arrays in TypeScript

https://stackabuse.com/flattening-array-of-arrays-in-typescript/

Stack Abuse (Javascript)

Introduction Working with arrays is an integral part of programming in TypeScript, and one of the most common tasks you might encounter is flattening an array of arrays. This process involves transforming a multidimensional array into a single-dimensional one, which can be a bit tricky if you're not familiar with


25: How CS50P Helped Me Become A Better Programmer

https://kharbanda25.hashnode.dev/how-cs50p-helped-me-become-a-better-programmer

Hashnode - python (python)

' CS50P is Harvard's Introductory Couse to Programming in Python There are dozens of blogs up on the internet suggesting why you should, or shouldn't, go for CS50P as a beginner in Python Programming. I'm not here to suggest you anything. In this ...


26: How CS50P Helped Me Become A Better Programmer

https://kblogs.com/how-cs50p-helped-me-become-a-better-programmer

Hashnode - python (python)

' CS50P is Harvard's Introductory Couse to Programming in Python There are dozens of blogs up on the internet suggesting why you should, or shouldn't, go for CS50P as a beginner in Python Programming. I'm not here to suggest you anything. In this ...


27: Zentangle® Project Pack 21 Summary ' Organic Tangles: Tangles of a Botanical Nature

https://feeds.feedblitz.com/~/785743178/0/tanglepatterns~Zentangle?-Project-Pack-Summary-Organic-Tangles-Tangles-of-a-Botanical-Nature.html

TanglePatterns (Zentangle)

Project Pack #21 ' Organic Tangles: Tangles of a Botanical Nature. This article provides detailed notes on each of the videos for this Zentangle Project Pack and makes it easy for you to find all the related videos and any parts of them you may wish to refer to again. Each full video can also be found on the corresponding tangle's page on...Continue reading ... »TanglePatterns.com - An [...]


28: Next.js 13 Routing Reference

https://mophat.hashnode.dev/nextjs-13-routing-reference

Hashnode - javascript (Javascript)

In Next.js 13, the app directory represents different pages of your website. Inside the app directory, each folder corresponds to a different page of your website. Within each folder, you can create a page.js or page.jsx file to hold your markup lo...


29: How to create virtual environment from terminal (command line)

https://learningwithfarzana.hashnode.dev/how-to-create-virtual-environment-from-terminal-command-line

Hashnode - python (python)

There are many reasons for creating virtual environment. I have mentioned two of them. In our system, there are different type of projects and they need different versions of packages or libraries. If we install all dependencies in our system direct...


30 / 321

30: Exploring the Boundless Scope of JavaScript

https://ankitbajpai1607.hashnode.dev/exploring-the-boundless-scope-of-javascript

Hashnode - javascript (Javascript)

JavaScript, the versatile and dynamic programming language, has emerged as the backbone of modern web development. Its incredible flexibility and wide array of use cases have led to its prominence not only in web development but also in a multitude o...


31: Understand The React flow and structure

https://nirmallyakoner.hashnode.dev/understand-the-react-flow-and-structure

Hashnode - javascript (Javascript)

This article is a summary of insights from a video by Hitesh Choudhary. https://youtu.be/yNbnA5pryMg Creating a React App can be achieved in several ways. One method involves directly installing all the necessary dependencies on my machine and then...


32: Understanding Virtual DOM and Its Working

https://mariyabaig.hashnode.dev/understanding-virtual-dom-and-its-working

Hashnode - javascript (Javascript)

Introduction to Virtual DOM Virtual DOM is a fundamental concept in web development that has significantly transformed the approach to building and optimizing modern web applications. It is a lightweight replica of the Actual DOM and helps in updatin...


33: Getting Started With Relay

https://loveotudorcodes.hashnode.dev/getting-started-with-relay

Hashnode - Kotlin (Mobiles)

Droiders, gather here! Do you ever get tired of the monotonous back-and-forth between yourself and designers when building Android UI' If so, then you need to check out Relay! Relay is a plugin that makes it possible to directly import Figma designs...


34: HTML vs DOM tree

https://ranjans.hashnode.dev/html-vs-dom-tree

Hashnode - javascript (Javascript)

a literal tree very unrelated to the DOM tree So I read this, "Keep in mind that the JavaScript does not alter your HTML, but the DOM - your HTML file will look the same, but the JavaScript changes what the browser renders." and thought this needed e...


35: How We Built Casia: A Deep Dive into Our AI Plant Care Assistant

https://farisology.com/how-we-built-casia-a-deep-dive-into-our-ai-plant-care-assistant

Hashnode - python (python)

I've always had a taste for fresh, leafy greens in my salads. Yet, as I embarked on my urban farming journey, I often found myself disappointed by the limited variety of fresh produce available in my local market. The store-bought options either lack...


36: The useState Hook

https://maanav.hashnode.dev/the-usestate-hook

Hashnode - javascript (Javascript)

Introduction In the realm of modern web development, creating dynamic and interactive UI is a challenge. React js has revolutionized this landscape with it's component based architecture. React provides us with a lot of tools to help build a dynamic ...


37: Objects and Arrays in JavaScript part-4

https://priyasarpate.hashnode.dev/objects-and-arrays-in-javascript-part-4

Hashnode - javascript (Javascript)

What is Object in: In the JavaScript data types tutorial, you learned about 7 different primitive data types. And here, you are going to learn about the eighth data type (JavaScript object). JavaScript object is a non-primitive data type that allows ...


38: How to install Python in Linux (Ubuntu)

https://neha99.hashnode.dev/how-to-install-python-in-linux-ubuntu

Hashnode - python (python)

Install Python in your respective OS, and check the version In DevOps python is used to automate manual things just like shell scripting. To install Python in Ubuntu, sudo apt-get install python3.6 Because we have installed python3.6, therefore we ...


39: Part 1: Building a self-help web app using Django

https://chopin.hashnode.dev/part-1-building-a-self-help-web-app-using-django

Hashnode - python (python)

Hey folks! I am Emre and this is my dev blog for what I hope is going to be my first product with real-world applications. I am new to coding and intend for this to be a learning experience. The product is an anxiety dashboard that I hope will help t...


40 / 321

40: Handling Errors in JavaScript: A Comprehensive Guide

https://talentseeker.hashnode.dev/handling-errors-in-javascript-a-comprehensive-guide

Hashnode - javascript (Javascript)

Don't throw an error, you had no plans of catching. Introduction In the world of programming, errors are inevitable. No matter how skilled a developer is, encountering errors is a common occurrence. The good news is that JavaScript offers powerful e...


41: JavaScript Tricky Interview Questions 2023

https://www.syntaxharmony.com/javascript-tricky-interview-questions-2023

Hashnode - javascript (Javascript)

A developer interview without JavaScript questions' That's hard to believe ' And it's not surprising tricky questions are asked from a few common categories in multiple interviews. But why do interviewers ask these questions' Because they often aris...


42: ' Set, Map & WeakMap in Javascript

https://devshekhawat.com/set-map-weakmap-in-javascript

Hashnode - javascript (Javascript)

Happy Saturday Devs! Let's start with a beautiful thought that just occurred to me while contemplating about mysteries of life, the universe and coding. https://twitter.com/devcodesthings/status/1692585121734615415 Now that it's out of the way, Let...


43: JavaScript Nested Cloning

https://abubakkersiddiq.hashnode.dev/javascript-nested-cloning

Hashnode - javascript (Javascript)

In JavaScript, objects and variables when the same value is assigned to multiple variables, then the reference (address) of the object is shared between the variables So, if you change the value of one property in one of the variables, that would in...


44: Simple Counter Application without Stateful widget and packages/plugins

https://panuj330.hashnode.dev/simple-counter-application-without-stateful-widget-and-packagesplugins

Hashnode - Flutter (Flutter)

Here, in this article, we will learn how to create a simple counter app using only stateless and streams. Model class Counter{ final int count; const Counter({required this.count}); Counter copyWith({required int count}){ return Counter(co...


45: Understanding Conditional Statements in JavaScript: if-else and switch Explained

https://islot.hashnode.dev/understanding-conditional-statements-in-javascript-if-else-and-switch-explained

Hashnode - javascript (Javascript)

Introduction Conditional statements play a crucial role in programming, allowing us to make decisions and control the flow of our code based on specific conditions. In JavaScript, two primary conditional statements are used: if-else and switch. In th...


46: Coroutines: Making Async Less Stress, More Progress!

https://shubhcode.hashnode.dev/coroutines-making-async-less-stress-more-progress

Hashnode - Kotlin (Mobiles)

Hey fellow Android developers! Today, let's dive deep into a powerful tool that can significantly improve the way we handle asynchronous tasks in our apps - coroutines. You've probably heard about them, but I want to take you beyond the basics and ex...


47: Mastering the Delegates Pattern in Android with Kotlin

https://kmdev.hashnode.dev/mastering-the-delegates-pattern-in-android-with-kotlin

Hashnode - Kotlin (Mobiles)

Welcome to this interactive blog where we will explore the delegates pattern in Android development using Kotlin. Delegates are like superheroes that help us separate concerns and promote code reusability. In this blog, we will dive into the delegate...


48: Chronologie des évènements avant le début de FINAL FANTASY X

https://blog.lesieur.name/chronologie-des-evenements-avant-le-debut-de-final-fantasy-x-ffx-zet-tic/

Quelques #id et beaucoup de .class (Javascript)

Dans cet article, nous allons détailler les évènements s'étant déroulés avant le début de FINAL FANTASY X. Nous allons nous appuyer sur le contenu des pages 80 et 81 du livre FINAL FANTASY X ULTIMANIA OMEGA. Chaque phrase est accompagnée de la version japonaise qui a servi de support à la traduction proposée. Cliquez sur le texte japonais pour rejoindre l'explication de traductio [...]


49: Front-end Reactor: useEffect in Action

https://atifff.hashnode.dev/front-end-reactor-useeffect-in-action

Hashnode - javascript (Javascript)

Introduction React's built-in hook useEffect is used to manage side effects in a component, We use useEffect when we want a specific piece of code to execute as a result of a change in some dependency (change in variable or function). Render Logic- T...


50 / 321

50: Mastering High-Order Functions in Kotlin: Unleash the Power of Functional Programming

https://mobileinsights.dev/mastering-high-order-functions-in-kotlin-unleash-the-power-of-functional-programming

Hashnode - Kotlin (Mobiles)

Introduction In the ever-evolving landscape of programming paradigms, functional programming has emerged as a game-changer. A cornerstone of functional programming in Kotlin is the concept of high-order functions. These functions are more than just...


51: Demystifying Inline Functions in Kotlin: Advantages, Differences, and Use Cases

https://mobileinsights.dev/demystifying-inline-functions-in-kotlin-advantages-differences-and-use-cases

Hashnode - Kotlin (Mobiles)

IntroductionIn the realm of Kotlin programming, the concept of inline functions holds immense significance. These functions aren't just about reducing call overhead; they're powerful tools that can drastically influence your code's performance and ma...


52: The Real Deal with Node.js Event Loop Misconceptions: Unmasking the Truth

https://blog.lakinmohapatra.com/the-real-deal-with-nodejs-event-loop-misconceptions-unmasking-the-truth

Hashnode - javascript (Javascript)

Node.js is like a busy expressway transporting thousands of requests smoothly to their destinations. The secret to this high-speed throughput is Node's asynchronous event loop architecture. However, even experienced drivers can misjudge the lanes and...


53: Working with Arrays in JavaScript: Exploring array manipulation in JavaScript.

https://mohd-junaid.hashnode.dev/working-with-arrays-in-javascript-exploring-array-manipulation-in-javascript

Hashnode - javascript (Javascript)

Navigating the Array Wonderland: A Guide to JavaScript Array Manipulation Greetings, fellow explorers of the code realm! Brace yourselves as we embark on an exhilarating journey through the intricate terrain of arrays in JavaScript. Prepare to unrave...


54: Essential GitHub Repos for ML Enthusiasts

https://blog.lakinmohapatra.com/essential-github-repos-for-ml-enthusiasts

Hashnode - python (python)

As a machine learning practitioner, staying updated with the latest tools, resources, and research is essential to keep your skills sharp. GitHub, a hub for open-source collaboration, hosts a wealth of repositories that can significantly enhance your...


55: How to Create and Register Blueprint in Flask

https://teamgeek.geekpython.in/create-and-register-blueprint-in-flask

Hashnode - python (python)

Introduction Large applications can become complex and difficult to manage due to the presence of numerous components and intricate structures. Flask blueprints help in organizing large applications into smaller, manageable components, leading to enh...


56: Liens vagabonds : La télévision détrônée aux Etats-Unis '

https://www.meta-media.fr/2023/08/19/liens-vagabonds-la-television-detronee-aux-etats-unis.html

Meta Media (Internet)

Le streaming gagnant - La télévision linéaire représenterait aujourd'hui moins de 50% de la consommation. Selon la dernière étude Nielsen datant de juillet 2023, les Américains ont passé davantage de temps devant les plateformes de streaming que devant les chaînes du câble.    Les services de streaming ont atteint un... The post Liens vagabonds : La télévision détrônée aux Eta [...]


57: RX enrichit son catalogue en acquérant Corp Events

https://www.lebigdata.fr/rx-corp-events

Le Big Data (dataviz)

RX annonce l'acquisition de Corp Events, très connu en France pour ses événements high-tech. Son prestigieux catalogue vient ainsi enrichir … Cet article RX enrichit son catalogue en acquérant Corp Events a été publié sur LEBIGDATA.FR.


58: Here i will discuss about lambda function in python

https://helpichirag.hashnode.dev/here-i-will-discuss-about-lambda-function-in-python

Hashnode - python (python)

#lambda function in python ## How Do we use lambda in python # with one arguments x = lambda a: a +10 print(x(5)) # with two arguments y = lambda A,B : A*B print(y(5,6)) # with three arguments z= lambda A,B,C : A*B*C print(z(5,6,7)) #wri...


59: Hello World!!

https://jsdiary.hashnode.dev/hello-world

Hashnode - javascript (Javascript)

At the beginning of every language or markup we learn, we must encounter these two words 'Hello world' I sometimes wonder why''''. Well, it's time to say hello to the big amazing world in the beautiful language of JavaScript. but first, let's learn ...


60 / 321

60: Understanding the Power of Meta-programming: A Journey into Compile-Time and Runtime Magic

https://nikhilakki.in/understanding-the-power-of-meta-programming-a-journey-into-compile-time-and-runtime-magic

Hashnode - python (python)

Introduction Metaprogramming, a fascinating programming technique, empowers developers to write code that generates or manipulates other code. By treating code as data, metaprogramming opens up new realms of flexibility and efficiency. This blog post...


61: 6 Tips for Effective React Pagination: Building a User-Friendly Navigation Component

https://bilaltechhub.hashnode.dev/6-tips-for-effective-react-pagination-building-a-user-friendly-navigation-component

Hashnode - javascript (Javascript)

Pagination is a fundamental feature for managing large datasets in web applications. In this blog post, we'll explore six essential tips to create an effective React pagination component that enhances user experience and simplifies navigation. Tip 1:...


62: JavaScript in Detail

https://scorcism.hashnode.dev/javascript-in-detail

Hashnode - javascript (Javascript)

JavaScript, often abbreviated as JS, is a versatile and widely used programming language that powers the interactive elements of modern websites and web applications. From dynamic UI interactions to server-side scripting, JavaScript plays a pivotal r...


63: A way to (actually) run Python code in ChatGPT

https://xiasongh.hashnode.dev/a-way-to-actually-run-python-code-in-chatgpt

Hashnode - python (python)

Hi, everyone! TL;DR: I made a chrome extension that lets you run Python code and see text and plot outputs in ChatGPT I've never really worked on any personal projects before. Maybe one. I enjoy coding and I think it's fun, I just don't do it in my f...


64: Flutter day38

https://shreshtxa.hashnode.dev/flutter-day38

Hashnode - Flutter (Flutter)

I couldn't do much, I just gave an interview for an internship, hoping to hear from them by mid-next week.


65: Exploring Recursion: Understanding the What and Why with Code Snippets

https://code-11.hashnode.dev/exploring-recursion-understanding-the-what-and-why-with-code-snippets

Hashnode - python (python)

Recursion is a fascinating and powerful concept in computer science that often leaves beginners both amazed and bewildered. It's a programming technique where a function calls itself to solve a problem. While recursion might sound like a complex idea...


66: New X Glitch Wipes Out Almost a Decade of Photos

https://www.webdesignerdepot.com/2023/08/new-x-glitch-wipes-out-almost-a-decade-of-photos/

Webdesigner depot (Design)

Users were shocked to find that all of their images and links posted before December 2014 were broken.


67: Crafting Error Trails In JavaScript

https://blog.alexanderkaran.com/crafting-error-trails-in-javascript

Hashnode - javascript (Javascript)

Intercepting Errors and returning a new error with a more end-user-friendly message is a staple of JavaScript. However, this can cause us to lose steps in the stack trace or make debugging harder. Now thanks to Error.prototype.cause we can provide a ...


68: Accidents and Health Emergencies: A 24 Hour Medical Answering Service

https://www.bestfreewebresources.com/accidents-and-health-emergencies-a-24-hour-medical-answering-service

Best Free Web Resources (Veille)

Effective communication is indispensable in modern healthcare for ensuring optimal patient care. A 24-hour medical communication solution acts as a vital link between patients and healthcare providers, enabling seamless interaction at any time. This article explores the definition and purpose of the 24-Hour healthcare communication Solution. Then we'll be highlighting the vital role of delivering [...]


69: Unleash Your Code's Potential with CodinGuru Online Compiler

https://codinguru.hashnode.dev/unleash-your-codes-potential-with-codinguru-online-compiler

Hashnode - javascript (Javascript)

Why Codinguru's Online Compiler Stands Out: 1. Ease of Use: One of the most notable features of Codinguru Online Compiler is its user-friendly interface. Whether you're a beginner or an experienced developer, you'll find the platform's intuitive layo...


70 / 321

70: What is up with you, Python!'

https://bwarikoo.hashnode.dev/what-is-up-with-you-python

Hashnode - python (python)

Introduction I am pretty sure while reading the title, some of you must have thought about Python, the snake! Well, I can only have a bad dream about meeting Python in person. ;) Jokes apart, here I am talking about one of the most beautiful computer...


71: JavaScript Find Last

https://blog.alexanderkaran.com/javascript-find-last

Hashnode - javascript (Javascript)

We all have used find before on an array, but what if we wanted to start from the end of the array' Well, thanks to findLast you no longer need to perform some weird logic or use an external library to pull this off. In this example, you can see how ...


72: Python Binary Search Tree (BST)

https://daviesdev.hashnode.dev/python-binary-search-tree-bst

Hashnode - python (python)

Okay, picture this: a tree with branches, but instead of leaves, it has numbers and it's upside down. And the first number is called the root node. Use this image so I don't annoy you Two numbers are branching from the root node Those 2 branches for...


73: Complete Guide: Deploying Angular Application on AWS S3 with CI/CD

https://emmodi.hashnode.dev/complete-guide-deploying-angular-application-on-aws-s3-with-cicd

Hashnode - javascript (Javascript)

Prerequisites GitHub Account AWS Account. You should know what Angular is Introduction In today's fast-paced software development market, delivering web apps quickly and safely is crucial. The popular JavaScript framework Angular allows develope...


74: Coding my own OCR-Copy-Paste Utility to use for Language Learning (Python + Tesseract + Pynput)

https://cameroncandau.com/coding-my-own-ocr-copy-paste-utility

Hashnode - python (python)

In my continuous journey of improving my Japanese, I've found it helpful to use my operating systems in Japanese to gain more exposure to the language in my daily life. However, since system menus don't usually have selectable text, looking up words ...


75: AWS Landing Zone Explained: Building a Strong Cloud Infrastructure

https://ezekiel-umesi.xyz/aws-landing-zone-explained-building-a-strong-cloud-infrastructure

Hashnode - python (python)

Introduction As the need for cloud computing in modern businesses seems to increase, it has become paramount for businesses and organizations of all sizes to build, deploy, and maintain resilient, highly available, and fault-tolerant cloud infrastruc...


76: Python's Power Play: Reading JSON Files Demystified

https://blog.karuntech.com/pythons-power-play-reading-json-files-demystified

Hashnode - python (python)

To read a JSON file in Python, you can use the built-in json module. Here's a step-by-step guide on how to do it: Import the json module. Open the JSON file in read mode. Use the json.load() method to read the content of the file and convert it in...


77: Python's Power Play: Reading JSON Files Demystified

https://karun.hashnode.dev/pythons-power-play-reading-json-files-demystified

Hashnode - python (python)

To read a JSON file in Python, you can use the built-in json module. Here's a step-by-step guide on how to do it: Import the json module. Open the JSON file in read mode. Use the json.load() method to read the content of the file and convert it in...


78: Amazon's New Rating System Gets One-Star Reviews

https://www.webdesignerdepot.com/2023/08/amazons-new-rating-system-gets-one-star-reviews/

Webdesigner depot (Design)

Amazon just changed its rating system, and now every product looks like it has one star. This one could take some getting used to.


79: Date : 22/08/2023 - 21 H - Eglise de Damgan- Concert de musique classique au profit de la restauration du moulin de Kervoyal

http://amisdekervoyal.viabloga.com/news/date-22-08-2023-21-h-eglise-de-damgan-concert-de-musique-classique-au-profit-de-la-restauration-du-moulin-de-kervoyal

Amis de Kervoyal (Divers...)

L'Association pour la Restauration du Patrimoine Damganais '(ARPD) a la joie d'accueillir à nouveau le talentueux et sympathique orchestre "La Clé des Champs (une vingtaine de musiciens) avec un nouveau programme musical. Mardi 22 août 2023à 21 heuresà l'église Notre Dame de Bonne Nouvelle de DamganParticipation librewww.facebook.com/events/1371179200389537Rappel: Cet orchestre a la particul [...]


80 / 321

80: Python's *args and **kwargs: Simplified Guide with Examples

https://code-11.hashnode.dev/pythons-args-and-kwargs-simplified-guide-with-examples

Hashnode - python (python)

Python, renowned for its simplicity and versatility, offers a wide array of features that aid developers in writing clean, readable, and efficient code. Among these features are *args and **kwargs, often considered cryptic by beginners, but incredibl...


81: Ranked: World's Biggest Wine Producers by Country

https://www.visualcapitalist.com/cp/biggest-wine-producers-by-country/

Visual Capitalist (dataviz)

We break down the major wine producers of the world by country and how much they contribute to world wine supply. The post Ranked: World's Biggest Wine Producers by Country appeared first on Visual Capitalist.




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