How To Make A MSG Generator In Visual Basic 2008

by admin on Friday 3 September 2010


HELLO YOUTUBE VIEWERS AND TODAY IM GOING TO SHOW YOU HOW TO MAKE A MSG GENERATOR. A MSG GENERATOR IS SOMETHING LIKE MY KEYGENS. SO JUP, IM GONNA SHOW YOU. IF YOU DONT HAVE MICROSOFT VISUAL BASIC 2008 EXPRESS EDITION, DOWNLOAD IT FROM HERE: www.microsoft.com THE CODE (MADE BY JLUI114 -ME-): www.mediafire.com THIS VIDEO WAS REQUESTED BY ComtekkidFilms IF YOU WANT ANY VIDEO, JUST SND ME A MSG!! SEE YOU LATER!! MY WEBSITE www.JLUI114.tk TWITTER http EMAIL jlui114@live.com jlui114@yahoo.com Creating A Website Saga Series: www.youtube.com If You Click On The Link ^^^^^ Im Going To Show You How To Create Your Own Website FREEEE!!!!



(HD) Microsoft Visual Basci 2008 – Simple Web Browser Tutorial

by admin on Sunday 29 August 2010


In this tutorial I’ll show you how to very easily make your own web browser in Visual Basic 2008. Download Visual Basic 2008 Here: www.microsoft.com You can find the wallpaper @ nickmeister.deviantart.com



PHP Path Resolution – Now PHP 5.3 compatible!

by LiraNuna on Sunday 29 August 2010

Presenting the PHP 5.3 compatible version of my PHP path resolution class!

Why there should be a difference? Because my original version used create_function, which… created a whole new function object every time you used one of the class’s methods. This was very memory expensive and even incurred a slight performance hit.

The new version uses PHP 5.3′s anonymous functions to create more readable code in addition to reducing memory consumption and execution time.

As usual, the source code is under the WTFPL for you to enjoy without any restrictions.

<?php
 
/**
 * @class Path
 *
 * @brief Utility class that handles file and directory pathes
 *
 * This class handles basic important operations done to file system paths.
 * It safely renders relative pathes and removes all ambiguity from a relative path.
 *
 * @author Liran Nuna
 */
final class Path
{
	/**
	 * Returns the parent path of this path.
	 * "/path/to/directory" will return "/path/to"
	 *
	 * @arg $path	The path to retrieve the parent path from
	 */
	public static function dirname($path) {
		return dirname(self::normalize($path));
	}
 
	/**
	 * Returns the last item on the path.
	 * "/path/to/directory" will return "directory"
	 *
	 * @arg $path	The path to retrieve the base from
	 */
	public static function basename($path) {
		return basename(self::normalize($path));
	}
 
	/**
	 * Normalizes the path for safe usage
	 * This function does several operations to the given path:
	 *   * Removes unnecessary slashes (///path//to/////directory////)
	 *   * Removes current directory references (/path/././to/./directory/./././)
	 *   * Renders relative pathes (/path/from/../to/somewhere/in/../../directory)
	 *
	 * @arg $path	The path to normalize
	 */
	public static function normalize($path) {
		return array_reduce(explode('/', $path), function($a, $b) {
			if($a === 0)
				$a = "/";
 
			if($b === "" || $b === ".")
				return $a;
 
			if($b === "..")
				return dirname($a);
 
			return preg_replace("/\/+/", "/", "$a/$b");
		}, 0);
	}
 
	/**
	 * Combines a list of pathes to one safe path
	 *
	 * @arg $root	The path or array with values to combine into a single path
	 * @arg ...		Relative pathes to root or arrays
	 *
	 * @note		This function works with multi-dimentional arrays recursively.
	 */
	public static function combine($root, $rel1) {
		$arguments = func_get_args();
		return self::normalize(array_reduce($arguments, function($a,$b) {
			if(is_array($a))
				$a = array_reduce($a, 'Path::combine');
			if(is_array($b))
				$b = array_reduce($b, 'Path::combine');
 
			return "$a/$b";
		}));
	}
 
	/**
	 * Empty, private constructor, to prevent instantiation
	 */
	private function __construct() {
		// Prevents instantiation
	}
}

Syndicated via RSS From: http://www.liranuna.com

Get free white papers delivered direct to your inbox from IT Knowledge Hub! Register now for cutting edge webcasts, reports, and white papers in your area of expertise.


Microsoft Visual Basic Tutorial Part 5

by admin on Tuesday 24 August 2010


Part 4 of my tutorial using Microsoft Visual Basic. Comment, Rate, Subscribe and check out my other videos on Visual Basic and other stuff.



Guide to microsoft visual basic 2008 express

by admin on Tuesday 24 August 2010


Copyright © 2010 IT Knowledge Hub LLC | Advertise | Contact | Privacy Policy | Terms of Use | Register