Discover gists
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
Log uploaded on Saturday, June 21, 2025, 5:18:52 PM | |
Loaded mods: | |
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0) | |
Harmony(brrainz.harmony)[mv:2.3.4.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies) | |
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.5]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.5) |
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
@Test | |
public void testMutantDiesOnInconsistentOptionGroup() throws Exception { | |
// Custom Options subclass that returns inconsistent values | |
Options options = new Options() { | |
private boolean firstCall = true; | |
@Override | |
public OptionGroup getOptionGroup(Option option) { | |
if (firstCall) { | |
firstCall = false; |
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
val retriever = MediaMetadataRetriever().apply { setDataSource(context, uri) } | |
val duration = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION)?.toDouble() ?: 0.00 | |
// Calculate keep intervals | |
val keepIntervals = computeKeepIntervals(removedSegments, duration) | |
// Build EditedMediaItems | |
val editedMediaItems = keepIntervals.map { (start, end) -> | |
EditedMediaItem.Builder( | |
MediaItem.Builder() |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>ACOT - AI Comments Tool</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<header> | |
<h1><span class="wave">〜</span> ACOT - AI Comments Tool</h1> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-fieldsadminconsole\keepass-plugin-fieldsadminconsole.nupkg" checksum="4F8EDE1E470BA61F463CBD768EF73A29" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-fieldsadminconsole\keepass-plugin-fieldsadminconsole.nuspec" checksum="E184E6DAB664BBB799C5B9B25E3A5D88" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-fieldsadminconsole\tools\chocolateyInstall.ps1" checksum="AED4F48B4D19DBB4A975397FC60AF576" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-fieldsadminconsole\tools\chocolateyUninstall.ps1" checksum="A095B05565306BB9EDB5FE9EDE70F9F5" /> | |
</files> | |
</fileSnapshot> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Log uploaded on Saturday, June 21, 2025, 5:16:06 PM | |
Loaded mods: | |
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0) | |
Harmony(brrainz.harmony)[mv:2.3.4.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
Anomaly(Ludeon.RimWorld.Anomaly): (no assemblies) | |
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.5]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.5) |
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
~ via ☕ v21.0.7 | |
❯ steam & disown | |
[1] 101678 | |
ERROR: ld.so: object '/usr/lib/millennium/libmillennium_x86.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. | |
Redirecting Steam output... | |
bin_steam.sh[101678]: Logging to console-linux.txt disabled via STEAM_RUNTIME_LOGGER | |
bin_steam.sh[101678]: Logging to console-linux.txt disabled via STEAM_RUNTIME_LOGGER | |
bin_steam.sh[101678]: Logging to console-linux.txt disabled via STEAM_RUNTIME_LOGGER | |
~ via ☕ v21.0.7 |
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
// content.js | |
let isInitialized = false; | |
let activeCommentData = null; | |
// Initialize on document load | |
function initialize() { | |
console.log("ACOT content script loaded in Google Docs"); | |
// Observe DOM changes to detect when comments are loaded |
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
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-databasebackup\DataBaseBackup-2.0.8.6.zip.txt" checksum="4EBBE4716BA03105EBD18495D65BE066" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-databasebackup\keepass-plugin-databasebackup.nupkg" checksum="83AA9D58923228DFB3229382F72D52D6" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-databasebackup\keepass-plugin-databasebackup.nuspec" checksum="59AC7C1829C19F1E6700FE194E2A2EA9" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-databasebackup\tools\chocolateyInstall.ps1" checksum="D84EA7E2E3E8545F7051207CE9EE063A" /> | |
<file path="C:\ProgramData\chocolatey\lib\keepass-plugin-databasebackup\tools\chocolateyUninstall.ps1" checksum="BC768370DC7B092D9F2D46B96D2BF58D" /> | |
</files> | |
</fileSnapshot> |
NewerOlder