Skip to content

Instantly share code, notes, and snippets.

View kirimaru-jp's full-sized avatar
🌏

Cuong Ngo kirimaru-jp

🌏
View GitHub Profile
@kirimaru-jp
kirimaru-jp / win-home-gpedit.md
Created October 17, 2025 06:19 — forked from lelegard/win-home-gpedit.md
Enabling the Group Policy Editor on Windows 10 Home

Enabling the Group Policy Editor on Windows 10 Home

On Windows 10 Home edition, there is no Local Group Policy Editor (gpedit.msc) and no Local Security Policy Editor (secpol.msc). These tools are reserved to Professional editions of Windows.

It is however possible to install them on Windows 10 Home if you need them.

Open a PowerShell window as administrator and run the following command:

@kirimaru-jp
kirimaru-jp / cuda-wsl2-ubuntu.md
Last active September 1, 2024 13:56 — forked from Ayke/cuda-wsl2-ubuntu.md
Everything About CUDA in WSL2 Ubuntu

Prerequisites, i.e. the most important things

  1. Time of writing: Jan 18, 2023 (updated Sep 01, 2024). The following assume you're trying to install CUDA on WSL2 Ubuntu.

  2. Check support matrix first before you install any version of CUDA, because chances are the latest CUDA does not have cuDNN support yet, then you'll have to re-install older version if you found out later.

    https://docs.nvidia.com/deeplearning/cudnn/support-matrix/index.html#cudnn-cuda-hardware-versions

    At the time of writing, the latest cuDNN version is 8.7 and it supports CUDA 11.8.

  3. Windows 10 must be build 20145 or later.

@kirimaru-jp
kirimaru-jp / audioplayer.py
Created March 1, 2020 11:24 — forked from deeplycloudy/audioplayer.py
Simple Python audio player with matplotlib and pyaudio
""" Play an audio file with pyaudio while concurrently showing audio playhead
on a matplotlib plot of the audio time series and spectrogram.
Adjust duration and filename in the script below to reflect your audio file.
v. 0.1
21 Mar 2012
Eric Bruning
"""