Skip to content

Instantly share code, notes, and snippets.

@fikono
fikono / Scalability.ini
Created April 18, 2025 10:53 — forked from Lemon-King/Scalability.ini
Cinema quality settings for Soul Calibur 6 that work with the setting scales ingame. To use this you'll need to copy the following into Scalability.ini located under %localappdata%\SoulcaliburVI\Saved\Config\WindowsNoEditor\ and set it to Read-Only or else SC6 will overwrite everything! These settings are tested on a fairly high end machine so p…
; Soul Calibur VI: Cinema Quality
; Version: 1.01
; TextureQuality@3 is combined with ViewDistanceQuality@Cine as the setting does not exist on SC6
[TextureQuality@3]
r.Streaming.MipBias=-2
r.SkeletalMeshLODBias=-2
r.MaxAnisotropy=16
r.Streaming.LimitPoolSizeToVRAM=0
r.Streaming.PoolSize=3000
@fikono
fikono / rename_heic_by_date_python.py
Last active February 22, 2025 22:48 — forked from JohnBra/rename.py
Renames image files to their creation date. Modified to work with heic files
# Rename Images with Date Photo Taken
# Purpose: Renames image files in a folder based on date photo taken from EXIF metadata
# Original Author: Matthew Renze
# Usage: python.exe rename.py input-folder
# - input-folder = (optional) the directory containing the image files to be renamed
# Examples: python rename.py /path/to/photos
@fikono
fikono / download_flickr_image.py
Created December 3, 2021 11:20 — forked from yunjey/download_flickr_image.py
downloading images from flickr using python-flickr
# First, you should install flickrapi
# pip install flickrapi
import flickrapi
import urllib
from PIL import Image
# Flickr api access key
flickr=flickrapi.FlickrAPI('c6a2c45591d4973ff525042472446ca2', '202ffe6f387ce29b', cache=True)