Files for using MinIO with docker compose while using folders as volume mountpoints.
Make sure that the environment variable MINIO_ROOT_PASSWORD is changed.
| function cloneStyleSheets(element: any): CSSStyleSheet[] { | |
| const sheets = [...(element.styleSheets || [])] | |
| const styleSheets = sheets.map((styleSheet): CSSStyleSheet|null => { | |
| try { | |
| const rulesText = [...styleSheet.cssRules].map(rule => rule.cssText).join("") | |
| let res = new CSSStyleSheet() | |
| res.replaceSync(rulesText) | |
| return res | |
| } catch (e) { | |
| console.debug(e); |
| /* | |
| SVG (to PNG) to ICO Converter for Eto.Forms | |
| Originally written by: Kate Ward <kate@dariox.club> | |
| Depends on: | |
| - Eto.Forms 2.9.x or later | |
| - Svg 3.4.7 | |
| Generated SVG Icons are cached in "IconCache". | |
| You can modifiy this code so you can have a standalone function for generating |
| gitea | 2025/05/14 09:52:49 ...eb/routing/logger.go:102:func1() [I] router: completed GET /repo/migrate for 203.0.172.251:0, 200 OK in 4.9ms @ repo/migrate.go:36(repo.Migrate) | |
| gitea | 2025/05/14 09:52:49 ...eb/routing/logger.go:102:func1() [I] router: completed GET /avatars/5921e24165af71637d21737ac2027da789a44f10cdf6a71201b85484113079e8?size=48 for 203.0.172.251:0, 200 OK in 0.6ms @ web/base.go:22(avatars) | |
| gitea | 2025/05/14 09:52:50 ...eb/routing/logger.go:102:func1() [I] router: completed GET /user/events for 203.0.172.251:0, 200 OK in 604.4ms @ events/events.go:18(events.Events) | |
| gitea | 2025/05/14 09:52:50 ...eb/routing/logger.go:102:func1() [I] router: completed GET /repo/migrate?service_type=2&org=&mirror= for 203.0.172.251:0, 200 OK in 5.7ms @ repo/migrate.go:36(repo.Migrate) | |
| gitea | 2025/05/14 09:52:51 ...eb/routing/logger.go:102:func1() [I] router: completed GET /avatars/5921e24165af71637d21737ac2027da789a44f10cdf6a71201b85484113079e8?size=56 for 203.0.172.251:0, 200 OK in 0.6ms @ web/base.go:22 |
| [package] | |
| name = "windows-unmark-readonly-rs" | |
| version = "0.1.0" | |
| edition = "2024" | |
| license = "MIT" | |
| authors = ["Kate Ward <[email protected]>"] | |
| [dependencies] | |
| bitflags = "2.9.0" | |
| widestring = "1.1.0" |
| // Used to get the panic message after PR 115974 was merged, which changed the type passed through | |
| // in the "info" parameter in the "std::panic::set_hook" callback/delegate. In the new type that | |
| // is passed through, the "message" field was removed. To get the message back from the panic info, | |
| // use the "payload_message" function. | |
| use std::panic::PanicHookInfo; | |
| fn main() { | |
| std::panic::set_hook(Box::new(move |info| { | |
| println!("Panic Info: {:#?}", info); |
| #!/usr/bin/python3 | |
| # coding: utf-8 | |
| ''' | |
| ------------------------------------------------------------------------------ | |
| Copyright 2024 Kate Ward | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
| // Uploaded as a gist instead in my AoC repo because I forgot to push yesterday :( | |
| var content = File.ReadAllLines("input.txt"); | |
| int result = 0; | |
| int secondResult = 0; | |
| for (int i = 0; i < content.Length; i++) | |
| { | |
| var line = content[i]; | |
| if (string.IsNullOrEmpty(line)) |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |
| # | |
| # DESCRIPTION: | |
| # - Script that fixes an empty toolbox in Visual Studio when you *know* that | |
| # things should be showing up in the toolbox. | |
| # | |
| # NOTE: | |
| # - Make sure that Visual Studio is closed before running this! | |
| $xi = Get-ChildItem -Path $env:LocalAppData\Microsoft\VisualStudio -Directory | |
| $targetFiles = @( |