Skip to content

Instantly share code, notes, and snippets.

@yoyu777
yoyu777 / http_server.js
Created October 17, 2021 19:33
http_server.js
/*
//it is necessary to start a web server,
//so App Engine is happy
*/
const http = require('http');
const hostname = '0.0.0.0';
const port = process.env.PORT;
@yoyu777
yoyu777 / sheetreader.cs
Last active March 7, 2024 17:51
sheetreader for Unity (Sheets API v4)
using System;
using System.Collections.Generic;
using Google.Apis.Services;
using Google.Apis.Auth.OAuth2;
using Google.Apis.Sheets.v4;
using Google.Apis.Sheets.v4.Data;
using UnityEngine;