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
@echo off | |
rem CHANGE THESE FOLDERS APPROPRIATELY!! | |
set OFDIR=M:\SITES\GOG_OVERFLOW | |
set DESTDIR=R:\SITES\GOG | |
echo ---- relink GOG disk folders ---- | |
echo . (c) 2022/08 shakeyourbunny | |
echo. | |
echo PRIMARY GOG archive disk folder: %DESTDIR% | |
echo OVERFLOW GOG disk folder : %OFDIR% |
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
@echo off | |
set OFDIR=M:\SITES\GOG_OVERFLOW | |
set DESTDIR=R:\SITES\GOG | |
echo ---- link gog / game folders together ---- | |
echo . (c) 2022/08 shakeyourbunny | |
echo. | |
echo unified disk with the symbolic links (your "game drive"): %DESTDIR% | |
echo disk with other game folders : %OFDIR% | |
echo. |
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
#!/usr/bin/env python3 | |
# | |
# see also https://github.com/anderlli0053/DEV-tools/issues/10 | |
# | |
# use | |
# pip3 install json_minify for the python module | |
# | |
# on line 26, set the correct path for the bucket directory. | |
import json |
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
26-10 11:06:54.238|ERROR|IsThereAnyDeal#Common:Error in GetCurrentPrice(garrysmod,wolfenstein,uninitialized,beijingii00viiiofficialvideogameofolympicgames,prisontycooniiilockdown,huntingunlimitedii00viii,mahjongginvestigationsundersuspicion,hotdish,huntingunlimitedii0i0,heroesofmightmagicvhammersoffate,hinterland,mosbysconfederacy,crazymachinesiv,spectromancer,knightsofhonor,prisontycoonivsupermax,tradewindscaravansplusodysseypack,westwardcollection,ninjablade,chocolatierdecadencebydesign,cookingdash,dinerdashhometownhero,emeraldcityconfidential,dinertowntycoon,dinertowndetectiveagency,thenightshiftcode,nightshiftlegacyjaguarseye,fitnessdash,valerieporterandthescarletscandal,geminilost,jewelquestpack,mahjongquestcollection,coconutqueen,buildalot,buildalotiitownofyear,buildalotiiipassporttoeurope,buildalotivpowersource,farmfrenzy,farmfrenzyii,farmfrenzypizzaparty,farmfrenzyiii,farmfrenzyiiiamericanpie,cradleofrome,cradleofpersia,romanceofrome,sacrifice,gratuitousspacebattlestribe,gratuitousspacebattlesorder,gr |
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
#!/usr/bin/env python3 | |
# desteamifys mod numbers | |
# | |
import os, sys | |
import xml.etree.ElementTree as et | |
def sanitize(filename): | |
clean = filename | |
dontwant = [ "?", "*", "<", ">", "\\", "|"] | |
for d in dontwant: |
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
# progress bar with autosizing in text mode, works in the standard Windows command line interface too | |
# based on https://stackoverflow.com/a/34325723 | |
# alternative solution to https://gist.github.com/greenstick/b23e475d2bfdc3a82e34eaa1f6781ee4 without | |
# doing an subprocess (why even..?) | |
# | |
# modifications: | |
# - autosizing to console with, also works with Windows command line. | |
# - percent display has been made optional | |
# |
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
Running and Compiling lgogdownloader on CentOS 7 | |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
Requirements: | |
- CentOS 7 (at least bare-bones, minimal install), download it at https://www.centos.org/download/ | |
- working internet connection | |
- access to the lgogdownloader git repository | |
- access to the CentOS, EPEL and City-Fan.org repositories | |
- you have some basic linux knowledge what the commands generally do, otherwise look them up before executing them |