- Too many new extensions cropping up
- They each have different support matrix
- Upgrade cycles
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
fd -HIFtd '.git' -x env -i GIT_WORK_TREE={} GIT_DIR={} /usr/local/bin/git log --pretty=format:"%ad - %an: %s" --after="2022-06-30" --until="2022-07-01" --author="Samuel Marks" 2>/dev/null |
This file has been truncated, but you can view the full file.
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
/usr/bin/cmake -S/ROCm/ROCm-CompilerSupport/lib/comgr -B/ROCm/ROCm-CompilerSupport/lib/comgr/build --check-build-system CMakeFiles/Makefile.cmake 0 | |
/usr/bin/cmake -E cmake_progress_start /ROCm/ROCm-CompilerSupport/lib/comgr/build/CMakeFiles /ROCm/ROCm-CompilerSupport/lib/comgr/build//CMakeFiles/progress.marks | |
make -f CMakeFiles/Makefile2 all | |
make[1]: Entering directory '/ROCm/ROCm-CompilerSupport/lib/comgr/build' | |
make -f CMakeFiles/bc2h.dir/build.make CMakeFiles/bc2h.dir/depend | |
make[2]: Entering directory '/ROCm/ROCm-CompilerSupport/lib/comgr/build' | |
cd /ROCm/ROCm-CompilerSupport/lib/comgr/build && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /ROCm/ROCm-CompilerSupport/lib/comgr /ROCm/ROCm-CompilerSupport/lib/comgr /ROCm/ROCm-CompilerSupport/lib/comgr/build /ROCm/ROCm-CompilerSupport/lib/comgr/build /ROCm/ROCm-CompilerSupport/lib/comgr/build/CMakeFiles/bc2h.dir/DependInfo.cmake --color= | |
make[2]: Leaving directory '/ROCm/ROCm-CompilerSupport/lib/comgr/build' | |
make -f CMakeFiles/bc2h.dir/build.make CMakeFi |
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
from io import StringIO | |
from json import dumps | |
from itertools import repeat | |
from collections import namedtuple | |
from pprint import PrettyPrinter | |
import psycopg2 | |
import psycopg2.sql | |
import numpy as np |
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
if (BUILD_APPLE_BUNDLE) | |
set(EXEC_NAME "MyUI") | |
else () | |
get_filename_component(EXEC_NAME "${CMAKE_CURRENT_SOURCE_DIR}" NAME) | |
string(APPEND EXEC_NAME "-${PROJECT_VERSION}") | |
endif () | |
set(Source_Files "main.c") | |
source_group("Source Files" FILES "${Source_Files}") |
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
# /etc/nginx/sites-enabled/DOMAIN.conf | |
map $http_upgrade $connection_upgrade { | |
default upgrade; | |
'' close; | |
} | |
server { | |
listen 80; | |
server_name DOMAIN_NAME; |
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
#include "server_attempt_6.c" | |
/* just a hack for this gist^, for attempts 0-5 see revision <17 */ | |
int main(void) { | |
int code; | |
char *response = calloc(PIPE_BUF + 1, sizeof(char)); | |
if (response == NULL) { | |
const int _code = fputs("OOM", stderr); | |
if (_code == EOF) exit(_code); | |
exit(EAI_MEMORY); |
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
#ifndef VERSIONS_EXPORT_H | |
#define VERSIONS_EXPORT_H | |
#ifdef VERSIONS_STATIC_DEFINE | |
# define VERSIONS_EXPORT | |
# define VERSIONS_NO_EXPORT | |
#else | |
# ifndef VERSIONS_EXPORT | |
# ifdef versions_EXPORTS |
NewerOlder