Skip to content

Instantly share code, notes, and snippets.

View tadghh's full-sized avatar
🌌
Learning

�ethan tadghh

🌌
Learning
View GitHub Profile
// Using the windows api to get a parents handle with only the childs window class
unsafe extern "system" fn enum_window_proc(hwnd: HWND, lparam: LPARAM) -> BOOL {
let data = &mut *(lparam.0 as *mut FindWindowData);
let mut pid = 0;
if !IsWindowVisible(hwnd).as_bool() {
return true.into();
use core::fmt;
use std::{env::VarError, io};
use leptos::ServerFnError;
use sqlx::{postgres::PgPoolOptions, PgPool};
use tokio::sync::OnceCell;
use super::{
blog::{BlogError, BlogPreview},
project::ProjectPreview,
@tadghh
tadghh / dcache_manager.rs
Created November 26, 2024 20:56
blog cache manager
```rust
use core::{fmt, future::Future};
use std::{io, sync::Arc};
use tokio::{
sync::{OnceCell, RwLock},
task,
};
use crate::server_functions::{blog::ConvertToBlogContentVec, database::get_blogs};

Fix Lenovo Hub dropouts under load

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000] "DPMstDscDisable"=dword:00000002

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0001] "DPMstDscDisable"=dword:00000002

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0002] "DPMstDscDisable"=dword:00000002 

Install CUDA on Rocky Linux 9.4 for Quadro K1100M

find the correct package version here

# Remember to remove any previous nvidia install
dnf list installed | grep nvidia

# Disable official driver as we are out of support
dnf module disable nvidia-driver
# Add rpmfusion
@tadghh
tadghh / Dockerfile
Created September 27, 2024 18:05
Pandoras Pot (Rust Hellpot) Alpine image (11. 8MB)
FROM rust:alpine as build
# Install dependencies needed for building Rust projects
RUN apk add --no-cache musl-dev
COPY . .
# Ensure config file exists
ARG CONFIG="config.toml"
RUN [ -z "$CONFIG" ] || touch "./$CONFIG"