This file contains 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
{ | |
description = "A nixos cloudinit base image without nixos-infect"; | |
inputs = { | |
nixpkgs.url = "github:nixos/nixpkgs"; | |
}; | |
outputs = { self, nixpkgs }: | |
let | |
system = "x86_64-linux"; |
This file contains 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
1c1 | |
< require 'rack/utils' | |
--- | |
> require 'streaming_upload' | |
3,4c3,18 | |
< module Rack | |
< module Multipart | |
--- | |
> class StreamingMultipartRequest < ActionDispatch::Request | |
> def parse_multipart(env) |
This file contains 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
import std.stdio; | |
import std.string; | |
import std.conv; | |
import std.array; | |
import std.range; | |
void times(int count, void delegate() cb) { | |
for (int i = 0; i < count; ++i) { | |
cb(); | |
} |