| JS |
// higher scoping, not killed by exit from for/if and some other flow control stuff
var x = 1; |
| // Requires https://gist.github.com/MCJack123/4eb02b57de9fcb9c6e62b9b459ada8e6 | |
| // Extract env-clean.tar into env-clean next to this file | |
| const { Client, MessageAttachment } = require('discord.js'); | |
| const exec = require('child_process').exec; | |
| const fs = require("fs-extra"); | |
| const http = require("https"); | |
| const client = new Client(); | |
| const init_script = (script, author) => ` | |
| term.clear() | |
| term.setCursorPos(1, 1) |
Link: https://docs.papermc.io/paper/anti-xray
Help: https://discord.gg/papermc
Anti-Xray can be configured per world in the paper.yml configuration file. To understand how per world configuration works please read this first. Note that after changing any settings for Anti-Xray you have to restart your server. Executing the /reload command (you should never do this) won't apply the settings to worlds that are already loaded.
- Assuming dynmap is already initialized and the folder structure has been generated during a first-time run,
<Spigot_Server>/plugins/dynmap/custom-perspectives.txtshould exist. - Open custom-perspectives.txt in a text editor.
- In this file below the line
perspectives:add the following lines of text.
- class: org.dynmap.hdmap.IsoHDPerspective
name: nether_top_map_lowres
maximumheight: 256
minimumheight: 129
inclination: 90Say you wanted to emit an explosion particle whenever your block is destroyed. Emitting particles requires access to the ParticleManager, which only exists on the MinecraftClient instance. Let's try doing that:
public class MyBlock extends Block {
@Override
public void onBlockRemoved(BlockState before, World world, BlockPos pos, BlockState after, boolean bool) {This page contains a list of the current Minecraft Fabric mods. (As of 2021-08-19 08:05:23 Timezone: UTC+0000 (GMT))
To search for mods by name, category, or download count, visit the website, fibermc.com!
Note: You can view a mod's source files by following the "Source" link on its CurseForge page, assuming that the mod's creator has made such files public.
There are currently 2954 mods in this list.
| import struct | |
| import socket | |
| import base64 | |
| import json | |
| import sys | |
| class Server: | |
| def __init__(self, data): | |
| self.description = data.get('description') |
I now do password cracking in the cloud using a suped up AWS rig. More details here.
This document is under construction, but is intended to get you up and running quickly with cracking hashes in the cloud using the Paperspace service.
Resources used for this article:
extension_id=jifpbeccnghkjeaalbbjmodiffmgedin # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc"
unzip -d "$extension_id-source" "$extension_id.zip"Thx to crxviewer for the magic download URL.