Skip to content

Instantly share code, notes, and snippets.

@AdityaAparadh
AdityaAparadh / a11.cpp
Last active October 15, 2025 08:43
A11
#include "../common.h"
#include <limits>
using namespace std;
struct Point {
string name;
vector<double> values;
int cluster;
bool visited;

Storage, Collection and Transportation of Municipal Solid Waste

The handling and separation, storage and processing at source before they are collected is the second of the six functional elements in the SWM system.

Waste Handling and Separation at Source:

The activities associated with managing solid wastes till they are placed in containers used for their sotrage before collection.

Fundamentals of Solid Waste Management

Sources of Solid Waste

1. Residential

Waste Generators: Single and multifamily dwellings Types of Waste: Food, Fiber, Leather, metals, ashes, cardboard, plastics, wool, glass, special wastes and household hazardous wastes

@AdityaAparadh
AdityaAparadh / CloudVerse.md
Created October 3, 2024 02:22
CloudVerse Demo

CloudVerse Hands-On Guide

EC2

We are going to host a single static website, with our EC2 instance.

To create an instance

  1. Search for EC2 on the main console, to go to EC2 Dashboard
  2. Click on Launch Instance

Jetpack Compose Essentials

Radio Buttons

@Composable
fun RadioButtonSample() {
    val radioOptions = listOf("A", "B", "C")
    val (selectedOption, onOptionSelected) = remember { mutableStateOf(radioOptions[1] ) }