Skip to content

Instantly share code, notes, and snippets.

View argen-x's full-sized avatar

Argen Turatbek argen-x

View GitHub Profile
@argen-x
argen-x / guide.md
Created November 6, 2023 02:34
Capture Spreadsheet's Changes

Google Apps Script: onEdit Function

Description:

The onEdit function is designed to capture and log editing activities in a Google Sheets document. It creates an "Edit Log" sheet to record details such as timestamps, user information, cell location, and old and new values after an edit occurs in the linked spreadsheet.

Usage:

  1. Function Invocation:
    • The function is automatically triggered upon any edit made within the associated Google Sheets document.
@argen-x
argen-x / The Technical Interview Cheat Sheet.md
Created May 25, 2023 05:28 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

ANNOUNCEMENT

I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!






\

@argen-x
argen-x / SinglyLinkedList
Created October 10, 2022 10:25
SinglyLinkedList Implementation in Javascript
/*
LINKED LIST - a data structure that contains a head, tail, length property
LL consist of nodes, each node has a value and a pointer to another node or null
LISTS
- Dont have indexes
- Connected via nodes with a next pointer
- Random access is not allowed
ARRAYS
@argen-x
argen-x / index.html
Created August 28, 2022 05:04
[Student Name] - [Project Name]
<!-- The HTML content goes here -->
<h1> Your Example Project Assignment </h1>
@argen-x
argen-x / index.html
Created December 21, 2021 08:46
TweetForm: PreventDefault & Form Event Exerc
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Basics</title>
</head>
<body>
<h1>Form Events</h1>