I hereby claim:
- I am thinkverse on github.
- I am thinkverse (https://keybase.io/thinkverse) on keybase.
- I have a public key ASDYjyxHjho5N9KresNOIHd6zVWSf56OomBq3Rg3L8nH7wo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| Verifying my Blockstack ID is secured with the address 16wxM2vbiFaVjx5j76rNwpiZyFX3Qd631k https://explorer.blockstack.org/address/16wxM2vbiFaVjx5j76rNwpiZyFX3Qd631k |
| Verifying my Blockstack ID is secured with the address 1J8XgY6oejvNDgLP8vQKzVY1M1Dib8SUPS https://explorer.blockstack.org/address/1J8XgY6oejvNDgLP8vQKzVY1M1Dib8SUPS |
| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| public final class PotionCommand implements CommandExecutor { | |
| @Override | |
| public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { | |
| if (sender instanceof Player) { | |
| final Player PLAYER = ((Player) sender).getPlayer(); | |
| final World WORLD = PLAYER.getWorld(); | |
| // Give player the Splash Potion. | |
| // PLAYER.getInventory().addItem(makeSplashPotionItemStack(PotionType.INSTANT_HEAL, false, true)); |
| @Override | |
| public @Nullable List<String> onTabComplete(@NotNull CommandSender sender, @NotNull Command command, @NotNull String alias, @NotNull String[] args) { | |
| return (args.length == 1) ? Bukkit.getServer().getOnlinePlayers().stream().map(Player::getName).collect(Collectors.toList()) : Collections.emptyList(); | |
| } |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:1CF6A3F772E82844A5CCDAD16AAA918BA6DF03CA]
| // https://v1.tailwindcss.com/docs/controlling-file-size#purge-css-options | |
| module.exports = { | |
| future: { | |
| removeDeprecatedGapUtilities: true, | |
| purgeLayersByDefault: true, | |
| }, | |
| purge: { | |
| content: ['./public/**/*.html'], | |
| options: { | |
| whitelistPatterns: [ |
| class ProductController extends Controller | |
| { | |
| public function show(Request $request, string $product) | |
| { | |
| dd($product, $request); | |
| } | |
| } |