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
local function find(tbl, val) | |
for i, v in ipairs(tbl) do | |
if v == val then | |
return i | |
end | |
end | |
end | |
function serialiseC(out, a, useColours, simplified) | |
local dont = {} |
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
# Result of git bisect between commits 6967212 (good) and 1247f3a^ (bad) | |
74eb377606893e47402220af74684a762cd11960 is the first bad commit | |
commit 74eb377606893e47402220af74684a762cd11960 | |
Author: Maik Macho <[email protected]> | |
Date: Mon Jun 24 12:34:39 2019 +0200 | |
Switch to NuGet where possible | |
Celeste.Mod.mm/Celeste.Mod.mm.csproj | 52 +- |
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
Controller 0: PS4 Controller | |
IGLDevice: OpenGLDevice | |
OpenGL Device: AMD Radeon Pro 560 OpenGL Engine | |
OpenGL Driver: 2.1 ATI-3.0.68 | |
OpenGL Vendor: ATI Technologies Inc. | |
MojoShader Profile: glsl120 | |
FULLSCREEN | |
CELESTE : 1.3.1.2 | |
(27/10/2019 11:12:48) [Everest] [Info] [core] Booting Everest | |
(27/10/2019 11:12:48) [Everest] [Info] [core] VersionCelesteString: 1.3.1.2 [Everest: 0-dev] |
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
{-# LANGUAGE RankNTypes #-} | |
-- You can safely ignore the types. They're necessary for the | |
-- program to compile, but they don't change the behaviour of | |
-- the program in any way. | |
newtype Nat = Nat (forall a. a -> (Nat -> a) -> a) | |
-- zero = \x y -> x | |
zeroN :: Nat | |
zeroN = Nat (\x y -> x) |
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
data Expr = Var Int | Application Expr Expr | Abstraction Int Expr deriving (Show, Eq, Ord) | |
zeroExpr :: Expr | |
zeroExpr = Abstraction 0 (Abstraction 1 (Var 0)) | |
succExpr :: Expr -> Expr | |
succExpr num = Abstraction 0 (Abstraction 1 (Application (Var 1) num)) | |
isScottNum :: Expr -> Bool | |
isScottNum (Abstraction a (Abstraction b (Var c))) | a == c && a /= b = True -- Zero |
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
1/rts/build/c/Interpreter.o.d | |
| Run Cc FindCDependencies Stage1: rts/ProfilerReport.c => _build/stage1/rts/build/c/ProfilerReport.o.d | |
| Run Ghc CompileCWithGhc Stage1: rts/StgPrimFloat.c => _build/stage1/rts/build/c/StgPrimFloat.o | |
| Run Ghc CompileCWithGhc Stage1: rts/ProfilerReport.c => _build/stage1/rts/build/c/ProfilerReport.o | |
| Run Ghc CompileCWithGhc Stage1: rts/Hash.c => _build/stage1/rts/build/c/Hash.o | |
| Run Cc FindCDependencies Stage1: rts/Linker.c => _build/stage1/rts/build/c/Linker.o.d | |
| Run Cc FindCDependencies Stage1: rts/Inlines.c => _build/stage1/rts/build/c/Inlines.o.d | |
| Run Cc FindCDependencies Stage1: rts/sm/Scav.c => _build/stage1/rts/build/c/sm/Scav.o.d | |
| Run Cc FindCDependencies Stage1: rts/linker/M32Alloc.c => _build/stage1/rts/build/c/linker/M32Alloc.o.d | |
| Run Cc FindCDependencies Stage1: rts/posix/TTY.c => _build/stage1/rts/build/c/posix/TTY.o.d |
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
{- | |
"Goal": translate this to Idris | |
Name Meaning | |
forall Parametric universal | |
pi Nonparametric universal | |
exists Parametric existential | |
sigma Nonparametric existential |
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
From 4c74fd47290cb0c4f00c700943a5b47e1651b013 Mon Sep 17 00:00:00 2001 | |
From: jakobrs <[email protected]> | |
Date: Sat, 1 Feb 2020 12:12:54 +0100 | |
Subject: [PATCH] Add basic argument handling | |
--- | |
desktop_version/src/FileSystemUtils.cpp | 13 +++- | |
desktop_version/src/FileSystemUtils.h | 2 +- | |
desktop_version/src/main.cpp | 88 +++++++++++++++++++++++-- | |
3 files changed, 94 insertions(+), 9 deletions(-) |
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
{ config, pkgs, ... }: | |
{ | |
imports = [ <nixpkgs/nixos/modules/installer/virtualbox-demo.nix> ]; | |
networking.firewall.enable = false; | |
# Enables the SSH Daemon | |
services.openssh.enable = true; | |
services.openssh.forwardX11 = true; # Adds X11Forwarding yes to /etc/ssh/sshd_config |
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
From 85ba6429ea2718349d4516037a739b1b30303ffb Mon Sep 17 00:00:00 2001 | |
From: jakobrs <[email protected]> | |
Date: Sat, 8 Feb 2020 09:31:20 +0100 | |
Subject: [PATCH 1/2] vvvvvv: factor vvvvvv-bin out of vvvvvv | |
--- | |
pkgs/games/vvvvvv/default.nix | 94 ++++++++++++++++++++++----------- | |
pkgs/top-level/all-packages.nix | 4 +- | |
2 files changed, 66 insertions(+), 32 deletions(-) |
OlderNewer