Skip to content

Instantly share code, notes, and snippets.

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

Ankur Verma ankur20us

🏠
Working from home
View GitHub Profile
@ankur20us
ankur20us / run.bat
Created August 29, 2023 19:58
Batch file to convert the basic iso dump of xbox game in xiso format using the extract iso program (https://github.com/XboxDev/extract-xiso)
::::::::::::::::
:: 1. Keep this file at the same folder where extract-iso is present
:: 2. Keep the iso file in the same folder too
:: 3. ./run.bat
:: 4. Select the iso to convert
::::::::::::::::
@echo off
setlocal enabledelayedexpansion
@ankur20us
ankur20us / docker-compose.yml
Last active January 28, 2022 08:54
Postgres Docker Cluster with Connected Pgadmin
version: '2'
services:
cluster_master:
image: 'bitnami/postgresql:latest'
networks:
- cluster_network
ports:
- '5432'
volumes: