hello.js

var please = require('share');
console.log('thank you');

NEW !!!

Thursday, 25 January, 2024 UTC

Deno adds API for date and time operations

Deno 1.40, the latest version of the JavaScript runtime positioned as a rival to Node.js, has been launched with a Temporal API for advanced date and time operations. The update was announced January 25. Deno can be accessed from deno.com. The Temporal ... more


Thursday, 25 January, 2024 UTC

Guide to Strings in Python

Introduction We've come far in discovering the basics of computer science in the world of Python, and now is the time to start learning about strings. Strings are a fundamental data type that any aspiring developer must become familiar with. They are ... more


Thursday, 25 January, 2024 UTC

GrooveIt Music App built with ReactJs and Firebase

GrooveIt Music App a cutting-edge music application built with ReactJs and Firebase that seamlessly integrates with the Deezer music API to bring you an immersive music experience. GrooveIt not only provides a vast library of songs but also enhances ... more


Wednesday, 24 January, 2024 UTC

Release Notes for Safari Technology Preview 187

Safari Technology Preview Release 187 is now available for download for macOS Sonoma and macOS Ventura. If you already have Safari Technology Preview installed, you can update it in System Settings under General → Software Update. This release includes ... more


Wednesday, 24 January, 2024 UTC

Release Notes for Safari Technology Preview 187

Safari Technology Preview Release 187 is now available for download for macOS Sonoma and macOS Ventura. If you already have Safari Technology Preview installed, you can update it in System Settings under General → Software Update. This release includes ... more


Wednesday, 24 January, 2024 UTC

How it's Made - Exploring AI x Learning through ShiffBot, an AI experiment powered by the Gemini API

Posted by Jasmin Rubinovitz, AI Researcher Google Lab Sessions is a series of experimental collaborations with innovators. In this session, we partnered with beloved creative coding educator and YouTube creator Daniel Shiffman. Together, we explored ... more


Wednesday, 24 January, 2024 UTC

Introducing Foundations - our open source Rust service foundation library

In this blog post, we're excited to present Foundations, our foundational library for Rust services, now released as open source on GitHub. Foundations is a foundational Rust library, designed to help scale programs for distributed, production-grade ... more


Wednesday, 24 January, 2024 UTC

Fixing Cumulative Layout Shift Problems on DavidWalshBlog

Over 50 thousand developers visit DavidWalshBlog every month from around the world to learn JavaScript tricks and fix problems in their code. Unfortunately, some of them have a slow experience on the site. David tracks the performance of his Core Web ... more


Tuesday, 23 January, 2024 UTC

Flutter vs React Native 2024: Choosing the Perfect Framework for Your Mobile App Development Project

Introduction: In the face of the mobile app development world, which has been constantly changing Flutter and React Native began to stand out. Both have seen significant growth. By comparison Flutter has become a significant new rival to React Native. ... more


Tuesday, 23 January, 2024 UTC

2023 JavaScript Rising Stars

The recent report from Rising Stars highlights the trends in the JavaScript ecosystem and showcases standout projects based on GitHub Stars in 2023. Overall, the most popular project was shadcn/ui, a collection of UI components that can be used to create ... more


Monday, 22 January, 2024 UTC

Node v21.6.1 (Current)

null ... more


Monday, 22 January, 2024 UTC

The future of web development: AWS Amplify’s Code First Approach

The future of web development: AWS Amplify’s Code First Approach AWS Amplify‘s new code-first developer experience is contributing to shaping the future of web development. This approach emphasizes building with an app-first mentality, focusing on the ... more


Saturday, 20 January, 2024 UTC

Porting NymphCast to the Haiku operating system

Over the past couple of days I have ported the NymphCast network streaming project [1] to Haiku, which was fairly straightforward due to its POSIX-compatibility. In this article I’ll describe my experiences with porting to what is effectively BeOS’ spiritual ... more


Saturday, 20 January, 2024 UTC

React – example of useRef() with array

While working on the React pincode field component, I came to a point where I needed to store the references to an array of objects. While this is an easy task for documentSelectorAll, it turns out that is not a good idea to use documentSelectorAll() ... more


Friday, 19 January, 2024 UTC

Astro 4.2 boosts accessibility, image optimization features

Following fast in the footsteps of the Astro 4.1 release, Astro 4.2 has arrived, bringing improvements to accessibility rules and the ability for remark plugins to customize image optimization. The Astro 4.2 release also introduces prerendering using ... more


