Instantly share code, notes, and snippets.
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
| Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
| openapi: 3.1.0 | |
| info: | |
| title: Makeswift API | |
| description: Documentation for the Makeswift public REST API. | |
| version: '1.0' | |
| servers: [] | |
| paths: | |
| /v1/auth/user-info: | |
| get: | |
| operationId: AuthController_getUserInfo_v1 |
konard /solution-draft-log-pr-1765988616118.txt
CreatedDecember 17, 2025 16:23
Solution draft log forhttps://github.com/link-assistant/hive-mind/pull/908 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
| # Solve.mjs Log - 2025-12-17T16:12:57.962Z | |
| [2025-12-17T16:12:57.963Z] [INFO] 📁 Log file: /home/hive/solve-2025-12-17T16-12-57-962Z.log | |
| [2025-12-17T16:12:57.965Z] [INFO] (All output will be logged here) | |
| [2025-12-17T16:12:58.409Z] [INFO] | |
| [2025-12-17T16:12:58.410Z] [INFO] 🚀 solve v0.38.1 | |
| [2025-12-17T16:12:58.411Z] [INFO] 🔧 Raw command executed: | |
| [2025-12-17T16:12:58.411Z] [INFO] /home/hive/.nvm/versions/node/v20.19.6/bin/node /home/hive/.bun/bin/solve https://github.com/link-assistant/hive-mind/pull/908 --attach-logs --verbose --no-tool-check | |
| [2025-12-17T16:12:58.412Z] [INFO] | |
| [2025-12-17T16:12:58.424Z] [INFO] |
trycf /trycf-gist-1765987147452-ba7ddfd9-c0a2-748a-0d75-cfd87bf8b181.cfm
CreatedDecember 17, 2025 16:23
TryCF Gist 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
| <cfscript> | |
| getBaseUrl= (stringurlString="" )=> { | |
| if (len(arguments.urlString ) ) { | |
| varurlParts=arguments.urlString.trim().listToArray("/" ); | |
| if(urlParts.len()>=2&&arrayFindNoCase( ["https:","http:"],urlParts[1] ) ) | |
| returnurlParts[1]&"//"&urlParts[2]&"/"; |
choco-bot /FilesSnapshot.xml
CreatedDecember 17, 2025 16:23
trivy v0.68.2 - Passed - Package Tests Results 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <fileSnapshotxmlns:xsd="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <files> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\trivy.nupkg"checksum="6369E479165B856A548BBF33B8CB828F" /> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\trivy.nuspec"checksum="E6971CFC2FBB5CA22C38CC9DE074B9B1" /> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\trivy_0.68.2_windows-64bit.zip.txt"checksum="F090CE47910265B8B122E688CF45DBB9" /> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\tools\chocolateyinstall.ps1"checksum="A9CF6C7F68FFF30096E47B0E93B3B5A6" /> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\tools\LICENSE"checksum="86D3F3A95C324C9479BD8986968F4327" /> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\tools\README.md"checksum="454B6371013D4774A4EC0449F0FC758A" /> | |
| <filepath="C:\ProgramData\chocolatey\lib\trivy\tools\trivy.exe"checksum="F5798B0619A958794A066449C76700AA" /> |
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
| data classUser(valname:String) | |
| data classUserWithInterest(valuser:User,valinterests:List<String>) | |
| classMyRepository { | |
| privateval interestsMap=mapOf( | |
| "Sarah" tolistOf( | |
| "Skiing", | |
| "Bingo" | |
| ), | |
| "Tim" tolistOf( |
KatyGuinan /2025-12-17-shopify-qa-review.md
CreatedDecember 17, 2025 16:22
Shopify QA Review - Pre-Launch Engineering Sync (Dec 17, 2024)ypelletier /midi_drumkit.ino
CreatedDecember 17, 2025 16:22
Batterie MIDI à 5 tambours contrôlée par Arduino. 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
| /******************************************************** | |
| Batterie MIDI à 5 tambours contrôlée par Arduino. | |
| Pour plus d'informations: | |
| https://electroniqueamateur.blogspot.com/2025/12/transformation-dune-batterie-guitar.html | |
| *********************************************************/ | |
| constint nombreDeTambours =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
| localhttps=require'ssl.https' | |
| localltn12=require("ltn12") | |
| localfeedparser=require("xml2lua") | |
| localhandler=require("xmlhandler.tree") | |
| localheaders= { | |
| ["user-agent"]="Mozilla/5.0", | |
| } | |
| functiongetUrl(url) |
NewerOlder