Mukul Latiyan has Published 474 Articles

Change the View of Tensor in PyTorch

Mukul Latiyan

Mukul Latiyan

Updated on 02-Aug-2023 16:23:59

51 Views

PyTorch is an open−source machine learning library developed by Facebook's AI Research team. It is primarily used for deep learning applications, including natural language processing, computer vision, and reinforcement learning. PyTorch provides two main features: a multidimensional Tensor object and a collection of functions that operate on these Tensors. Torch ... Read More

Server-Side Rendering (SSR) with JavaScript Frameworks

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:48:54

358 Views

In today's fast-paced web development landscape, delivering highly performant and search engine-friendly websites is crucial. One effective approach to achieve this is through Server-Side Rendering (SSR). In this article, we will explore how to implement SSR using JavaScript frameworks, along with code examples, explanations, and outputs, to help you harness ... Read More

Web Workers: Multithreading in JavaScript

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:47:49

125 Views

As web applications become more complex and demanding, the need for efficient and responsive processing becomes increasingly important. JavaScript, being a single-threaded language, can sometimes struggle with heavy computational tasks that may result in slow user interfaces and unresponsive applications. However, with the introduction of Web Workers, JavaScript gains the ... Read More

Web Components: Building Custom Elements with JavaScript

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:46:55

195 Views

Web components are a powerful tool for building reusable and encapsulated UI elements in web applications. They allow developers to create custom elements with their own markup, style, and behavior, which can be easily reused across different projects and shared with other developers. In this article, we will explore the ... Read More

Web Assembly (Wasm) with JavaScript

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:45:51

167 Views

Have you ever wondered if it's possible to run high-performance applications on the web without sacrificing the portability and security that JavaScript provides? Well, wonder no more! With the introduction of WebAssembly (Wasm), it is now possible to bring native-like performance to web applications while still leveraging the power of ... Read More

Static Type Checking in JavaScript with TypeScript

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:44:03

385 Views

JavaScript is a popular programming language known for its flexibility and dynamic nature. However, this flexibility can sometimes lead to unexpected errors and bugs in large-scale applications. To address this issue, TypeScript was introduced as a superset of JavaScript that provides static type checking capabilities. In this article, we will ... Read More

Server-Side Rendering (SSR) with Next.js and JavaScript

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:41:25

253 Views

In the world of web development, delivering a fast and seamless user experience is crucial. One way to achieve this is through Server-Side Rendering (SSR), a technique that allows rendering web pages on the server before sending them to the client. SSR offers numerous benefits, including improved performance, SEO optimization, ... Read More

Robotics: Building Autonomous Robots with Raspberry Pi and JavaScript

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:38:06

164 Views

In recent years, the world of robotics has seen a significant shift towards open-source technologies and platforms. One such platform that has gained immense popularity is Raspberry Pi, a small and affordable single-board computer. Coupled with the power and versatility of JavaScript, developers can now embark on exciting journeys into ... Read More

Reactive Programming with JavaScript and RxJS

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:36:52

467 Views

Reactive programming is a programming paradigm that deals with asynchronous data streams. It is a way of writing code that is more responsive to change, and that can handle events and data streams in a more efficient way. In reactive programming, data is represented as a stream of events. These ... Read More

Parallel Programming in JavaScript with Web Workers and SIMD.js

Mukul Latiyan

Mukul Latiyan

Updated on 25-Jul-2023 14:35:23

311 Views

JavaScript is a versatile programming language that runs on the client-side as well as the server-side. Traditionally, JavaScript executed tasks in a single-threaded manner, which limited its ability to handle computationally intensive operations efficiently. However, with advancements in web technologies, parallel programming in JavaScript has become possible through the use ... Read More

Previous 1 ... 4 5 6 7 8 ... 48 Next
Advertisements