Skip to content

Instantly share code, notes, and snippets.

View autukill's full-sized avatar
🏠
Working from home

autukill

🏠
Working from home
View GitHub Profile
@autukill
autukill / create.gml
Created February 19, 2022 23:49
Star Nest to GameMaker Studio 2
uni_time = shader_get_uniform(shrStarNest, "iTime")
uni_resolution = shader_get_uniform(shrStarNest,"iResolution")
uni_mouse = shader_get_uniform(shrStarNest,"iMouse")
@autukill
autukill / Dockerfile
Created December 4, 2019 05:25
asp.net core 3.0 on docker
#
# dotnet new web
# touch Dockerfile
#
FROM mcr.microsoft.com/dotnet/core/sdk:3.0-buster AS build
WORKDIR /src
COPY . .
RUN dotnet restore
RUN dotnet publish -c Release -o /out
@autukill
autukill / Program.cs
Created August 6, 2018 07:44
run-time compile c# script
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Loader;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.Emit;