Skip to content

Instantly share code, notes, and snippets.

@cbadb
cbadb / oracle_doc_opener.html
Last active January 25, 2026 20:59
HTML/JavaScript to open My Oracle Support (MOS) documents with their old ID
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MOS Quick Access (by cbadb)</title>
<style>
body {
font-family: Arial, sans-serif;
@cbadb
cbadb / 1. Proxmox_on_Hyper-V_MiniHowTo.md
Last active December 16, 2025 13:05
Proxmox on Hyper-V

Download Proxmox ISO

Download from www.proxmox.com/de/downloads:

  • Proxmox VE 9.0 ISO Installer
  • --> proxmox-ve_9.0-1.iso (Size: 1,64 GB, Upload Date: 5. August 2025, SHA256SUM: 228f948ae696f2448460443f4b619157cab78ee69802acc0d06761ebd4f51c3e)
  • Check SHA256SUM
    certutil -hashfile C:\Users\CBA\Downloads\proxmox-ve_9.0-1.iso SHA256
    

SHA256-Hash von C:\Users\CBA\Downloads\proxmox-ve_9.0-1.iso:

@IngoMeyer441
IngoMeyer441 / x-resize
Last active August 5, 2025 23:30 — forked from manuuurino/x-resize
Manual Implementation of Auto Resizing For Non-Gnome Environments (like XFCE) running under Spice/Libvirt
#!/bin/bash
# SPDX-License-Identifier: MIT
# Steps:
# 1) Make sure bash is available
# 2) Create udev rule
# - path to new udev rule: /etc/udev/rules.d/50-x-resize.rules
# - udev rule content:
# ACTION=="change", KERNEL=="card[0-9]*", SUBSYSTEM=="drm", RUN+="/usr/local/bin/x-resize"
# 3) Create /var/log/autores directory
# 4) Create script /usr/local/bin/x-resize (this file) and make executable
@briandignan
briandignan / save_restore_dependencies.sql
Last active November 13, 2025 07:29 — forked from claudep/save_restore_dependencies.sql
Changed types for compatibility with PG12. Added save/restore for indexes/rules
create table if not exists deps_saved_ddl
(
deps_id serial primary key,
deps_view_schema name,
deps_view_name name,
deps_ddl_to_run text
);
create or replace function deps_save_and_drop_dependencies(p_view_schema name, p_view_name name) returns void as
$$
@emadehsan
emadehsan / Screen Unix Cheat Sheet.md
Created April 18, 2018 11:52
Screen Linux/Unix command cheat sheet

Install Screen

$ sudo apt install screen

Enter a new Screen Session

$ screen

Detach from current screen session

@chunter
chunter / pageant-autoload-keys-at-startup.txt
Created June 20, 2017 10:51
Make Pageant autoload keys at startup
To make Pageant automatically run and load keys at startup:
- Find the location of pageant.exe
- Windows key + R to open the 'run' dialog box
- Type: 'shell:startup' in the dialog box
- Create a shortcut to the pageant.exe and put into this startup folder.