Skip to content

Instantly share code, notes, and snippets.

View AryanKumarOfficial's full-sized avatar
🎯
Exploring

Aryan Kumar AryanKumarOfficial

🎯
Exploring
View GitHub Profile
@AryanKumarOfficial
AryanKumarOfficial / proposal.md
Last active March 31, 2025 02:40
This proposal outlines a comprehensive plan to enhance our club website’s content management system by integrating a modern, feature‑rich, and scalable rich text editor. The document is intended both as an internal planning guide and as an open source contribution proposal. Our goal is to deliver an intuitive, interactive editing experience for …

Detailed Proposal for Integrating a Rich Text Editor into Our Club Website

This proposal outlines a comprehensive plan to enhance our club website’s content management system by integrating a modern, feature‑rich, and scalable rich text editor. The document is intended both as an internal planning guide. Our goal is to deliver an intuitive, interactive editing experience for club officers and members, while ensuring robust backend connectivity (using MongoDB) and seamless integration with our Next.js 14 framework.


Table of Contents

@AryanKumarOfficial
AryanKumarOfficial / LinkedList.java
Created October 14, 2024 18:52
Single LinkedList
package Demo;
public class LinkedList {
Node head;
public static void insert(LinkedList list, int data) {
Node newNode = new Node(data);
newNode.next = null;
// if list is empty

Installation

1. Login to Terminal

    ssh root@<DROPLET_IP>

2. Update the System