UNDER CONSTRUCTION – Coconut Grove Peacock Tour 2010( Artistic Event ), Miami, Florida (March 2010)
Webstie Design and Setup ( WordPress )
- Larger than life fiberglass peacocks decorated by Coconut Grove, Miami Artists. These peacocks will be on display throughout the Coconut Grove village and main thorough fares starting March 2010 for six months.
- The website was custom designed using WordPress.
VirtualBox (Linux): Change UUID or Copy a VDI image to obtain a new UUID
- Virtual Box UUID Error Message
- Change UUID: Copying a VDI file using your standard operating system copy commands will duplicate the internal UUID provided by the VirtualBox image. In order to solve this problem you must execute the command
setvdiuuid.
admin@server$ VBoxManage internalcommands setvdiuuid virtualdisk.vdi
- Copy VDI Image with a new UUID:
clonevdi makes sure that the new disk image will have its own unique UUID. admin@server$ VBoxManage clonevdi original.vdi new.vdi
UNDER CONSTRUCTION – Cucu Nest ( T-Shirt Manufacture ), Miami, Florida (Januaray 2010)
Webstie Development ( WordPress, PHP, mySQL, JavaScript and Flash )
- Cucu Nest is a manufacture that designs and prints exceptional quality t-shirts .
- The website was custom designed using WordPress, SlideshowPro, SlideshowPro Director, and built using my own custom shoppingcart. Many additional features were added to customize the Flash portion of the website.
UNDER CONSTRUCTION – Network Resoucres ( Health Care Provider ), Miami, Florida (January 2010)
Webstie Development ( WordPress, PHP, mySQL, and JavaScript )
- Network Resoucres provides special services to health care companies.
- This website is still under construction. It is a simple WordPress website, custom designed using the clients logo and colors.
Gloria Lorenzo ( Sculptor and Painter ), Miami, Florida (Januaray 2010)
Webstie Development ( WordPress, PHP, mySQL, JavaScript and Flash )
- Gloria Lorenzo is a sculptor and painter. She works on many mediums and has the ability to capture space, time, emotions and reality.
- The website was custom designed with WordPress, SlideshowPro, and built using a custom wordpress shoppingcart.
Imaginart, Inc. ( Custom Wall Designs ), Miami, Florida (Januaray 2010)
Webstie Development ( WordPress, PHP, mySQL, JavaScript and Flash )
- Imaginart is an artist run company specializing in custom finishes for the home and office. Walls, floors and furniture, Imaginart’s designs provide the perfect complement, transforming your space with an array of exquisite custom finishes, including their top of the line, Venetian stucco.
- The website was custom designed with WordPress, SlideshowPro, and SlideshowPro Director.
Here you will find a list of PHP: Classes and Objects that I have used in my programs that I have found to be really usefull. This blog entry has been posted for future, personal reference.
Resize Images in PHP – is an Image Mainpulation class that allows you to easily rotate, crop, crop from center, reflection, resize percentage, remote image resize, save image as a different format, resize adaptive. This is a class written by phpthumb.gxdlabs.com. You can download it from their website, if that doesn’t work, download it from my webiste by clicking here.
Search and Replace Files using PHP – Finds and Replaces text searched for all files within a directory. This class is amazing, simple to use and fast. It was written by Razzaque Rupom. You can download the original files from phpclasses.org., if that doesn’t work, download it from my website by clicking here
.
WordPress’s Autosave feature is available for both Pages and Posts, and can be extreemly inconvenient when you are debugging your website. It can also create addtional loads on your server.
To disable this feature simply search your wordpress directory for: wp_enqueue_script('autosave')
Replace if with: // wp_enqueue_script('autosave')
Example: strposa ( string $haystack, array $needle [, int $offset = 0 ] )
This function searches a string for every element/value found in an array and returns the position of the first element/value found in the string. In technical terms, it searches for mutilple needles in a haystack and returns the position of the first occurance found in the string. Note: this function is case sensitive.
/**
* strposa ( string $haystack, array $needle [, int $offset = 0 ] )
*
* @param string $haystack
* @param mixed $needles - should be an array, but can be any
* string, int, or array
* @param integer $offset
* @return the position of the first items found in the array
*
* Original contibutions by:
* ==============================
* - Leonardo Martinez ( http://www.leonardomartinez.com/contact/ )
* - vbracco at gmail dot com
* - nathan at bitmesh dot com
* - dpharris at llu dot edu
*
* Description:
* ========================
* - searches for mutilple needles in a haystack and returns
* the position of the first occurance, case-sensitive.
* - finds the position of the first occurrence of array (needles)
* in the haystack string, case-sensitive.
* - if you are looking for more than one needle in the haystack,
* this function will replace php's strpos()
* - if you searching for the position of a single value, it is
* recommended that you use strpos().
*
*
* Notes:
* ====================================
* below are several functions that search for the position of a needle)
* ---------------------------------------------------------------------------
* strpos() - Returns the position of the first occurrence of a needle
* in the haystack string, case-sensitive.
* stripos() - Returns the position of the first occurrence of a needle
* in the haystack string, case-insensitive.
* strrpos() - Returns the position of the last occurrence of needle in
* the haystack string, case-sensitive. Note that the needle
* in this case can only be a single character in PHP 4. If a
* string is passed as the needle, then only the first character
* of that string will be used.
* strripos() - Returns the position of the last occurrence of needle in the
* haystack string, case-insensitive.
*
*/
function strposa( $haystack, $needles, $offset=0 ){
if (!is_array( $needles )) $needles = array( $needles );
$result = array();
foreach( $needles as $needle ){
if ( strpos( $haystack, $needle, $offset) !== false ) {
$result[] = strpos( $haystack, $needle, $offset);
}
}
if( empty( $result )) return false;
return min( $result );
}
$haystack = 'How much wood would a woodchuck chuck if a woodchuck could chuck wood';
$needles = array('woodchuck', 'wood', 'could', 'chuck');
$string = strposa( $haystack, $needles );
print_r($string);
/**
* the result will be 9,
* it found the word 'wood' first on the 9th element of the haystack.
* remember that it's really the 10th item on the list, but php starts with 0 (zero).
*/
eileenseitz.com, Miami, Florida (October 2009)
Webstie Development (CMS, WordPress, PHP, MySQL)
- Eileen Seitz, Inc. is a website for one of Florida’s best know artist. This website is a revision of our original PHP/MySQL database/shoppingcart developed in 2006. It offers a customzied shopping cart and blog through wordpress.
- The website was developed using WordPress as an API, and a cusomized shopping cart. Customers can logon to this website, complete their purchases using SSL, and provide feedback to the artist. The artist can also enter manage her shopping cart by adding new artwork and information into her shopping cart, alert customers of new art show schedules, update her biography and manage her blog from an administrative section in the program