Skip to content

Instantly share code, notes, and snippets.

View rendicahya's full-sized avatar
🎯
Focusing

Randy Cahya Wihandika rendicahya

🎯
Focusing
View GitHub Profile
@rendicahya
rendicahya / poetry-uv-cheatsheet.md
Last active May 9, 2026 13:02
Poetry & uv Cheatsheet

Poetry & uv Cheatsheet

Installation

Task Poetry uv
Install via official installer curl -sSL https://install.python-poetry.org | python3 - curl -LsSf https://astral.sh/uv/install.sh | sh
Install via pip pip install poetry pip install uv
Verify installation poetry --version uv --version

Conda Cheatsheet

Project Management

  • Create new environment
conda create -n <env-name>
conda create -n <env-name> python=<version>
@rendicahya
rendicahya / kesesuaian-standar-mutu-filkom.md
Last active August 14, 2026 08:35
Kesesuaian Standar Mutu FILKOM

Hasil Pengecekan Kesesuaian Standar Mutu terhadap Instrumen LAM INFOKOM

Dokumen yang dibandingkan:

  • standar-mutu.xlsx — 187 baris standar mutu, dikelompokkan ke kode kriteria 1.16.1 (=C.1–C.6), dengan kolom target untuk 8 kombinasi jenjang/prodi: Sarjana (Teknik Informatika, Teknik Komputer, Sistem Informasi, Teknologi Informasi, Pendidikan Teknologi Informasi), Magister (Ilmu Komputer, Sistem Informasi), dan Doktor (Ilmu Komputer).
  • sarjana.txt, magister.txt, doktor.txt — matriks penilaian LAM INFOKOM kriteria C.1–C.6, masing-masing dengan sub-poin A/B/(C/D).

Ringkasan Eksekutif

Kriteria Sarjana Magister Doktor Status
@rendicahya
rendicahya / clear-whatsapp.ps1
Created September 6, 2026 04:36
WhatsApp Cache Cleanup
# ============================================
# WhatsApp Cache Cleanup
# ============================================
# Relaunch in PowerShell when double-clicked
if ($Host.Name -notlike "*ConsoleHost*") {
Start-Process powershell.exe -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`""
exit
}