Skip to content

Instantly share code, notes, and snippets.

View btpnlsl's full-sized avatar

Christopher Gual btpnlsl

View GitHub Profile
@btpnlsl
btpnlsl / pom.xml
Created July 11, 2025 18:55
webflux-file-upload
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.openapitools</groupId>
<artifactId>webflux-file-upload</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<kotlin.version>1.9.10</kotlin.version>
<spring.boot.version>3.2.5</spring.boot.version>
@btpnlsl
btpnlsl / Makefile
Last active January 26, 2025 20:48 — forked from cellularmitosis/Makefile
A trivial sudoku solver, in C
a.out: sudoku.c
gcc -std=c89 -Wall -Werror -O3 sudoku.c
clean:
rm -f a.out
.PHONY: clean