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 | |
DB_NAME="" | |
DB_PASSWORD="" | |
DB_USER="" | |
DB_HOST="" | |
TODAY_DATE="$(date +'%d_%m_%Y_%H_%M_%S')" | |
FILENAME="$DB_NAME$TODAY_DATE".gz | |
BACKUP_DIR="/home/aslam/backup/$FILENAME" |
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 com.google.gson.*; | |
import org.bukkit.Color; | |
import org.bukkit.DyeColor; | |
import org.bukkit.FireworkEffect; | |
import org.bukkit.Material; | |
import org.bukkit.block.banner.Pattern; | |
import org.bukkit.block.banner.PatternType; | |
import org.bukkit.enchantments.Enchantment; | |
import org.bukkit.inventory.ItemFlag; | |
import org.bukkit.inventory.ItemStack; |
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
<table> | |
<thead> | |
<tr> | |
<th scope="col">user_id</th> | |
<th scope="col">display_order</th> | |
<th scope="col">todo</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> |
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
#!/usr/bin/python | |
""" | |
A simple threaded caching HTTP proxy. | |
Hereward Cooper <[email protected]> | |
v0.1 | |
""" | |
LISTENPORT = 8000 | |
LISTENINT = '127.0.0.1' |