Skip to content

Instantly share code, notes, and snippets.

View alisolanki's full-sized avatar
💸
Lad with a million dreams

Ali Solanki alisolanki

💸
Lad with a million dreams
View GitHub Profile
@alisolanki
alisolanki / openclaw-setup-guide.md
Last active March 5, 2026 17:03
Turn an Old Android Into a 24/7 AI Agent (OpenClaw Setup Guide) This guide shows you how to run OpenClaw locally on an Android phone using Termux and Ubuntu. With this setup, your old smartphone can function as a 24/7 AI employee without needing a PC or cloud server. The process is lightweight, fully local, and designed for builders who want to …

Turn Your Old Android Into a 24/7 AI Employee

OpenClaw Setup Guide for Android (Termux)

Author: Ali Solanki

Before starting, watch this full walkthrough video by Ali Solanki:

https://youtu.be/hM5LHJByJZk
“I Turned an Old Android into a 24/7 AI Employee (OpenClaw)”

@alisolanki
alisolanki / Initialize GitHub Repository.md
Last active April 24, 2020 21:15
This is a git command line for initializing GitHub Repository

1. Download git from https://git-scm.com/downloads

2. Make an empty repository in your github profile.

3. Open your root folder of the project you wish to initialize.

4. Open Command Prompt / Terminal in that directory.

5. Copy the following code in your Command line:

git init
git remote add origin https://github.com/username/repository_name //Your repository path
git add -A
@alisolanki
alisolanki / template.cpp
Last active April 24, 2020 23:19
C++ template
//Author: Mohd. Ali Solanki
#include <bits/stdc++.h>
#define MOD 1000000007
using namespace std;
typedef long long ll;
typedef unsigned long long int ull;
int main(){
int T;
scanf("%d", &T);