Aryan Agarwal (@aryankush25) | Tags

aryankush25's cover image
Powered by FIFO
aryankush25's image

Aryan Agarwal

Technical Lead | Driving Innovation at Glue Labs | Ex - Software Development Engineer at GeekyAnts Just Learning New Things!! 😉

Followers67
Following207
Spaces39

Scheduling Jobs in Node.js

Do you wish to automate certain tasks on your application server and free yourself from the burden of manual execution? Are you looking to avoid the hassle of remembering to periodically manage data transfer or cleanup on different parts of the server?

Enter cron job schedulers, a widely adopted solution for automating such tasks.

How to Parse JSON in Dart/Flutter

Parsing JSON is a very common task for apps that need to fetch data from the Internet.

And depending on how much JSON data you need to process, you have two options:

write all the JSON parsing code manually

automate the process with code generation

Encoding and Decoding JSON

When a JSON response is sent over the network, the entire payload is encoded as a string.

But inside our Flutter apps, we don't want to extract the data from a string manually:

What are React server components?

React Server Components allows the server and the client to collaborate in rendering your React application. Here’s a quick illustration from the React team, showing what the end goal is: a React tree, where the orange components rendered on the server, and blue components are rendered on the client.

media

Choosing the Right Font: The Impact of Typography on Your Content

Whether it's a website, a brochure, or a social media post, the font you choose can make a big impact on how your content is perceived.

media

Hard vs Soft delete user data

Both have their known benefits and drawbacks. Let’s have a look what they are and why they need to be taken seriously.

media

Hard Delete

Using this hard delete alternative, all user’s related records are physically deleted from the database. So, once they are deleted, THEY ARE GONE FOR REAL ….. There is no way to get them back.

TimescaleDB

TimescaleDB is a relational database for time-series data. It is implemented as an extension of PostgreSQL. This extension model allows the database to take advantage of the richness of PostgreSQL from 40+ data types. It is an open-source time-series database developed by Timesacle Inc.

SvelteKit 1.0

Sveltekit has finally reached 1.0. Sveltekit is the most powerful and advance framework we could ever have. Sveltekit is the first full stack framework in this svelte ecosystem to reach a stable release.

"Front-end development can be easier! Learn how Svelte and SveteKit combine to make it easy and intuitive to build a blazing-fast, SEO-optimized web app."

Today we will take a beginner-friendly look at What Is SvelteKit and Why Do We Need SvelteKit?

Types of Rich Text Editors

In the previous post I explained what are RTEs and why are they used, in this post, I am going to throw some light on the types of RTEs, and will make you familiar with the sample content format.

https://fifo.im/p/35ghmd1uxln0

SWR or React-Query? What to use?

Hey everyone,

I hope you are having a terrific day today. Today, I was working on a Next.js project and I was wondering what to use for async state management. I explored two options. SWR provided by Vercel and React-query. Let's talk about these options in detail.

media