flowchart TD
1(I do something stupid) --> 2(She gets mad)
3(She does something stupid) --> 4(I get mad)
4 --> 5(She gets mad)
2 --> 6(I apologise)
5 --> 6
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
/** | |
* This small gist is based on https://github.com/nastyox/Rando.js | |
* The idea of this gist is to have a compatible node and browser script that can replace Math.random() | |
* using crypto libraries built-in in node and browser and without the extra baggage for automatic object | |
* array o string behaviours | |
* it fallbacks to Math.random() | |
**/ | |
const rando = () => { | |
try { |
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
name: '&eEscrituras Lote 1' | |
lore: | |
- Sirve para reclamar el Lote 1 | |
material: PAPER | |
headDBID: '' | |
glow: true | |
glowDrop: false | |
disableStack: false | |
keepItemOnDeath: false | |
give-first-join: false |
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
/give @s bow{Unbreakable:1,display:{Name:'[{"text":"Windrunner","italic":false}]'},Enchantments:[{id:vanishing_curse,lvl:1},{id:flame,lvl:5},{id:infinity,lvl:1},{id:power,lvl:5}]} | |
/give @s diamond_pickaxe{Unbreakable:1,display:{Name:'[{"text":"Cavemaker","italic":false}]'},Enchantments:[{id:vanishing_curse,lvl:1},{id:efficiency,lvl:5},{id:fortune,lvl:5},{id:sharpness,lvl:5},{id:silk_touch,lvl:1}]} | |
/give @s diamond_helmet{Unbreakable:1,Enchantments:[{id:aqua_affinity,lvl:1},{id:blast_protection,lvl:5},{id:vanishing_curse,lvl:1},{id:fire_protection,lvl:5},{id:projectile_protection,lvl:5},{id:protection,lvl:5},{id:respiration,lvl:5},{id:thorns,lvl:5}]} | |
/give @s diamond_chestplate{Unbreakable:1,Enchantments:[{id:blast_protection,lvl:5},{id:vanishing_curse,lvl:1},{id:fire_protection,lvl:5},{id:projectile_protection,lvl:5},{id:protection,lvl:5},{id:thorns,lvl:5}]} | |
/give @s diamond_boots{Unbreakable:1,Enchantments:[{id:blast_protection,lvl:5},{id:vanishing_curse,lvl:1},{id:feather_falling,lvl:5},{id:fire_protect |
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
[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]][([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+!+[]]]+(!![]+[])[!+[]+!+[]+!+[]]+(+(!+[]+!+[]+!+[]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]])[+!+[]+[+[]]]+([]+[])[([][(![]+[])[+[]]+(![]+[])[!+[]+!+[]]+(![]+[])[+!+[]]+(!![]+[])[+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(! |
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
const fs = require('fs') | |
const { spawn } = require('child_process') | |
const [,,from, to] = process.argv | |
const UUID = () => { | |
var dt = new Date().getTime(); | |
var uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { | |
var r = (dt + Math.random()*16)%16 | 0; | |
dt = Math.floor(dt/16); |
NewerOlder