full_name | short_name | id | name | key | description | requirement |
---|---|---|---|---|---|---|
Double Masters | 2xm | 15 | Banned set | format.set.banned | Defines which sets are not permitted in that format. | varchar set_shortname |
Masters 25 | a25 | 15 | Banned set | format.set.banned | Defines which sets are not permitted in that format. | varchar set_shortname |
Modern Horizons Art Series | amh1 | 15 | Banned set | format.set.banned | Defines which sets are not permitted in that format. | varchar set_shortname |
Arena New Player Experience | ana | 15 | Banned set | format.set.banned | Defines which sets are not permitted in that format. | varchar set_shortname |
Archenemy | arc | 15 | Banned set | format.set.banned | Defines which sets are not permitted in that format. | varchar set_shortname |
Battlebond | bbd | 15 | Banned set | format.set.banned | Defines which sets are not permitted in that format. | varchar set_shortname |
Commander 2013 | c13 | 1 |
This file has been truncated, but you can view the full file.
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
HTTP/2 200 OK | |
X-Powered-By: PHP/7.3.31 | |
Content-Type: text/html; charset=UTF-8 | |
Vary: Accept-Encoding | |
Date: Wed, 01 Jun 2022 19:02:57 GMT | |
Server: LiteSpeed | |
X-Xss-Protection: 1; mode=block | |
X-Content-Type-Options: nosniff | |
<!DOCTYPE html |
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
[tool.poetry] | |
name = "tools" | |
version = "0.1.0" | |
[tool.poetry.dependencies] | |
python = "^3.9" | |
[tool.poetry.dev-dependencies] |
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 io.netty.buffer.ByteBuf; | |
import io.netty.channel.ChannelHandlerContext; | |
import io.netty.channel.ChannelInboundHandler; | |
import io.netty.channel.ChannelInboundHandlerAdapter; | |
import io.netty.channel.ChannelPipeline; | |
import java.nio.charset.Charset; | |
import java.util.Arrays; | |
public class HexDumpHandler extends ChannelInboundHandlerAdapter { |
This file has been truncated, but you can view the full file.
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 http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
</head> | |
<body> | |
<script> | |
var $wnd = $wnd || window.parent; |
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
#!/bin/bash | |
### BEGIN INIT INFO | |
# Provides: zbw_connect | |
# Required-Start: $all | |
# Required-Stop: $all | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: zbw_connect | |
# Description: the script to connect to zbw server | |
### END INIT INFO |