// // MIT License // // Copyright (c) 2025 David Maple[email protected] // // 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
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
raw.githubusercontent.com/openai/openai-openapi/refs/heads/master/openapi.yaml |
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
//! Demonstrates either allowing ephemeral mount under AppArmor or avoiding Landlock | |
//! to prevent conflicts on Ubuntu. If using this approach, ensure the above | |
//! AppArmor profile is loaded to permit overlay usage. | |
use std::process::Command; | |
use std::fs::{create_dir_all, remove_dir_all}; | |
use std::io::{Write}; | |
use anyhow::{anyhow, Context, Result}; | |
use users; |
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
//! Demonstrates either allowing ephemeral mount under AppArmor or avoiding Landlock | |
//! to prevent conflicts on Ubuntu. If using this approach, ensure the above | |
//! AppArmor profile is loaded to permit overlay usage. | |
use std::process::Command; | |
use std::fs::{create_dir_all, remove_dir_all}; | |
use std::io::{Write}; | |
use anyhow::{anyhow, Context, Result}; | |
use users; |
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
enabledTLSProtocols=TLSv1,TLSv1.1,TLSv1.2,TLSv1.3 |
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
#Enable daemon | |
org.gradle.daemon=true | |
# Try and findout the best heap size for your project build. | |
org.gradle.jvmargs=-Xmx18G -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options=-Xmx18G | |
# Modularise your project and enable parallel build | |
org.gradle.parallel=true | |
# Enable configure on demand. | |
org.gradle.configureondemand=true |
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
gradle dependencyInsight --dependency log4j-core |
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
wget https://truststore.pki.rds.amazonaws.com/global/global-bundle.pem | |
keytool -keystore amazon.jks -importcert -file ./global-bundle.pem | |
# note: remember this password -- you'll need it in intellij |
NewerOlder