Apr 172017
 

Lobby

1. Defeat the two Security Guard (Boss Hogs).
2. Rob the tellers. Collect the chests behind each teller’s station.
3. Place the Diamond Chair on the pressure plate located behind the teller stations.
4. Flip the Switch, also behind the teller stations, on the other side.
5. Stand on the pressure plate in front of the door to open it.

Bank Manager’s Office

1. Defeat the Bank Manager (Corrupted Pigsy).
2. Loot the Bookshelves.

Safe Deposit Room

1. DO NOT KILL THE PIGSY!
2. Loot the Safe Deposit Boxes (Grand Arcstone Chests).
3. Place the Bookshelves and the Diamond Block on the 2 middle pressure plates.
4. Punch the Pigsy onto the last pressure plate.
5. Loot the chest and leave the room.

The Vault

1. Place a block onto the left pressure plate.
2. Use the extractors on the Diamond Ores.
3. Place a block on the pressure plate behind the Diamond Ores once you have extracted them.
4. Leave the room at the phased door by the Diamond Chair.

THE END

Aug 212016
 

Why do i want to bookmark pages?
The idea behind bookmarking is to save you time. It does just that by saving page addresses for quick access without having to redo your internet search. Remember how long it took you to find that page, and how many junk pages you had to click on to find it? Who wants to do that again? Just bookmark and you’ll never have to search for that again.

What pages should I bookmark?
Bookmark EVERYTHING you think might want to visit again later. Think of it as creating your own encyclopedia or your own search engine that only gives the results you want. The bookmarks folder DOES have a search box you can easily find your bookmarks with.

Organize your bookmarks according to subject matter and you’ll create yourself a nice little encyclopedia of information and resources to quickly find more information.

Oct 092012
 

The Code

After messing with tons of examples of PHP on an the easiest way to get the start of week’s date, I ended up combining a few examples and adding a bit of my own code.

This Week Starting Monday Date

Get this Mondays timestamp function

function mondayTimestamp($year, $week) {
// According to ISO-8601, January 4th is always in week 1
$halfwayTheWeek = strtotime($year.”0104 +”.($week – 1).” weeks”);
// Subtract days to Monday
$dayOfTheWeek = date(“N”, $halfwayTheWeek);
$daysToSubtract = $dayOfTheWeek – 1;
// Calculate the week’s timestamp
$unixTimestamp = strtotime(“-$daysToSubtract day”, $halfwayTheWeek);
// return the timestamp for Monday
return $unixTimestamp;
}

We need to pass the year and number of the week to the function.

// get this year
$year = date(“Y”);
// get the number of the week in this year
$week = date(“W”);
// get Mondays Timestamp
$mondaysDate = mondayTimestamp($year, $week);
// format the Date of Monday Starting this Week
$its_monday = date(‘Y-m-d’,$mondaysDate);
// =========== OUTPUT ============
echo “Start of Week: ” . $its_monday;

Last Week Starting Monday

Use the function above to get Mondays timestamp, but pass it a value for last week (W – 1) instead of this week.

// get last weeks number, if week = 1 set last_week to 52 and subtract 1 from the year
if (date(“W”) == 1) {
$last_week = 52;
$year = $year – 1;
} else {
  $last_week = date(“W”)-1;
}
// format last monday timestamp
$lastMondaysDate = mondayTimestamp($year, $last_week);
// format the Date of Monday Starting Last Week
$last_week_monday = date(‘Y-m-d’,$lastMondaysDate);
// ============== OUTPUT ===================
echo “Start of Last Week: ” . $last_week_monday;

=====================================================================
=====================================================================

Jul 222012
 

Source

Change Site & Home URL
UPDATE
wp_options SET option_value = replace(option_value, 'http://www.oldsiteurl.com', 'http://www.newsiteurl.com') WHERE option_name = 'home' OR option_name = 'siteurl';

Reset Password
UPDATE
wp_users SET user_pass = MD5( 'new_password' ) WHERE user_login = 'your-username';

Change URL in Content

UPDATE wp_posts SET post_content = REPLACE (post_content, 'http://www.oldsiteurl.com', 'http://www.newsiteurl.com');
Change GUID
UPDATE wp_posts SET guid = REPLACE (guid, 'http://www.oldsiteurl.com', 'http://www.newsiteurl.com');
Update Post Meta
UPDATE wp_postmeta SET meta_value = REPLACE (meta_value, 'http://www.oldsiteurl.com','http://www.newsiteurl.com');
Delete Revisions
DELETE a,b,c FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = 'revision'
Delete ‘Spam’ Comments

DELETE FROM wp_comments WHERE comment_approved = 'spam';