These are the imaged used for the Hard Boiled game on itch.io.

Testing adding extra files to a GitHub 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
# FONTS TO CSS | |
# | |
# Convert a font or zip of fonts to a .css with embedded @font-face base64 data. | |
# | |
# Install Python: https://www.python.org/downloads/ | |
# NOTE: Check "Add Python to environment variables" during Windows install | |
# Using Command Line: | |
# pip install fonttools | |
# python convert.py <path_to_font_or_zip_of_fonts> | |
import base64 |
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
using System; | |
using System.IO; | |
using System.Runtime.CompilerServices; | |
using UnityEngine; | |
/// <summary> | |
/// Log the time taken to execute a block of code to the Unity console.<br/> | |
/// <example> | |
/// Here is an example of how to use it in a script.<br/> | |
/// The result is the total time taken to execute <c>CallMyMethod()</c> and <c>CallAnotherMethod()</c>. |
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
{ | |
"m_SGVersion": 3, | |
"m_Type": "UnityEditor.ShaderGraph.GraphData", | |
"m_ObjectId": "772d48923d4842b6b8a7dabccb0f5c30", | |
"m_Properties": [ | |
{ | |
"m_Id": "3713953109a3e78d88280c504d504dfc" | |
}, | |
{ | |
"m_Id": "47f5c92615528b8f8e05489b72b57dff" |
Try to create something similar to Facebook's 3D Photos
A Pen by Adam Davidson on CodePen.
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
using System; | |
using number = System.Decimal; | |
namespace Fibonacci { | |
class Program { | |
// Recursion | |
static number fibr(number n) { | |
if (n == 0) { return 0; } |
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
/* | |
* Copyright (C) 2013 Gotham City. All rights reserved. | |
* Copyright (C) 2017 Arlorean. All rights reserved. (C#/MediaFoundation.NET port) | |
*/ | |
using System; | |
using System.Diagnostics; | |
using MediaFoundation; | |
using MediaFoundation.Misc; | |
using static MediaFoundation.CLSID; |
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
using System.Windows; | |
using System.Windows.Controls; | |
namespace WpfApplication2 { | |
public partial class MainWindow : Window { | |
public MainWindow() { | |
InitializeComponent(); | |
var svg = new SkiaSharp.SKSvg(); | |
var picture = svg.Load("Tiger.svg"); |