Skip to content

Instantly share code, notes, and snippets.

View Frityet's full-sized avatar
😁
I have like 60 projects that i am not doing

Frityet

😁
I have like 60 projects that i am not doing
View GitHub Profile
checking for architecture ... none
configure
{
clean = true
buildir = build
ccache = true
kind = static
arch = none
mode = release
plat = cross
<?xml version="1.0" encoding="utf-16"?>
<ResourceManifest
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Name>Example Mod</Name>
<Guid>frityet.example</Guid>
<Assets>
<AssetManifest>
<Type>Texture</Type>
<Target>M1A1</Target>
$schema: 'http://json-schema.org/draft-07/schema'
$id: https://raw.githubusercontent.com/H3VR-Modding/Mason/v1.0.0/schemas/project/root.json
type: object
title: Mason Project
description: A Mason project
examples:
- version: 1
ignore:
- C10
dependencies:
@Frityet
Frityet / H3VRModDLCount.swift
Last active June 21, 2021 08:15
I made this project on a boring car ride. It gets the download information of important H3VR mods and prints them to the console
import Foundation;
import PlaygroundSupport;
//We use async in this program, it needs to go inf
PlaygroundPage.current.needsIndefiniteExecution = true;
///Struct for a Github Asset (file inside the release)
struct GithubReleaseAsset : Decodable {
///Name of the asset
let fileName: String;