Either use dagger ci tool to run the full build toolchain or run the scripts step by step (with the correct environment variables set)
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
| import { continueRender, delayRender, RemotionVideoProps } from 'remotion'; | |
| import { GlslVarType, setUniform } from './glUtils'; | |
| export interface VideoShaderOptions { | |
| variables?: { | |
| type: GlslVarType; | |
| name: string; | |
| }[]; | |
| } |
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 interface HyperboleRequest { | |
| url: URL; | |
| body?: unknown; | |
| method: string; | |
| pathname: string; | |
| } | |
| async function hyperboleRequest(request: Request): Promise<HyperboleRequest> { | |
| const decoder = new TextDecoder(); | |
| const url = new URL(request.url); |
- Install go
- Start manticore
docker run -d --name manticore -p 9308:9308 manticoresearch/manticore:dev-16.2.3 - Execute script using
go run .
Because of the crash, Manticore seems to be unable to properly drop the table afterwards. In order to try again, you need to remove leftover files using
docker exec manticore rm -r crash_table
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 Blue Archive My Office | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2026-04-11 | |
| // @description Automatically handles Blue Archive My Office page | |
| // @author n/a | |
| // @match https://bluearchive.nexon.com/user/myoffice* | |
| // @match https://signin.nexon.com/pages/account/auth-selector | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=nexon.com | |
| // @updateURL https://gist.githubusercontent.com/olee/b9a1d576fc2b02b553834d8fc616bb34/raw/ba-my-office.js |
OlderNewer