This file contains hidden or 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
#!/bin/bash | |
url='https://raw.githubusercontent.com/freewil/tor-exits/master/test/Tor_ip_list_EXIT.csv' | |
iptables -F TOR_NODES | |
iptables -I TOR_NODES -j RETURN | |
for node in `wget -q --no-check-certificate -O - $url | sort | uniq`; do | |
iptables -I TOR_NODES -s $node -j DROP | |
done |
This file contains hidden or 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.minecraft.server; | |
public class BlockEnderChest extends BlockChestAbstract<TileEntityEnderChest> implements IBlockWaterlogged { | |
public static final BlockStateDirection FACING = BlockFacingHorizontal.FACING; | |
public static final BlockStateBoolean c = BlockProperties.C; | |
protected static final VoxelShape d = Block.a(1.0D, 0.0D, 1.0D, 15.0D, 14.0D, 15.0D); | |
public static final ChatMessage e = new ChatMessage("container.enderchest", new Object[0]); | |
protected BlockEnderChest(Block.Info block_info) { |
This file contains hidden or 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.minecraft.server; | |
// CraftBukkit start | |
import org.bukkit.craftbukkit.inventory.CraftInventory; | |
import org.bukkit.craftbukkit.inventory.CraftInventoryView; | |
// CraftBukkit end | |
public class ContainerChest extends Container { | |
private final IInventory container; |