Skip to content

Instantly share code, notes, and snippets.

View projectoperations's full-sized avatar
💭
building learning and connections

projectoperations projectoperations

💭
building learning and connections
View GitHub Profile
@projectoperations
projectoperations / vscode_marketplace
Created June 30, 2026 10:18 — forked from tejainece/vscode_marketplace
Marketplace for VS code to be used in Antigravity
https://marketplace.visualstudio.com/items
https://marketplace.visualstudio.com/_apis/public/gallery
@projectoperations
projectoperations / INSTALL.md
Created April 21, 2026 04:47 — forked from kibotu/INSTALL.md
How to Run Qwen3.5 Locally With Claude Code (No API Bills, Full Agentic Coding)

Run Qwen 3.5 Locally with Claude Code — Zero API Bills, Full Agentic Coding

Your Mac has a GPU. Your Mac has RAM. Why are you paying someone else to think?

This guide gets you a fully local agentic coding setup: Claude Code talking to Qwen 3.5-35B-A3B via llama.cpp, all running on your Apple Silicon Mac. No API keys. No cloud. No surprise invoices. Just you, your M-series chip, and 35 billion parameters doing your bidding on localhost.

Based on this article.


@projectoperations
projectoperations / update-vscode-cli
Created April 5, 2026 23:07 — forked from denisalevi/update-vscode-cli
Script to download and install the latest VSCode and/or Cursor CLI on a remote server (using curl)
#!/usr/bin/env bash
# -----------------------------------------------------------------------
# update-vscode-cli: Download and install VSCode and/or Cursor CLI tools
# -----------------------------------------------------------------------
#
# This script downloads and installs the latest versions of CLI tools
# for VSCode on Linux systems.
#
# Usage:
# update-vscode-cli # Install/update all supported tools
@projectoperations
projectoperations / install_cursor.sh
Created March 13, 2026 08:51 — forked from szeyu/install_cursor.sh
Cursor AI IDE Installer and Updater Script
#!/bin/bash
installCursor() {
local CURSOR_URL="https://downloader.cursor.sh/linux/appImage/x64"
local ICON_URL="https://miro.medium.com/v2/resize:fit:700/1*YLg8VpqXaTyRHJoStnMuog.png"
local APPIMAGE_PATH="/opt/cursor.appimage"
local ICON_PATH="/opt/cursor.png"
local DESKTOP_ENTRY_PATH="/usr/share/applications/cursor.desktop"
echo "Checking for existing Cursor installation..."
@projectoperations
projectoperations / #vscode-setup.md
Created December 22, 2025 20:39 — forked from AssisrMatheus/#vscode-setup.md
My optimized Visual Studio Code setup

Moving Files with SharePoint Online REST APIs in Microsoft Flow

About

This is an overview of how to move files with Microsoft Flow using the SharePoint - Send an HTTP request to SharePoint action and SharePoint Online REST APIs.

These SharePoint Online REST APIs can be used outside of Flow, but you will need to handle authentication and provide an X-RequestDigest header with any POST requests (as with any SP REST POST request).

In the case of Flow's SharePoint - Send an HTTP request to SharePoint action, authentication is handled for you and you do not need to provide the X-RequestDigest header.

#!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
# App Default Values
APP="Daytona"
var_tags="docker;development;daytona"
var_cpu="2"
var_ram="4096"
var_disk="20"
var_os="ubuntu"
@projectoperations
projectoperations / install-docker-ubuntu-2025.md
Created November 23, 2025 06:22 — forked from sinobash/install-docker-ubuntu-2025.md
How to Install Rootless Docker on Ubuntu on 2025

Rootless Docker

This guide teaches how to use Rootlesskit and Docker to install a Rootless Docker and run Docker containers in Rootless mode. The setup works for Linux (Ubuntu, Debian, etc.), and Raspberry PI Docker allows you to create Rootless containers. This means, Docker Engine will create and run these containers in Rootless mode. They will run as unprivileged to the user namespaces creating them.

Install Rootless Docker Kit and Run Rootless Container Mode

You will learn different ways to get Rootless container ready:

  • Using Docker Engine
  • Using Rootlesskit
@projectoperations
projectoperations / install_rootless_docker.sh
Created November 20, 2025 13:51 — forked from psavarmattas/install_rootless_docker.sh
docker-rootless-install-scripts
#!/bin/bash
# Script to install rootless Docker for the current user
check_command() {
if ! command -v "$1" &> /dev/null; then
echo "Error: $1 is required but not found. Please install it and try again." >&2
exit 1
fi
}

We can configure the USB drive so that it can be auto-mounted when plugged in.

  1. Insert the external USB drive to the linux server

  2. UUID (universal unique identifier) is used in Linux for the detection of the USB which is plugged in or for the identification of the partition used by the USB drive. Because of this we have to be a root user. We can be a root user by the sudo command, it will ask for a password.

  3. Use this command to list the disk or dirves connected

pi@raspberrypi:~ $ lsblk
NAME        MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT