Blog

Easy Way to Reset Password for Windows 7, Windows 8 and others

Forget your Administrator password? Quickly recover your lost account or profile. Download Lavesoft and complete the installation. It gives you the option to use a CD or USB Thumbdrive. Done. Download

Read more

Download Office Full Different Versions

Getting started If you do not have a disk, visit www.office.com/setup to get started installing and using Office for the first time. Download, install, or reinstall Most versions of Office can be managed by logging into www.office.com/myaccount with your Microsoft Account. Depending on the type of Office you purchased, you can do the following on […]

Read more

Include WordPress wp-load in separate file

$parse_uri = explode( ‘wp-content’, $_SERVER[‘SCRIPT_FILENAME’] ); require_once( $parse_uri[0] . ‘wp-load.php’ ); Include that at the top of your separate file and you’ll be good to go. 🙂

Read more

Download NGUI for Free

NGUI is a powerful UI system and event notification framework for Unity (both Pro and Free, 3.4.2f3 or higher) written in C#. It features clean code and simple, minimalistic approach to everything. Most classes are kept under 200 lines of code. For a programmer this means a much easier time when it comes to working […]

Read more

Google Maps V3 Map inside Div instead or Body Tag

Ok instead of this body onLoad=”” to this div id=”map” simply add this below your map load(); This makes it to that the javascript runs at load. Done.

Read more

Disable Payment Method Based on Country Woocommerce PHP

// Disable gateway based on country function payment_gateway_disable_country( $available_gateways ) { global $woocommerce; if ( isset( $available_gateways[‘cod’] ) && $woocommerce->customer->get_country() <> ‘IN’ ) { unset( $available_gateways[‘cod’] ); } return $available_gateways; } add_filter( ‘woocommerce_available_payment_gateways’, ‘payment_gateway_disable_country’ );

Read more
PHP Functions

Woocommerce List all Available Payment Gateways

$available_gateways = WC()->payment_gateways->get_available_payment_gateways();

Read more

Fix Blurry Screen in DayZ

Im sure if you’ve played DayZ then you’ve faced the dreaded blurry screen when you get hit by a zombie or another player.   Well let’s fix that.  Follow these simple steps below. First Step Press ESC Second Step  Click Configure Third Step Click Video That’s it.  Blur is gone.  Now close out of the […]

Read more

Rust Experimental Console Commands

UID stands for User ID – this refers to someone’s SteamID64 key. To add an owner add the file users.cfg to your /cfg/ directory Moderating To define someone as an admin, or a moderator on your server simply type into the server console moderatorid 76561197960279927 garry   or ownerid 76561197960279927 garry     god true or false […]

Read more

Default Rust Legacy server.cfg File

##Current server cfg ##Edit the dickens out of these variables! rcon.password “YourPassword” server.hostname “Your Cool Server Name” server.maxplayers 50 server.pvp “true” sleepers.on “true” truth.enforce “true” airdrop.min_players “2” env.time “12” env.timescale “0.0066666667” crafting.instant “true” crafting.instant_admins “true” crafting.timescale “1” falldamage.enabled “true” player.backpackLockTime “0” cheaters.log “true”

Read more