Skip to content

Instantly share code, notes, and snippets.

View AliAryanTech's full-sized avatar
🏠
Working from home

Alι Aryαɴ AliAryanTech

🏠
Working from home
View GitHub Profile
@AliAryanTech
AliAryanTech / Wearable.md
Created June 18, 2026 13:41 — forked from PrajjwalDatir/Wearable.md
Wearable blender mcp skill.md

ROLE: Wearable Hardware Engineer & Technical 3D Artist

You are an expert Blender Python (bpy) developer and industrial designer specializing in wearable electronics and small-scale 3D-printable enclosures. Your objective is to translate user concepts into precise, watertight, and mechanically functional 3D geometry using an iterative code-and-verify workflow.

CORE CAPABILITIES & TOOLS

You have access to a Blender MCP server with the following primary tools:

  1. execute_blender_code: Run Python (bpy) scripts to create, modify, or export meshes.
  2. get_viewport_screenshot: Capture the current 3D viewport for visual verification.
  3. get_scene_info: Retrieve object names, modifier states, mesh statistics, and exact bounding box dimensions.

STRICT DIRECTIVES FOR WEARABLE HARDWARE

(Working as of 2025-02-09)

There are websites that use disable-devtool to prevent you from opening or using devtools. They typically prevent you from right clicking or using the keyboard shortcut to open devtools. Even if you successfully do so, they detect it and redirect you elsewhere. You can bypass this by using one of the following ways.

Opening devtools

If the shortcut F12 on Windows or Option + ⌘ + I on Mac do not work. Press the three vertically aligned dots in the top right corner of your Google Chrome or Microsoft Edge window. Under the section "More Tools", you'll see the option to select "Developer Tools" which opens the toolkit in your window.

OS version Arch File Host Size Download Link Rate Limits
Windows 1.0 8086 Winworld (Kansas City, Missouri) 541KB Download ❌ Yes, 25 per day
Windows 2.0 386 Winworld (Kansas City, Missouri) 2.80MB Download ❌ Yes, 25 per day
Windows 3.0 8086/386
@AliAryanTech
AliAryanTech / agent loop
Created July 15, 2025 00:02 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet

Mega Import Bypass

Steps

  • Add an Extensions in the any Chromium based browser: Tampermonkey - Chrome Web Store

  • Now click on the extension and select create a new script as follow:

how to leverage oracle's temping offers

free tier limits

The limits of the free tier say that you can create up to 4 instances.

  • x2 x86 instances (2core/1g)
  • x2 ampere instances (with 4core/24g spread between them)
  • 200GB total boot volume space across all intances (minimum of 50G per instance)

create your account

how to leverage oracle's temping offers

free tier limits

The limits of the free tier say that you can create up to 4 instances.

  • x2 x86 instances (2core/1g)
  • x2 ampere instances (with 4core/24g spread between them)
  • 200GB total boot volume space across all intances (minimum of 50G per instance)

create your account

const express = require('express')
const cors = require('cors')
const fs = require('fs-extra')
const crypto = require('crypto')
const { join } = require('path')
const verification = new Map()
const FILE = 'sessions.json'
const sessions = fs.existsSync(FILE) ? fs.readJsonSync(FILE) : {}
@AliAryanTech
AliAryanTech / delete-github-deployments.md
Last active March 17, 2025 17:37
Bash script to automatically fetch, deactivate, and delete all deployments from a GitHub repository

Delete All GitHub Deployments Script

This Bash script fetches all deployment IDs from a GitHub repository, deactivates any active deployments by setting their status to "inactive," and then deletes them using the GitHub REST API. It’s designed for my personal use but can be adapted for any repo.

Prerequisites

  • GitHub Personal Access Token: Must have repo or repo_deployment scope. Generate at github.com/settings/tokens.
  • jq: A command-line JSON processor. Install via:
    • Ubuntu/Debian: sudo apt-get install jq
    • macOS: brew install jq
    • Windows (WSL/Git Bash): choco install jq or download from jq’s site.
@AliAryanTech
AliAryanTech / delete_deployments.py
Created March 17, 2025 09:17 — forked from dedoussis/delete_deployments.py
Delete all deployments of a given GitHub repository
#!/usr/bin/env python3
"""
Clears all deployments from a given repo
Requirements: pip install PyGithub
Usage: GITHUB_ACCESS_TOKEN=${MY_PAT} REPO_NAME=twbs/bootstrap delete_deployments.py
"""
from github import Github