I hereby claim:
- I am piccaso on github.
- I am 0xf10 (https://keybase.io/0xf10) on keybase.
- I have a public key ASB-1ICagn2bExPuoBcQxVxdPbVM5mLsb6Hh7rNGYK0N4Ao
To claim this, I am signing this object:
| FROM alpine AS builder | |
| RUN apk add --no-cache build-base | |
| RUN printf '#include <stdio.h>\nint main() {printf("Hello Container!\\n"); return 0;}\n' > main.c | |
| RUN gcc -o main main.c -static | |
| FROM scratch | |
| COPY --from=builder main . | |
| CMD ["./main"] |
| <html> | |
| <head> | |
| <title>ie mode</title> | |
| </head> | |
| <body> | |
| <marquee>IE MODE</marquee> | |
| </body> | |
| <script> | |
| window.setTimeout(function(){ |
| %localappdata%\DeadByDaylight\Saved\Config\WindowsNoEditor | |
| ======================================= | |
| Engine.ini : | |
| [/script/engine.engine] | |
| bSmoothFrameRate=false | |
| MinSmoothedFrameRate=5 | |
| MaxSmoothedFrameRate=120 | |
| bUseVSync=false |
| async function tryHarder(howHard, delay, callback) { | |
| let wait = (milliseconds) => new Promise(resolve => setTimeout(resolve, milliseconds)); | |
| while (true) { | |
| try { | |
| return await callback(); | |
| } catch (ex) { | |
| if (--howHard < 1) throw (ex); | |
| } | |
| await wait(delay); | |
| } |
| # todo: see if --device can be used | |
| docker run --rm -it --privileged -v $PWD:/pwd -w /pwd ubuntu:19.10 | |
| docker run --rm -it --privileged -v $PWD:/pwd -w /pwd debian:10 | |
| # make, curl, git, ... | |
| # stlink-tools (https://github.com/texane/stlink#installation) | |
| # gcc-arm-toolchain (https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads) | |
| apt-get update && apt-get install -y make git-core stlink-tools gcc-arm-none-eabi | |
| # FreeJoy |
| using var client = new HttpClient {BaseAddress = new Uri("https://localhost:3000/")}; | |
| using var content = new MultipartFormDataContent { | |
| {new StringContent(html), "files", "index.html"}, | |
| {new StringContent("8.27"), "paperWidth"}, | |
| {new StringContent("11.69"), "paperHeight"}, | |
| {new StringContent("0"), "marginTop"}, | |
| {new StringContent("0"), "marginBottom"}, | |
| {new StringContent("0"), "marginLeft"}, | |
| {new StringContent("0"), "marginRight"}, | |
| {new StringContent("true"), "landscape"} |
I hereby claim:
To claim this, I am signing this object:
| Tracing enabled | |
| --- Invoked dotnet [version: 2.0.6, commit hash: 74b1c703813c8910df5b96f304b0f2b78cdf194d] main = { | |
| dotnet | |
| WebApiSample.dll | |
| } | |
| Reading fx resolver directory=[/usr/share/dotnet/host/fxr] | |
| Considering fxr version=[..]... | |
| Considering fxr version=[2.0.6]... | |
| Considering fxr version=[.]... | |
| Detected latest fxr version=[/usr/share/dotnet/host/fxr/2.0.6]... |
| using System; | |
| using System.Linq; | |
| using FluentAssertions; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| namespace UriAppend | |
| { | |
| public static class UriExtensions | |
| { | |
| public static Uri Append(this Uri baseUri, string relativeUrl) => new Uri(baseUri, relativeUrl); |