Skip to content

Instantly share code, notes, and snippets.

@lutwidse
lutwidse / dmm_session.py
Last active February 23, 2026 18:53
priconner_launch.py
from pymem import *
import re
BASE = 0xC000026000
pm = Pymem("DMMGamePlayer.exe")
bytes_pattern = b"\x73\x65\x73\x73\x69\x6f\x6e\x5f\x69\x64\x3d"
offset = (0x2f + 0x1 + 0x30)
start_address = pymem.pattern.scan_pattern_page(pm.process_handle, BASE, bytes_pattern)
dmm_session = pymem.memory.read_string(pm.process_handle, start_address[1], offset)
@Rian8337
Rian8337 / dpprebalance_2021-10-17.md
Last active November 3, 2021 16:01
DPP Rebalance October 17, 2021 Changelog
  • Aim revamp
    • Aim skill calculation is reverted to what it used to be, along with the addition of movement strain (moved from original speed skill).
  • Rhythm revamp
    • Rhythm skill has been removed and incorporated to speed skill (applied to tap strain).
  • HD bonus bug fix
    • This bug caused HD bonus to be 20% more than they should.
  • AR>10.33 bonus bug fix
    • This bug caused high AR (above 10.33) bonus to become nonexistent (literally).
  • Merge of PC star rating/pp changes:
  • Better star rating that correlates with pp
@bastomiadi
bastomiadi / post-installation-void-linux-glibc.txt
Last active July 18, 2026 07:02
Post installation Void Linux (Glibc)
1. Update all package system
sudo xbps-install -Suv
2. add non-free repo
sudo xbps-install -Rs void-repo-nonfree
3. Software & utilities
sudo xbps-install -Rs xdg-desktop-portal xdg-desktop-portal-gtk xdg-user-dirs xdg-user-dirs-gtk xdg-utils vlc pipewire libspa-bluetooth noto-fonts-cjk noto-fonts-emoji noto-fonts-ttf noto-fonts-ttf-extra libreoffice-writer libreoffice-calc libreoffice-impress rhythmbox neofetch ntfs-3g gimp inkscape lm_sensors wget udisks2 gvfs mtpfs gvfs-mtp gvfs-gphoto2 xtools WoeUSB xz unrar qt5-wayland nano ffmpeg Kooha handbrake inxi streamlink
4. Install chrome gnome, gnome menu For Gnome & extension
@tylermorganwall
tylermorganwall / submarine_cable_map.R
Last active May 18, 2026 00:07
Submarine Cable Map Dataviz
library(geojsonsf)
library(sf)
library(rayrender)
#Data source: https://github.com/telegeography/www.submarinecablemap.com
cables = geojson_sf("cable-geo.json")
cablescene = list()
counter = 1
for(i in 1:length(cables$geometry)) {
this video was created earlier in january from a stupid idea and was driven by sheer determination
despite lacking programming skill. here's a decent description of how it was made (because i am
too lazy to write a github readme):
1. the video
i downloaded the pv off youtube and used ffmpeg to resize it down to 70x54 dimensions (for easy
math calculations, i used 27 firefox windows, 7 tabs each, so it divided nicely). i then used
ffmpeg (again) to splice the source video into 15-second segments to reduce desyncing and cpu load.
2. the frames
CHECK OUT THIS GUY HE'S IN THE GIST
⣠⣦⣤⣀
⠀⠀⠀⠀⢡⣤⣿⣿
⠀⠀⠀⠀⠠⠜⢾⡟
⠀⠀⠀⠀⠀⠹⠿⠃⠄
⠀⠀⠈⠀⠉⠉⠑⠀⠀⠠⢈⣆
⠀⠀⣄⠀⠀⠀⠀⠀⢶⣷⠃⢵
⠐⠰⣷⠀⠀⠀⠀⢀⢟⣽⣆⠀⢃
⠰⣾⣶⣤⡼⢳⣦⣤⣴⣾⣿⣿⠞
⠀⠈⠉⠉⠛⠛⠉⠉⠉⠙⠁
@NickNaso
NickNaso / cpp.yml
Created June 3, 2020 23:55
Example of Github action for C++ rpoject
# This is a basic workflow to help you get started with Actions
# workflow - цепочка действий
# Имя процесса Билдится на всех типах 📦 🐍
name: CMake Build Matrix
# Controls when the action will run. Triggers the workflow on push
on:
push:
pull_request:
release:
@i3p9
i3p9 / ytdl.sh
Created August 7, 2019 22:44
Setup Youtube-dl env on Termux Android (Downloads via Share sheet on youtube app)
#!/bin/bash
echo $'\n'
echo '===Step 1 of 3: Asking for Storage Permission==='
sleep 2;
termux-setup-storage
sleep 2;
@MineBartekSA
MineBartekSA / catbox
Last active June 8, 2026 07:58
CatBox - An implementation of catbox.moe API in Bash
#!/bin/bash
#
# CatBox v2.0
# An implementation of catbox.moe API in Bash
# Author: MineBartekSA
# Gist: https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591
# Change log: https://gist.github.com/MineBartekSA/1d42d6973ddafb82793fd49b4fb06591?permalink_comment_id=4596132#gistcomment-4596132
#
# MIT License
#