Skip to content

Instantly share code, notes, and snippets.

@eltodi
eltodi / minecraft_commands.txt
Last active November 4, 2022 21:21
Minecraft commands
## ARCO INFITINO
/give @p bow{
Enchantments:[
{id:flame,lvl:1},
{id:infinity,lvl:1},
{id:power,lvl:10000000},
{id:punch,lvl:10000000}
],
Unbreakable:1,
} 1
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
@eltodi
eltodi / cloudflare-update-record.sh
Created February 13, 2018 15:43 — forked from benkulbertis/cloudflare-update-record.sh
Cloudflare API v4 Dynamic DNS Update in Bash
#!/bin/bash
# CHANGE THESE
auth_email="user@example.com"
auth_key="c2547eb745079dac9320b638f5e225cf483cc5cfdda41" # found in cloudflare account settings
zone_name="example.com"
record_name="www.example.com"
# MAYBE CHANGE THESE
ip=$(curl -s http://ipv4.icanhazip.com)