MacOS Notarization tool CMake to Bazel JavaScript conversion Blitz monorepo integration into monolithic codebase Gradle desktop Server split Badger Maple


Projects

MacOS Notarization for Multiple Versions: Managed notarization for several software versions across MacOS environments, automating processes to reduce manual effort. Bazel Conversion Tool: Developed tools for automating the migration of Gradle projects to Bazel, improving build times and system performance. Gradle Desktop Server Split: Led the migration of a monolithic codebase into a modular system, enhancing maintainability and scalability. llvmbzlgen: Developed a tool that generates Bazel build targets from CMakeLists.txt files, supporting multi-language projects. Maple Release Management: Coordinated and managed branch updates for Maple project versions, ensuring stability and handling release readiness across multiple environments. Typescript Compiler as a Persistent Worker: Enhanced TypeScript build processes by developing a compiler worker to improve build efficiency. Blitz Monorepo Integration: Integrated Blitz monorepo into the existing build systems, enabling better support for large codebases and faster release cycles. — Projects for Practice Task Tracker CLI ——

const res = await fetch("https://translate.argosopentech.com/translate", {
	method: "POST",
	body: JSON.stringify({
		q: "Hello!",
		source: "en",
		target: "es"
	}),
	headers: {
		"Content-Type": "application/json"}
	});

console.log(await res.json());
{
    "translatedText": "¡Hola!"
}