I hereby claim:
- I am aletson on github.
- I am aletson (https://keybase.io/aletson) on keybase.
- I have a public key ASB9qf-nyjEOZRU80kvMOMwQLgN3iH47UYKz_jA52v0K2wo
To claim this, I am signing this object:
provider "aws" { | |
access_key = var.aws_access_key | |
secret_key = var.aws_secret_key | |
region = var.primaryregion | |
version = "~> 2.16.0" | |
} | |
resource "aws_key_pair" "keypair" { | |
key_name = "ssh-keypair" | |
public_key = var.ssh_public_key |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
for file in `ls -1 ~/zones` | |
do | |
suffix=".dns" | |
domainname=${file%$suffix} | |
echo " " | |
echo "$domainname being imported" | |
zone2sql --zone=$file --gmysql --zone-name=$domainname | mysql -h | |
localhost -D pdns -u pdns | |
pdnsutil set-kind $domainname master |
app.saiLabels.action_type.name[0] = "NONE"; | |
app.saiLabels.action_type.name[1] = "TALK"; | |
app.saiLabels.action_type.name[2] = "SET_FACTION"; | |
app.saiLabels.action_type.name[3] = "MORPH_TO_ENTRY_OR_MODEL"; | |
app.saiLabels.action_type.name[4] = "SOUND"; | |
app.saiLabels.action_type.name[5] = "PLAY_EMOTE"; | |
app.saiLabels.action_type.name[6] = "FAIL_QUEST"; | |
app.saiLabels.action_type.name[7] = "OFFER_QUEST"; | |
app.saiLabels.action_type.name[8] = "SET_REACT_STATE"; | |
app.saiLabels.action_type.name[9] = "ACTIVATE_GOBJECT"; |
From f89fa6404142834b16a6bd54b7650eccb5f51e30 Mon Sep 17 00:00:00 2001 | |
From: tje3d <[email protected]> | |
Date: Thu, 28 Sep 2017 21:28:17 +0330 | |
Subject: [PATCH] wg_tena_gm | |
--- | |
src/server/game/Battlefield/Battlefield.cpp | 3 ++ | |
.../game/Battlefield/Zones/BattlefieldWG.cpp | 52 ++++++++-------------- | |
src/server/game/Battlefield/Zones/BattlefieldWG.h | 2 + | |
3 files changed, 23 insertions(+), 34 deletions(-) |
From 1247667c4f7a9dba28829eb2c88a81c7836773ef Mon Sep 17 00:00:00 2001 | |
From: tje3d <[email protected]> | |
Date: Thu, 28 Sep 2017 21:33:19 +0330 | |
Subject: [PATCH] wg_tena_teleporter_aura | |
--- | |
.../game/Battlefield/Zones/BattlefieldWG.cpp | 39 +++++++++++++++------- | |
src/server/game/Battlefield/Zones/BattlefieldWG.h | 4 ++- | |
src/server/scripts/Northrend/zone_wintergrasp.cpp | 2 +- | |
3 files changed, 31 insertions(+), 14 deletions(-) |
<?php | |
// This script is to solve the problem of doing database search and replace | |
// when developers have only gone and used the non-relational concept of | |
// serializing PHP arrays into single database columns. It will search for all | |
// matching data on the database and change it, even if it's within a serialized | |
// PHP array. | |
// The big problem with serialised arrays is that if you do a normal DB | |
// style search and replace the lengths get mucked up. This search deals with |
wget -O new-salts.key https://api.wordpress.org/secret-key/1.1/salt/ | |
sed -i '1s|^|\n*/\n|' new-salts.key | |
sed -i "/#@+/,/#@-/{ /#@+/{p; r new-salts.key | |
}; /#@-/p; d }" wp-config.php | |
rm -f new-salts.key |
<IfModule mod_mime.c> | |
AddType audio/mp4 m4a f4a f4b | |
AddType audio/ogg oga ogg | |
AddType application/javascript js jsonp | |
AddType application/json json | |
AddType video/mp4 mp4 m4v f4v f4p | |
AddType video/ogg ogv | |
AddType video/webm webm | |
AddType video/x-flv flv |
#!/bin/bash | |
WP_OWNER=fpmuser # <-- wordpress owner | |
WP_GROUP=fpmuser # <-- wordpress group | |
WP_ROOT=$1 # <-- wordpress root directory | |
WS_GROUP=apache # <-- webserver group | |
# reset to safe defaults | |
find ${WP_ROOT} -exec chown ${WP_OWNER}:${WP_GROUP} {} \; | |
find ${WP_ROOT} -type d -exec chmod 755 {} \; |