Skip to content

Instantly share code, notes, and snippets.

View cjmaxik's full-sized avatar
🤦‍♂️

CJMAXiK cjmaxik

🤦‍♂️
View GitHub Profile
@cjmaxik
cjmaxik / README.md
Last active April 23, 2025 16:47
Skeb Helper

Skeb Helper

https://cjmaxik.com/skeb-helper

This userscript provides QoL features for Skeb:

  1. Currency conversion
  2. Price alerts (visible self-imposed limits)
  3. Timestamps are based on the locale
  4. Artist's stats on the works pages (prices, response and complete average, complete rate)
  5. NSFW works are blurred out (if NSFW is disabled in Settings, you won't even know the artist does NSFW, this is a good fix)
@cjmaxik
cjmaxik / README.md
Last active January 18, 2025 10:23
Steam valute to RUB conversion / Перевод валюты в рубли в Steam

Перевод валюты в рубли в Steam

Поддерживаются тенге, лиры, евро, фунты стерлингов, песо, гривны и доллары. Курс обновляется раз в 6 часов

Изменения

  • 1.1 - добавил доллары (USD)
  • 1.0 - добавил поддержку страницы с историей покупок
  • 0.9 - добавил гривны. Привет ПДФ
  • 0.8 - исправил обновление текущего курса валюты
  • 0.7 - исправил отображение баланса кошелька и изменил стиль оригинальной стоимости
  • 0.6 - добавил аргентинское песо, исправил ошибки
@cjmaxik
cjmaxik / installer.txt
Created October 25, 2022 05:09
[Lutris] Hard Truck 2
Runner: Wine
Version: GOG - 1.3 (Eng, Rus)
Description: Supports both English and Russian versions of GOG version 1.3.
Technical notes:
- Please select the desired language when downloading the installation file from GOG.
- The game itself will be widescreen, while the UI and truck interior will still be stretched
- It is highly recommended to go to Graphics, hit Autodetect, then set Screen Resolution to 1024x768x16
- If you want to have video cutscenes working:
1) Open `iv5setup.exe` from game directory via `Run EXE within Wine prefix` option in Lutris UI
@cjmaxik
cjmaxik / wot.php
Last active May 8, 2021 17:09
World of Trucks loading screen pictures
<?php
$images = file_get_contents('http://lscreens.eut2.online.scssoft.com/eut2/lscr/data'); // Download WoT loading screens data file
$images = trim(substr($images, 1025)); // Trim and cut first 1024 symbols (idk what to do with it)
// Making array of things
$images_array = explode('\\n', json_encode($images));
foreach ($images_array as $key => &$value) {
$value = explode(';', $value);
}