Distant Horizons v2.0.0 (and up) shader compatibility information.
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
| # note: the hash is located at offset 0x14, after the int32 magic (0xDCDCF5F5), int64 size, and int64 snapshot kind fields. | |
| # last update: 2025/01/07 | |
| # snapshot_hash,dart_version_tag | |
| 19ac30c2bacca37ef7691604e75be559,2.0.0 | |
| d120342d48b35fc67901acb723bb6e9f,2.0.0-dev.0.0 | |
| d120342d48b35fc67901acb723bb6e9f,2.0.0-dev.0.1 | |
| 53db5f61774a5fbc5ee04696b38726f8,2.0.0-dev.1.0 | |
| 3cebf13e885ccde5bf5d36d308390ddf,2.0.0-dev.10.0 | |
| 4980a5a9e7247ed5f306c8c565d193cc,2.0.0-dev.11.0 | |
| 8ed2b9130065c72a181a9a40e17387bd,2.0.0-dev.12.0 |
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
| import SwiftUI | |
| import UIKit | |
| class ProximityObserver { | |
| @objc func didChange(notification: NSNotification) { | |
| print("MyView::ProximityObserver.didChange") | |
| if let device = notification.object as? UIDevice { | |
| print(device.proximityState) | |
| } | |
| } |
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
| ExportOptions.plist - Options in a better order | |
| Xcodebuild manfile says the following | |
| > **Distributing Archives** | |
| > The -exportArchive option specifies that xcodebuild should distribute the archive specified by -archivePath using the options specified by | |
| > -exportOptionsPlist. xcodebuild -help can print the full set of available inputs to -exportOptionsPlist. The product can either be uploaded to Apple or | |
| > exported locally. The exported product will be placed at the path specified by -exportPath. | |
| The following is the list of settings (as of Xcode 10.1) output by `xcodebuild --help` but in a more logical order. |
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
| start on startup | |
| script | |
| sleep 30 | |
| echo 1 > /proc/sys/kernel/sysrq | |
| echo c > /proc/sysrq-trigger | |
| end script |
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
| """ | |
| Url: https://gist.github.com/wassname/1393c4a57cfcbf03641dbc31886123b8 | |
| """ | |
| import unicodedata | |
| import string | |
| valid_filename_chars = "-_.() %s%s" % (string.ascii_letters, string.digits) | |
| char_limit = 255 | |
| def clean_filename(filename, whitelist=valid_filename_chars, replace=' '): |
This is a short guide on how to install KDE 1 on Arch Linux.
Install qt1-git, kde1-kdelibs-git & kde1-kdebase-git from the AUR. Extra applications are avaiable in kde1-kdenetwork-git, kde1-kdetoys-git, kde1-kdegames-git and kde1-kdeutils-git.
You also have to have xorg-server & xorg-xinit installed. I have not tested KDE1 with a login manager (like sddm) so I can't help you with that.
Edit ~/.xinitrc and add the following lines
export PATH=/opt/kde1/bin:$PATH
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
| /** | |
| * @param parameter - this is string that contains parameters for Http POST | |
| * @param request - old Request | |
| * @return - new {@link Request} with additional parameters | |
| * */ | |
| public static Request interceptRequest(@NotNull Request request, @NotNull String parameter) | |
| throws IOException { | |
| ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
NewerOlder