Skip to content

Instantly share code, notes, and snippets.

View yoonsangmin's full-sized avatar
📚
Studying

Sangmin Yun yoonsangmin

📚
Studying
  • Seoul
View GitHub Profile
@yoonsangmin
yoonsangmin / issue-maker.sh
Last active January 10, 2025 06:44
Github Issue Maker script for me. This helps make same issue for multiple repos. It needs gh cli.
#!/bin/bash
# Please fill these vars
org="yoonsangmin"
repos=(VRResearchProject UI_Practice)
main_repo="UI_Practice"
main_repo_issue="./issue_with_list.md"
# Don't fill these vars
main_repo_url=""
@yoonsangmin
yoonsangmin / StartFTP.bat
Created December 24, 2022 07:30
This is batch file for starting and stopping windows ftp server.
@echo off
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...