윈도우 데스크탑에서 서버로 사용 중인 미니PC에 물린 DAS 내 파일 가져올 때 속도가 더럽게 느림
- 다음 명령어로 파편화 여부를 확인
#!/usr/bin/python | |
from typing import List | |
from dataclasses import dataclass | |
from argparse import ArgumentParser | |
from pathlib import Path | |
from urllib.parse import urlparse, ParseResult | |
from requests import session | |
from subprocess import call | |
@dataclass |
#!/bin/sh | |
# simple podman exec macro for quadlet containers | |
# locate this script into ~/.profile | |
# $ crontab -l | |
# */5 * * * * . ~/.profile && XDG_RUNTIME_DIR="/run/user/$(id -u)" nextcloud_cron | |
# 0 * * * * . ~/.profile && XDG_RUNTIME_DIR="/run/user/$(id -u)" nextcloud_occ files:scan --path=user/files | |
quadlet () { | |
local container=$1 | |
if [ -z "$container" ]; then |
This is a simple tutorial on how to get rid of annoying protections!
scoop install android-studio
$env:Path = "${env:LocalAppdata}\Android\Sdk\build-tools\xx.x.x;" + $env:Path
스크립트 바인딩된 실행 파일 다운로드: https://files.catbox.moe/muu7m2.zip
#!/bin/zsh | |
PATH="/usr/lib/jvm/java-21-openjdk/bin/:$PATH" \ | |
java \ | |
-Xms24G -Xmx24G \ | |
\ | |
--add-modules=jdk.incubator.vector \ | |
\ | |
-XX:+UnlockExperimentalVMOptions \ | |
-XX:+UseLargePages -XX:+UseTransparentHugePages \ |
import logging | |
from pathlib import Path | |
from subprocess import run | |
input_dir = Path("input/") | |
output_dir = Path("output/") | |
max_duration = 2.95 | |
max_size = 1024 * 256 |