This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
- 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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CHECK OUT THIS GUY HE'S IN THE GIST | |
| ⣠⣦⣤⣀ | |
| ⠀⠀⠀⠀⢡⣤⣿⣿ | |
| ⠀⠀⠀⠀⠠⠜⢾⡟ | |
| ⠀⠀⠀⠀⠀⠹⠿⠃⠄ | |
| ⠀⠀⠈⠀⠉⠉⠑⠀⠀⠠⢈⣆ | |
| ⠀⠀⣄⠀⠀⠀⠀⠀⢶⣷⠃⢵ | |
| ⠐⠰⣷⠀⠀⠀⠀⢀⢟⣽⣆⠀⢃ | |
| ⠰⣾⣶⣤⡼⢳⣦⣤⣴⣾⣿⣿⠞ | |
| ⠀⠈⠉⠉⠛⠛⠉⠉⠉⠙⠁ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo $'\n' | |
| echo '===Step 1 of 3: Asking for Storage Permission===' | |
| sleep 2; | |
| termux-setup-storage | |
| sleep 2; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 | |
| # |