Skip to content

Instantly share code, notes, and snippets.

View sohan110111's full-sized avatar
💻
Now I am learning DS and full stack js.

Md. Shafiul Islam Sohan sohan110111

💻
Now I am learning DS and full stack js.
View GitHub Profile
@ex-preman
ex-preman / Code.gs
Last active July 20, 2024 00:58
CRUD Using Google Apps Script
function doGet(e) {
Logger.log(e);
var op = e.parameter.action;
var ss = SpreadsheetApp.open(DriveApp.getFileById("YOUR_SPREADSHEET_ID"));
var sn = "YOUR_SHEET_NAME";
var sheet = ss.getSheetByName(sn);
if (op == "insert")
return insert_value(e, sheet);
@tmatz
tmatz / build_android_app_on_termux.md
Last active July 24, 2024 02:45
Build android app on termux

Build android app on termux

1. install termux

install termux from F-Droid.

2. setup termux

apt update
Process for setting up github pages with namecheap domain.
1. Go to namecheap.com, select and buy domain name.
2. Login to namecheap, go to username drop down and select dashboard.
3. Go to DomainList
4. Click manage button
5. Click Advanced DNS tab
6. Click add record and add three records:
Type: A Record | Host: @ | Value: 192.30.252.153 | TTL: Automatic
@illdecree
illdecree / TuneUp.bat
Created March 16, 2012 16:53
Machine Cleanup Batch With Menu
@ECHO OFF
REM This program is free software: you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation, either version 3 of the License, or
REM (at your option) any later version.
REM
REM This program is distributed in the hope that it will be useful,
REM but WITHOUT ANY WARRANTY; without even the implied warranty of
REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the