Copyright © 2017 Knowledge Powerhouse
Discover gists
This file contains 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 Tuesday, February 11, 2025, 9:20:39 PM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Expanded Roofing (Continued)(Mlie.ExpandedRoofing)[mv:1.5.3]: ExpandedRoofing(av:1.0.0,fv:1.5.3), VersionFromManifest(0.0.0) | |
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.4]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.4) |
This file contains 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
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? | |
#60: | |
new file mode 100644 | |
WARNING: 'ment' may be misspelled - perhaps 'meant'? | |
#70: FILE: arch/riscv/include/asm/kvm_vcpu_sbi_fwft.h:6: | |
+ * Clément Léger <cleger@rivosinc.com> | |
^^^^ | |
WARNING: 'ment' may be misspelled - perhaps 'meant'? |
This file contains 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
Full log: | |
W: Support for running offline not available (unshare: unshare failed: Operation not permitted) | |
I: config: PASS in 0:00:02.926265 | |
I: default: FAIL in 0:00:01.603960 | |
I: kernel: SKIP in 0:00:00.000010 | |
I: xipkernel: SKIP in 0:00:00.000004 | |
I: modules: SKIP in 0:00:00.003514 | |
I: dtbs: PASS in 0:00:00.580739 | |
I: dtbs-legacy: SKIP in 0:00:00.002517 | |
I: debugkernel: SKIP in 0:00:00.000003 |
This file contains 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
namespace functions; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.Clear(); | |
string filePath = "map.txt"; | |
char[,] map = GetMap(filePath); |
This file contains 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
Full log: | |
W: Support for running offline not available (unshare: unshare failed: Operation not permitted) | |
I: config: PASS in 0:00:02.909253 | |
I: default: FAIL in 0:00:01.552091 | |
I: kernel: SKIP in 0:00:00.000006 | |
I: xipkernel: SKIP in 0:00:00.000002 | |
I: modules: SKIP in 0:00:00.002903 | |
I: dtbs: PASS in 0:00:00.629088 | |
I: dtbs-legacy: SKIP in 0:00:00.002674 | |
I: debugkernel: SKIP in 0:00:00.000003 |
This file contains 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
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) | |
clahe = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(8,8)) | |
equalized = clahe.apply(gray_image) |
This file contains 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
from telegram.ext import Application, CommandHandler, MessageHandler, filters, CallbackQueryHandler | |
from telegram import InlineKeyboardButton, InlineKeyboardMarkup | |
from telegram.error import ChatMigrated | |
import logging | |
import requests | |
import re | |
logging.basicConfig(level=logging.INFO) | |
TOKEN = '' |
/Users/michaelsheinberg/code/nautobot-app-floor-plan/nautobot_floor_plan/forms.py
/Users/michaelsheinberg/code/nautobot-app-floor-plan/nautobot_floor_plan/forms.py:99:11 - error: "Meta" overrides symbol of same name in class "BaseForm"
"nautobot_floor_plan.forms.FloorPlanForm.Meta" is not assignable to "django.forms.forms.BaseForm.Meta"
Type "type[nautobot_floor_plan.forms.FloorPlanForm.Meta]" is not assignable to type "type[django.forms.forms.BaseForm.Meta]" (reportIncompatibleVariableOverride)
/Users/michaelsheinberg/code/nautobot-app-floor-plan/nautobot_floor_plan/forms.py:111:13 - error: "__setitem__" method not defined on type "Mapping[str, Any]" (reportIndexIssue)
/Users/michaelsheinberg/code/nautobot-app-floor-plan/nautobot_floor_plan/forms.py:112:13 - error: "__setitem__" method not defined on type "Mapping[str, Any]" (reportIndexIssue)
/Users/michaelsheinberg/code/nautobot-app-floor-plan/nautobot_floor_plan/forms.py:115:13 - error: "__setitem__" method not defined on type "Map
This file contains 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 SwiftUINavigation | |
@main | |
struct NavigationApp: App { | |
var body: some Scene { | |
WindowGroup { | |
StackView() | |
} |