Skip to content

Instantly share code, notes, and snippets.

View saikksub's full-sized avatar
🏠
Working from home

Sai K K saikksub

🏠
Working from home
View GitHub Profile
@saikksub
saikksub / vue3contactscomputed.md
Last active February 1, 2024 06:13
Vue3ContactsComputed

Task: Vue3 Contacts and Computed

Objective:

Implement a contacts management application using Vue3, with a focus on utilizing Vue's reactive and computed properties to efficiently manage and display a list of contacts.

Requirements:

  1. Project Setup:
    • Initialize a new Vue3 project using Vue CLI or Vite.
  • Install necessary dependencies like Vue Router for page navigation if needed.
@saikksub
saikksub / seat-selection-task.md
Created October 19, 2023 04:57
Seat Selection Task

Seat Selection Task

Objective

Implement a C program that manages seat bookings for an event.

Specifications

  • Seats: [-1, -1, 0, 1, 2]. Here, -1 indicates the seat is not available, and any non-negative integer indicates the seat number.

  • Emails: ["test1@gmail.com", "test2@gmail.com", "test3@gmail.com"].

@saikksub
saikksub / DragAndDrop.vue
Last active July 24, 2022 11:10
Drag and Drop using VueJs + Vuetify
<template>
<div
:style="{
height
}"
>
<div
class="d-flex align-center justify-center highlight-area"
style="height: 100%;"
@drop="onDrop"