Skip to content

Instantly share code, notes, and snippets.

View Bluexin's full-sized avatar
🍻

Arnaud Solé Bluexin

🍻
View GitHub Profile
@Bluexin
Bluexin / dependency-checker-suppression.xml
Created May 16, 2019 13:50
Dependency checker junit generation failure sample
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd">
<suppress>
<notes><![CDATA[
False positive, see https://github.com/jeremylong/DependencyCheck/issues/1925
file name: jwks-rsa-0.8.1.jar
]]></notes>
<gav regex="true">^com\.auth0:jwks-rsa:.*$</gav>
<cpe>cpe:/a:auth0:auth0</cpe>
</suppress>
@Bluexin
Bluexin / SmeltingRecipe.java
Last active August 12, 2023 06:23
Bringing mc 1.13 JSON smelting recipes to 1.12 and older
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import mcp.MethodsReturnNonnullByDefault;
import net.minecraft.inventory.InventoryCrafting;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.util.JsonUtils;
import net.minecraft.util.NonNullList;
@Bluexin
Bluexin / msys2.md
Last active February 22, 2024 13:24
Setting up qtcreator with msys2 on windub
@Bluexin
Bluexin / CLion_Ninja.md
Last active May 18, 2019 19:35 — forked from arichardson/CLion_Ninja.md
Ninja support for CLion IDE

Ninja support for CLion IDE on Windows (working with newer versions of clion)

This script enables Ninja-powered builds in CLion IDE by wrapping around CMake, which it uses. See my blog post for details.

Disclaimer

This script is provided AS IS with no guarantees given or responsibilities taken by the author. This script relies on undocumented features of CLion IDE and may lead to instability of build and/or IDE. Use it on your own risk under WTFPL terms.