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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Interactive Word Search Puzzle</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; |
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
import copy | |
import random | |
import string | |
def create_grid(size): | |
return [[" " for _ in range(size)] for _ in range(size)] | |
def print_grid(grid): |
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
function timeout(ms) { | |
return new Promise(resolve => setTimeout(resolve, ms)); | |
} | |
async function sleep(fn, ...args) { | |
await timeout(500); | |
return await fn(...args); | |
} | |
async function runMacroA() { | |
let all_questions = [...document.querySelectorAll("h3")].filter((a) => a.innerText.startsWith("Question")); |
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
{ | |
"_id": { | |
"$oid": "5e3705f1b29af385c20f6971" | |
}, | |
"latest": { | |
"build": "1.2.3", | |
"id": 3089, | |
"url": "https://static.sk1er.club/repo/cc/hyperium/Hyperium/3089/Hyperium-3089.jar", | |
"size": 30071063, | |
"target_installer": 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
package mc.crackpixel.net.generator; | |
import com.grinderwolf.swm.api.SlimePlugin; | |
import com.grinderwolf.swm.api.exceptions.CorruptedWorldException; | |
import com.grinderwolf.swm.api.exceptions.NewerFormatException; | |
import com.grinderwolf.swm.api.exceptions.UnknownWorldException; | |
import com.grinderwolf.swm.api.exceptions.WorldInUseException; | |
import com.grinderwolf.swm.api.world.SlimeWorld; | |
import com.grinderwolf.swm.api.world.properties.SlimePropertyMap; | |
import mc.crackpixel.net.Housing; |
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
package net.crackpixel.daysling.generator; | |
import com.grinderwolf.swm.api.SlimePlugin; | |
import com.grinderwolf.swm.api.exceptions.*; | |
import com.grinderwolf.swm.api.loaders.SlimeLoader; | |
import com.grinderwolf.swm.api.world.SlimeWorld; | |
import com.grinderwolf.swm.api.world.properties.SlimeProperties; | |
import com.grinderwolf.swm.api.world.properties.SlimePropertyMap; | |
import org.bukkit.Bukkit; | |
import org.bukkit.Location; |
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
package net.crackpixel.daysling; | |
import net.crackpixel.daysling.generator.Generator; | |
import org.bukkit.plugin.java.JavaPlugin; | |
import java.util.logging.Level; | |
public final class HousingGenerator extends JavaPlugin { | |
public HousingGenerator instance = this; |
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
1st Killer - | |
1st Place - | |
Winner: | |
- Damage Dealt - | |
Winning Team - | |
1st - | |
Winners: | |
Winner: | |
Winning Team: | |
won the game! |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project version="4"> | |
<component name="CompilerConfiguration"> | |
<annotationProcessing> | |
<profile name="Maven default annotation processors profile" enabled="true"> | |
<sourceOutputDir name="target/generated-sources/annotations" /> | |
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" /> | |
<outputRelativeToContentRoot value="true" /> | |
<module name="untitled3" /> | |
</profile> |