Skip to content

Instantly share code, notes, and snippets.

View Candunc's full-sized avatar

Duncan Bristow Candunc

View GitHub Profile
@Candunc
Candunc / test
Created August 4, 2019 19:42
test
{"k": "a2b663945cfd0d2d7fe5b7eedb20e84e1c2671e42f43cabc1cf5ddf10264343ba65ce5820076b5b9e8680f12903ed1a62619a3ddded7bd560db934a064e44296199d565ba7dee39773b6d7eea30e8c8f00a7e1aabf27a02ed4d884860b9fa8ec519ed85b31ac456aaddc75864aba4f729a93cf42b68db06d0bc2a0f3f955fac15e65a751947cf0c25b26ff094cb4ab88eaee140ab546ee7897c8a9fa22ff8ea9738b6ccf055904509f1f96f2127b651e254139bb8bc3ce7458349589a066f12cedee9f227ceecaf7d91e9425977714cbae9b4b568302a4e37ec6383ef900039fb42679a14a313a4831b7932bec0eb715270f9b828e7dbb8466159d77b14f317c010021d353ed0c36be08e028a22ccb6a", "error": 0}
@Candunc
Candunc / ftb_modpack.ps
Created May 21, 2019 16:47
Downloads FTB modpacks using the provided manifest.json on Windows. Requires wget.exe.
Get-Content .\manifest.json | ConvertFrom-Json | select -expand files | foreach { wget.exe --content-disposition -P .\overrides\mods\ "https://minecraft.curseforge.com/projects/$($_.projectID)/files/$($_.fileID)/download" }