Skip to content

Instantly share code, notes, and snippets.

@kamleong
kamleong / gist:b1a9f4bee5f2f30315cad0c92ee7661b
Created January 16, 2026 03:23
win11-personalization-colors
Settings > Personalization > Colors
> Accent color > Manual
> Custom colors > View colors > More > RGB: #C8C8FF (enter) 7F7FFF (display:bug??)
> Show accent color on title bards and window borders [On]
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM]
"AccentColor"=dword:ffffc8c8
"ColorizationColor"=dword:c4c8c8ff
#!/usr/bin/env python3
import sys
print(sys.argv[0]) ## __file__
filepath = sys.argv[1] if len(sys.argv) > 1 else r"C:\Windows\win.ini"
print(filepath)
#f2 = open(r"B:\a.txt","a+")
#f2.write("Hello \n")
#f2.close()
Oracle 9i XMLAgg String Aggregation: Concat Data from Rows to Col
=================================================================
Below is supported in 9i (may appear complicated at first look, but actually is rather simple). There are other advance features in this area for 10g & 11g
WITH table1 AS (
SELECT 1 attr1 FROM DUAL UNION
SELECT 2 attr1 FROM DUAL UNION
SELECT 3 attr1 FROM DUAL UNION
SELECT 4 attr1 FROM DUAL