Friday, 19 January, 2024 UTC

WebStorm 2024.1 Early Access Program Is Now Open!

We’re ready to kick off WebStorm 2024.1 with a new Early Access Program (EAP). Please check out this blog post, where we explain the benefits of the program. If you haven’t already seen what to expect in WebStorm 2024.1, take a moment to explore our ... more


Friday, 19 January, 2024 UTC

Exporting AG Grid to PDF with pdfMake

In this blog, you will learn how to export AG Grid to a PDF using pdfMake, a document generation library for JavaScript. We'll demonstrate how to export your grid, including user configurations, such as filters, row groups, and pivots, as well as styles ... more


Thursday, 18 January, 2024 UTC

SortableJS brings drag-and-drop lists to Microsoft Blazor

SortableJS, a JavaScript library for creating reorderable drag-and-drop lists, has been wrapped into a component for Microsoft’s Blazor web application builder and renamed Blazor Sortable. A common feature for web application development, SortableJS ... more


Wednesday, 17 January, 2024 UTC

Real-time data distribution with Amazon MSK and AWS AppSync

This post was co-written by Hammad Rasheed, Qasim Naeem, and Umair Ajmal from NETSOL Technologies. The competition to attract and retain an audience in a cluttered and fragmented digital space is accelerating. Customers expect digital products to provide ... more


Wednesday, 17 January, 2024 UTC

Make small projects and throw them away

When starting to learn new technologies such as React, or NextJs what type of projects should I build? A basic Hello World or a full-scale Instagram clone? This is a recurring question I get. Overall I believe that you can get more learning value out ... more


Tuesday, 16 January, 2024 UTC

Microsoft Blazor adds SortableJS for drag-and-drop lists

SortableJS, a JavaScript library for creating reorderable drag-and-drop lists, has been wrapped into a component for Microsoft’s Blazor web application builder and renamed Blazor Sortable. A common feature for web application development, SortableJS ... more


Tuesday, 16 January, 2024 UTC

[Js-Craft #46] The React book, 2023 yearly review, CSS Flexbox Bar Chart, React copy text to clipboard and more

Good morning friends and happy 2024! I hope y'all have a great start to your new year. I've recapped my 2023 here! Thank you so much for reading and being around this year and now. I've loved reading your replies, and being able to chat with y'all! In ... more


Tuesday, 16 January, 2024 UTC

Remapping Values

Learn how to use a remap function to transform a value from one range to another! ... more


Tuesday, 16 January, 2024 UTC

Integrate OPC UA With MongoDB - A Feasibility Study With Codelitt

Open Platform Communications Unified Architecture (OPC UA) is a widely recognized and important communication standard for Industry 4.0 and industrial IoT. It enables interoperability across different machines and equipment, ensuring reliable and secure ... more


Tuesday, 16 January, 2024 UTC

Extract a Number from a String with JavaScript

User input from HTML form fields is generally provided to JavaScript as a string. We’ve lived with that fact for decades but sometimes developers need to extract numbers from that string. There are multiple ways to get those numbers but let’s rely on ... more


Monday, 15 January, 2024 UTC

Node v21.6.0 (Current)

null ... more


Monday, 15 January, 2024 UTC

Unveiling the Power of Indoor Mapping Solutions

Indoor mapping solutions are digital maps for indoor spaces. They make it easy to navigate through a shopping center or airport or to find where the nearest printer is in an office. These solutions help provide solutions to quickly and easily guide users ... more


Monday, 15 January, 2024 UTC

JetBrains JavaScript Days 2023

JetBrains JavaScript Days 2023 recently concluded, offering developers a wealth of practical insights into the dynamic realms of Angular, AI integration, TypeScript, ECMAScript development, React best practices, JavaScript tooling improvements, and innovative ... more


Friday, 12 January, 2024 UTC

React copy text to clipboard

In order to implement a copy text to clipboard functionality in React the easiest solution is to use the navigator.clipboard API. Let's say we want to build a simple React component that automatically copies a given text to the clipboard: The above example ... more


Thursday, 11 January, 2024 UTC

Top 10 E-commerce Development Companies in 2024

As the e-commerce industry expands rapidly, businesses increasingly seek specialized development companies to craft unique, user-friendly online shopping experiences. In 2024, several companies have distinguished themselves as leaders in this field, ... more