This tutorial is designed to set up a complete Git workflow on Android, complete with LFS, and use it with the Godot editor.
The storage usage is minimal.
Be prepared to get a bit technical. You should be familiar with command line tools,
@tool | |
extends RefCounted | |
## ShallowResourceLoader | |
## | |
## Shallowly loads a resource without loading external dependencies. | |
## Dependencies are replaced by an instance of PlaceholderExternalResource. | |
## Dependencies which have already been loaded and which are in the cache are not replaced. | |
## Placeholder resources will be stored in the cache using the resource_path they are replacing. | |
## |
extends Node | |
## | |
## Manages multiplayer connections. | |
## | |
## Emitted when a client player joins the session. Only emitted on the server. | |
## Also emitted for the local player when the server starts. | |
signal player_joined(unique_id: int) | |
## Emitted when a client player leaves the session (or is kicked). Only emitted on the server. |
MIT License | |
Copyright (c) 2024 Apples | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: |
class_name DiceRoll | |
extends RefCounted | |
## Usage | |
## [codeblock] | |
## var dice := DiceRoll.new("1d4 + 2 * X") | |
## if not dice.is_valid(): | |
## print("Invalid dice.") | |
## print("Range: %s ~ %s" % [dice.min(), dice.max()]) | |
## print("Sample roll: %s" % [dice.roll({ X = 2 })]) |
using System; | |
using System.Security.Claims; | |
using System.Text.Json; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Http; | |
namespace Copper | |
{ | |
public static class CopperSession | |
{ |
using System; | |
using System.Reflection; | |
namespace Mealplan | |
{ | |
public static class Copy | |
{ | |
public static T Shallow<T>(object src, Type? srcType = null, object? defaultValues = null, object? forceValues = null) | |
where T : new() | |
{ |
A pretty easy recipe once you get the hang of it, but requires a few unusual items that you likely don't have laying around.
Works better on a traditional flame wok, but a modern stovetop wok works just as well. Just keep in mind that non-stick woks are not designed to sit at extremely high temperatures, so don't let it get too crazy hot in the preheating phase.
I recommend using a spatula designed for woks (these usually have a bit more of a "spoon" shape to them), but if you don't have one then use a wooden spoon works well enough.
Firstly, a "package" is a collection of files, and may contain multiple "applications", which are the executables.
You can list the details about the package with Get-AppxPackage
, as discussed.
PS C:\Users\dbral> $pkg = get-appxpackage -name *terminal*
PS C:\Users\dbral> $pkg
Name : Microsoft.WindowsTerminal
#pragma once | |
#include <glm/gtc/quaternion.hpp> | |
#include <cassert> | |
#include <cmath> | |
#include <cstdint> | |
/** Creates smallest-three packing of quaternion, 10 bits per component */ | |
inline auto pack_quaternion(glm::quat q) -> std::uint32_t { |