Skip to content

Instantly share code, notes, and snippets.

@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created February 11, 2025 18:05
svg-explorer-extension v0.1.1.20170428 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2270195762-3335344054-2709297393-1000</user>
<keys>
<key installerType="InnoSetup" displayName="SVG Explorer Extension 0.1.1" displayVersion="0.1.1">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{4CA20D9A-98AC-4DD6-9C16-7449F29AC08A}_is1</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[C:\Program Files\Dotz Softwares\SVG Explorer Extension\]]></InstallLocation>
<UninstallString><![CDATA["C:\Program Files\Dotz Softwares\SVG Explorer Extension\unins000.exe" /SILENT]]></UninstallString>
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created February 11, 2025 18:05
Rimworld output log published using HugsLib
Log uploaded on Tuesday, February 11, 2025, 12:04:33 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
BetterLoading(me.samboycoding.betterloading.dev)[mv:3.5.0.0]: BetterLoading(2.3.0), Tomlet(3.1.3)
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)
Big and Small - Framework(RedMattis.BetterPrerequisites): BetterPrerequisites(1.0.0), BSXeno(1.0.0), RedHealth(1.0.0)
internal fun Modifier.overlayBackground(
anchors: () -> List<HintAnchorState>,
): Modifier = composed {
val backgroundBrush = LocalHintOverlayBrush.current
val backgroundColor = LocalHintOverlayColor.current
val layoutDirection = LocalLayoutDirection.current
val density = LocalDensity.current
drawWithCache {
// Prepare path for background
@vitoksmile
vitoksmile / HintAnchor.kt
Created February 11, 2025 18:04
ComposeHints
fun Modifier.hintAnchor(
state: HintAnchorState,
shape: Shape = RectangleShape,
): Modifier {
state.shape = shape
//..onGloballyPositioned
}
@Stable
class HintAnchorState internal constructor() {
@lvanasse
lvanasse / ci-arm64-01.log
Created February 11, 2025 18:04
[arm64-01] CI Log for nuttx @ 381d3fe64f4da2b09f12bd8f0cd2d1f07d86b3d3 / nuttx-apps @ fb0c1e10ded2a6fb9f066b9893662cbcc86e4646
Script started on 2025-02-11 17:45:36+00:00 [COMMAND="/home/ludovic/nuttx-release/run-job.sh arm64-01" <not executed on terminal>]
Now running https://github.com/lupyuen/nuttx-release/blob/main/run-job.sh
Called by https://github.com/lupyuen/nuttx-release/blob/main/run-ci.sh
+ job=arm64-01
+ neofetch
.-/+oossssoo+/-.
`:+ssssssssssssssssss+:`
-+ssssssssssssssssssyyssss+-
.ossssssssssssssssssdMMMNysssso.
/ssssssssssshdmmNNmmyNMMMMhssssss/
import os
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2"
import argparse
import numpy as np
from pyteomics import mgf, mass
from dataclasses import dataclass, asdict
import tensorflow as tf
import tensorflow.keras as k
@thetafferboy
thetafferboy / aa-unanswered.js
Last active February 11, 2025 18:21
AlsoAsked Unanswered Questions (Screaming Frog)
// AlsoAsked Unanswered Questions
// Note: Best used with Screaming Frog "List" mode and given a list of informational / blog pages
//
//
// IMPORTANT:
// You will need to supply your ChatGPT and AlsoAsked API key below.
// These will be stored as part of your SEO Spider configuration in plain text.
// Also be mindful if sharing this script that you will be sharing your API key
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created February 11, 2025 18:03
ontopreplica v3.5.1.20170427 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2270195762-3335344054-2709297393-1000</user>
<keys>
<key installerType="Unknown" displayName="OnTopReplica" displayVersion="3.4">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\OnTopReplica</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA["C:\Users\vagrant\AppData\Local\OnTopReplica"]]></InstallLocation>
<UninstallString><![CDATA["C:\Users\vagrant\AppData\Local\OnTopReplica\OnTopReplica-Uninstall.exe"]]></UninstallString>
package main
import (
"bufio"
"flag"
"fmt"
"os"
"os/exec"
"strings"
)
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
hist = cv2.calcHist([gray_image], [0], None, [256], [0, 256])