This file contains hidden or 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
| PS C:\Users\Han> rclone config -vv | |
| 2026/08/19 23:36:28 DEBUG : rclone: Version "v1.75.0" starting with parameters ["C:\\Winget\\rclone\\rclone-v1.75.0-windows-amd64\\rclone.exe" "config" "-vv"] | |
| 2026/08/19 23:36:28 DEBUG : Using config file from "C:\\Users\\Han\\AppData\\Roaming\\rclone\\rclone.conf" | |
| Current remotes: | |
| Name Type | |
| ==== ==== | |
| Machx.net webdav | |
| e) Edit existing remote |
This file contains hidden or 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
| // ==UserScript== | |
| // @name Alist 图片预览增强 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.2 | |
| // @description 在 Alist 中加载列表后,点击悬浮按钮预览目录中的图片缩略图 | |
| // @author Kimi | |
| // @match *://alist.nas.lan/* | |
| // @grant GM_xmlhttpRequest | |
| // @grant GM_addStyle | |
| // ==/UserScript== |
This file contains hidden or 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
| const _0x42cb07 = _0x3fa1; | |
| function _0x5450() { | |
| const _0x1e6867 = ['URL', 'length', 'loading=\"lazy\"', '<div class=\"centbtd\"><ins class=\"eas6a97888e\" data-zoneid=\"4866610\"></ins></div>', '<head> <link rel=\'stylesheet\' href=\'/js/just.min.css?v=3\'>\x0a <script src=\'/js/jquery.min.js?v=3\'></script>\x0a <script src=\'/js/Galle.min.js?v=3\'></script>\x0a', 'navigate', '</div></p>', 'loading=\"lazy\" id=\"lazyImage\"', '<ins class=\"eas6a97888e31\" data-zoneid=\"5101246\"></ins> ', '<p><a href', 'I/AAA', 'location', 'catch', '<div class=\"centbtd\"><ins class=\"eas6a97888e\" data-zoneid=\"5217188\"></ins></div>', 'https://i0.wp.com/pic', 'message', 'skipWaiting', '12EvEAyV', 'url', '<div class=\"centbtd\"><ins class=\"eas6a97888e\" data-zoneid=\"5217200\"></ins></div>', 'open', '33943bfzOFk', '.jpg', 'img.4khd.com', '.png', '<!-- /wp:gallery --></p>', 'mode', '<div class=\"centbtd\"><ins class=\"eas6a97888e\" data-zoneid=\"5217208\"></ins></div>', 'headers', 'toLowerCase', '<div class=\"ce |
This file contains hidden or 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
| if ("serviceWorker" in navigator) { | |
| navigator.serviceWorker.register("/static/scss.js").then(function(_0x2854af) {}); | |
| } | |
| self.addEventListener('install', function(_0xd98ed) { | |
| _0xd98ed.waitUntil(self.skipWaiting()); | |
| }); | |
| self.addEventListener("activate", function(_0x227080) { | |
| console.log("001"); | |
| _0x227080.waitUntil(self.clients.claim().then(function() { | |
| self.caches["delete"]("my-cache"); |
This file contains hidden or 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
| # | |
| # Original idea: | |
| # https://discourse.haproxy.org/t/haproxy-unable-to-redirect-to-https-when-terminating/2158 | |
| # | |
| # Stats: | |
| # https://blog.sleeplessbeastie.eu/2020/01/29/how-to-use-haproxy-stats-socket | |
| # | |
| # Global | |
| global |
This file contains hidden or 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
| <table style="max-width:1300px;"> | |
| <thead> | |
| <tr> | |
| <th><i class="fa fa-qrcode" aria-hidden="true"></i></th> | |
| <th align="center">Address</th> | |
| <th align="right">Port</th> | |
| <th align="center">UID</th> | |
| <th align="center">Network</th> | |
| <th align="center">Path</th> | |
| <th align="center">TLS</th> |
This file contains hidden or 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
| ! Title: Personal_filter by machsix | |
| ! Expires: 4 days | |
| ! Download link: https://gist.githubusercontent.com/machsix/bc579deb5b8138a0a1ce8b36b152a30c/raw/ | |
| anime1.me##script:inject(abort-on-property-read.js, eSX9S3upNm) | |
| ||xr0*.cc^$script | |
| ||xr0*.xyz^$script | |
| ||worldcup1.com/imgs/*.gif$image |
This file contains hidden or 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
| #!/bin/bash | |
| # CHANGE THESE | |
| API=1aeb5xxxxxxxxxx9dd194c56d07caf311 | |
| EMAIL="example@gmail.com" | |
| DOMAIN="example.net" | |
| LOG_DEV="/var/log/ddns.json" | |
| get_zone_id () { | |
| local zone_id=`curl -fs -X GET "https://api.cloudflare.com/client/v4/zones" \ |
This file contains hidden or 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
| // https://stackoverflow.com/questions/48014050/wait-promise-inside-for-loop | |
| // let each promise in for to finish | |
| function test(n) { | |
| let promiseChain = Promise.resolve(); | |
| for (let i = 0; i < n; i++) { | |
| const makePromise = (j) => () => new Promise((resolve,reject)=> { | |
| setTimeout(resolve, j*1000); | |
| }).then(()=>{ | |
| console.log(j); | |
| if (j < 5 ) { |
This file contains hidden or 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
| #!/bin/bash | |
| BITLOCKER_PARTITION="${1}" | |
| BITLOCKER_PASSWORD="${2}" | |
| function usage() { | |
| echo "$(basename ${0}) <partition> <password>" | |
| echo "Unlocks and mounts a bitlocker partition as read-only" | |
| echo "Get by lsblk -f" | |
| } |
NewerOlder