Skip to content

Instantly share code, notes, and snippets.

View jainamoswal's full-sized avatar
🧇
All my code is cooked in a pressure cooker.

Jãїиãм jainamoswal

🧇
All my code is cooked in a pressure cooker.
  • 103.238.107.100
  • 12:26 (UTC +05:30)
View GitHub Profile

To delete all your workflow runs, use this workflow file .github/workflows/clean.yml in your root directory and run it via workflow_dispatch.

@richardblondet
richardblondet / README.md
Last active May 3, 2024 10:02
Create a simple API backend with Google App Script and a Spreadsheet

Google App Script CRUD

Inspired by this gist.

Getting Started

  1. Create a new App Script project.
  2. Paste the content of the file google-app-script-crud.gs in the default Code.gs file.
  3. Create a new Spreadsheet.
  4. Copy the Spreadsheet ID found in the URL into the variable SHEET_ID located in line 1 of your file.
@zthxxx
zthxxx / Activate Office 2019 for macOS VoL.md
Last active May 1, 2024 22:04
crack activate Office on mac with license file
@phizaz
phizaz / async.py
Last active April 3, 2024 15:44
Python turn sync functions to async (and async to sync)
import functools
def force_async(fn):
'''
turns a sync function to async function using threads
'''
from concurrent.futures import ThreadPoolExecutor
import asyncio
pool = ThreadPoolExecutor()