This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
/** | |
Copyright <2021> <Lexxicon Studios LLC.> | |
Permission is hereby granted, free of charge, to any person obtaining a copy of this | |
software and associated documentation files (the "Software"), to deal in the Software | |
without restriction, including without limitation the rights to use, copy, modify, | |
merge, publish, distribute, sublicense, and/or sell copies of the Software, | |
and to permit persons to whom the Software is furnished to do so, subject to the | |
following conditions: | |
The above copyright notice and this permission notice shall be included in all copies | |
or substantial portions of the Software. |
This document now exists on the official ASP.NET core docs page.
Modern OpenSSH has native support for FIDO Authentication. Its much simpler and should also be more stable with less moving parts. OpenSSH also now has support for signing arbitary files witch can be used as replacement of gnupg. Git also supports signing commits/tags with ssh keys.
ssh
, ssh-add
and ssh-keygen
on most computersThese use separate document structures instead of HTML, some are more modular libraries than full editors
# This has been working pretty well for me with: | |
# export KOS_CFLAGS="-Wa,--isa=sh4 -fomit-frame-pointer" | |
# export KOS_AFLAGS="--isa=sh4" | |
# . ${KOS_BASE}/environ_base.sh | |
# cmake -DCMAKE_TOOLCHAIN_FILE=/path/to/dreamcast.cmake.cmake | |
set(CMAKE_SYSTEM_NAME Generic) | |
set(CMAKE_C_COMPILER kos-cc) | |
set(CMAKE_CXX_COMPILER kos-c++) | |
set(CMAKE_ASM_COMPILER kos-as) | |
set(CMAKE_LINKER kos-cc) |
#!/bin/sh | |
# ./bin/behat-ci.sh | |
project_dir=$(dirname $(readlink -f $0))"/.." | |
logs_path=${1:-"./build/logs/behat"} | |
reports_path=${2:-"./build/behat"} | |
cd $project_dir |
// Written by Pioz. | |
// Compile with: gcc -o autoclick autoclick.c -lX11 | |
#include <stdio.h> // printf, fprintf and fflush | |
#include <string.h> // memset | |
#include <unistd.h> // sleep and usleep | |
#include <X11/Xlib.h> // X11 | |
#include <X11/Xutil.h> // XGetPixel and XDestroyImage | |
// Simulate mouse click |