<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.4" -->
<rss version="0.92">
<channel>
	<title>Techmocracy.net</title>
	<link>http://www.techmocracy.net</link>
	<description>All forms of technology are created equal</description>
	<lastBuildDate>Fri, 22 Apr 2011 17:38:19 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>MySQL Full Outer Join Example</title>
		<description>курсовая аудит материальных ценностей daewoo matiz руководство по ремонту материальное стимулирование персонала курсовая kia spectra руководство по эксплуатации руководство audi a4 производственные запасы курсовая работа руководство по ремонту холодильного оборудования комплексный анализ хозяйственной деятельности курсовая экономические методы управления персоналом курсовая руководство по установке autocad руководство пользователя курсовая туризм в россии ...</description>
		<link>http://www.techmocracy.net/2008/01/17/mysql-full-outer-join-example/</link>
			</item>
	<item>
		<title>VM Could not reserve enough space for object heap - Java</title>
		<description>This error is a bit annoying during the javac command:
Error occurred during initialization of VM
Could not reserve enough space for object heap

heap and stack sizes are often limited due to the virtualization

javac -J-Xms16m -J-Xmx48m MyClass.java

java -XX:PermSize=16M -Xms8m -Xmx48m

This can be set globally using an alias so that it doesn't have ...</description>
		<link>http://www.techmocracy.net/2007/05/24/vm-could-not-reserve-enough-space-for-object-heap-java/</link>
			</item>
	<item>
		<title>PHP Proper Case Function</title>
		<description>PHP function to make the first letter of each word capital and the following letters lower case.  If the first character is not a letter it capitalizes the second character.

PHP Proper Case Function </description>
		<link>http://www.techmocracy.net/2007/03/27/php-proper-case-function/</link>
			</item>
	<item>
		<title>PHP Regular Expression (regex) Email Validation</title>
		<description>

function isValidEmail($email)
{
$myReg="/^[A-Za-z0-9_-]+@[A-Za-z0-9_-]+\.([A-Za-z0-9_-][A-Za-z0-9_]+)$/";
if(preg_match($myReg, $email))
return true;
else
return false;
}

 </description>
		<link>http://www.techmocracy.net/2007/03/26/php-regular-expression-regex-email-validation/</link>
			</item>
	<item>
		<title>PHP HTTP POST Request - with cURL</title>
		<description>Here is a nice short function to execute an HTTP POST using cURL.
PHP HTTP POST Request With cURL 
There are no comments, but it is self explanatory. </description>
		<link>http://www.techmocracy.net/2007/03/25/php-http-post-request-with-curl/</link>
			</item>
	<item>
		<title>PHP HTTP POST Request - without cURL</title>
		<description>This snippet of code demonstrates how to execute an HTTP POST request without using curl.

This will not work in versions < PHP5 .

HTTP POST from PHP, without cURL </description>
		<link>http://www.techmocracy.net/2007/03/02/php-http-post-request-without-curl/</link>
			</item>
	<item>
		<title>Visual Basic - HTTP Post Function</title>
		<description>Public Function HTTPPost(ByVal myURL As String, ByVal myPost As String)
Dim temp As String
temp = ""
Try
Dim myURI As New Uri(myURL)
Dim request As Net.WebRequest = Net.WebRequest.Create(myURI)
Dim encoding As New System.Text.ASCIIEncoding()
Dim myByte As Byte() = encoding.GetBytes(myPost)
request.Method = "POST"
' Set the content type of the data being posted.
request.ContentType = "application/x-www-form-urlencoded"
' Set the content length ...</description>
		<link>http://www.techmocracy.net/2007/01/11/visual-basic-http-post-function/</link>
			</item>
	<item>
		<title>Visual Basic - HTTP Get Function</title>
		<description>Public Function HTTPGet(ByVal myURL As String)
Dim temp As String
temp = ""
Try
Dim myURI As New Uri(myURL)
Dim wr As Net.WebRequest = Net.WebRequest.Create(myURI)
wr.Credentials = Net.CredentialCache.DefaultCredentials
Dim response As Net.HttpWebResponse = CType(wr.GetResponse(), Net.HttpWebResponse)
Dim datastream As IO.Stream = response.GetResponseStream
Dim reader As New IO.StreamReader(datastream)
Dim responseFromServer As String = reader.ReadToEnd()
temp = responseFromServer
reader.Close()
datastream.Close()
response.Close()
Catch
MsgBox(Err.Description & vbCrLf & myURL)
End Try
Return temp
End ...</description>
		<link>http://www.techmocracy.net/2007/01/11/visual-basic-http-get-function/</link>
			</item>
	<item>
		<title>PHP Open Source Timesheet System</title>
		<description>"Timesheet.php is a PHP application designed to keep track of the hours worked by multiple people on multiple projects. It allows users to log in through their web browser and manage the times that they are clocked on or clocked off."

The application is easy to install if you have mild ...</description>
		<link>http://www.techmocracy.net/2007/01/04/php-open-source-timesheet-system/</link>
			</item>
</channel>
</rss>

