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
| {"log":{"version":"1.2","creator":{"name":"WebInspector","version":"537.36"},"pages":[{"startedDateTime":"2025-04-10T10:17:13.207Z","id":"page_1","title":"https://cloud.example.de/apps/files/favorites/150100?dir=/Events/2024/2024-10-04%20idk/SomeUser%20Gopro","pageTimings":{"onContentLoad":2111.951000006229,"onLoad":2734.22600000049}}],"entries":[{"_connectionId":"151697","_initiator":{"type":"script","stack":{"callFrames":[{"functionName":"","scriptId":"3021","url":"https://cloud.example.de/dist/core-common.js?v=150e6fb3-12","lineNumber":0,"columnNumber":3680728},{"functionName":"xhr","scriptId":"3021","url":"https://cloud.example.de/dist/core-common.js?v=150e6fb3-12","lineNumber":0,"columnNumber":3678732},{"functionName":"m","scriptId":"3021","url":"https://cloud.example.de/dist/core-common.js?v=150e6fb3-12","lineNumber":0,"columnNumber":3685227}],"parent":{"description":"Promise.then","callFrames":[{"functionName":"_request","scriptId":"3021","url":"https://cloud.example.de/dist/core-common.js?v=150e6fb3-1 |
- this guide adheres to the recommendation of the postgres documentation to use the version of
pg_dumpallfrom the postgres version you're upgrading to, not the old/curent one https://www.postgresql.org/docs/current/upgrading.html#UPGRADING-VIA-PGDUMPALL - shutdown paperless-ngx and postgres
- write a
temp.yamlcompose file:
services:
old:
image: postgres:13
container_name: pg13
volumes:Ideas for a programming language similar to TypeScript that compiles to JavaScript. Somewhat of an inversion of DreamBerd.
// === and !== don't exist
"1" == 1 // TypeError
if (someString) {} // TypeError, must use someString != ""
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
| /** @param {FbMetadbHandle} track */ | |
| const playTrack = track => { | |
| const result = fb.RunContextCommandWithMetadb("Play", track) | |
| if (result !== true) { | |
| throw new Error(`Play command failed for track "${track.Path}"`) | |
| } | |
| } | |
| const makeLogger = (...prefixed) => ( | |
| (...args) => { |
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
| "use strict" | |
| window.DefineScript("Spectrogram Edit") | |
| include("./felpers.js") | |
| const ffmpegFilterConfig = "atrim=0:30,showspectrumpic=legend=0:s=512x512" | |
| const titleFormatImagePath = fb.TitleFormat(`$crc32($lower(%path%'${ffmpegFilterConfig}')).jpeg`) | |
| const titleFormatCue = fb.TitleFormat("$if($or($strcmp(%__cue_embedded%,yes),$strcmp($right(%path%,3),cue)),cue,)") | |
| const dataFolder = pathJoin(fb.ProfilePath, "js_data") | |
| idemptCreateFolder(dataFolder) |
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
| export const patchCommandHints = () => { | |
| Scene_OmoriFile.prototype.createCommandHints = function() { | |
| this._commandHints = new Sprite(new Bitmap(Math.ceil(Graphics.boxWidth / 2), 60)); | |
| this.addChild(this._commandHints); | |
| this._commandHints.position.set(16,Graphics.boxHeight-this._commandHints.height-4); | |
| this._commandHints.bitmap.clear(); | |
| let iconSize = 31; |
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
| /** | |
| Backup / transfer your favourited gifs between clients (works without mods & in the browser) | |
| by Ven#8810 at https://discord.com/channels/538759280057122817/755005784999329883/859937854897782804 | |
| Backup gifs: | |
| */ | |
| JSON.stringify(Object.values(webpackJsonp.push([[],{['']:(_,e,r)=>{e.cache=r.c}},[['']]]).cache).find(m=>m?.exports?.default?.getRandomFavorite).exports.default.getFavorites()); | |
| /* | |
| Restore them later: | |
| */ |
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
| (() => { | |
| let existing = document.querySelector("#ar") | |
| if (existing) { | |
| existing.remove() | |
| } else { | |
| let styleNode = document.createElement("style") | |
| styleNode.id = "ar" | |
| styleNode.type = "text/css" | |
| styleNode.appendChild(document.createTextNode("video{transform:scaleX(calc((3/2) / (16/9)))}")) | |
| document.head.appendChild(styleNode) |
NewerOlder