<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Name Generators Blog &#187; generator</title>
	<atom:link href="http://www.name-generators.com/tag/generator/feed" rel="self" type="application/rss+xml" />
	<link>http://www.name-generators.com</link>
	<description>Blogging about name generators</description>
	<lastBuildDate>Sun, 04 Dec 2011 17:28:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Elf names for Christmas</title>
		<link>http://www.name-generators.com/name-generators/elf-names-for-christmas.htm</link>
		<comments>http://www.name-generators.com/name-generators/elf-names-for-christmas.htm#comments</comments>
		<pubDate>Fri, 03 Dec 2010 18:21:33 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Name generator stuff]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[elf names]]></category>
		<category><![CDATA[generator]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=425</guid>
		<description><![CDATA[Each year for Christmas I experience a huge interest in the Elf Names made by my elf name generator. Google Analytics shows that the daily entrances to the elf generator  doubles from  4-500 to over 1000 in late November and &#8230; <a href="http://www.name-generators.com/name-generators/elf-names-for-christmas.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Each year for Christmas I experience a huge interest in the <strong><a title="Elf Names" href="http://online-generator.com/name-generator/elf-name-generator.php">Elf Names</a></strong> made by my elf name generator.</p>
<p>Google Analytics shows that the daily entrances to the elf generator  doubles from  4-500 to over 1000 in late November and December.  Google web master tool confirms this trend in searches for elf names and other elf related stuff.</p>
<p>My statistics also shows that  more users than usual are sharing the elf names with friends at Facebook, Twitter, StumbleUpon and other social bookmarkings sites.</p>
<p>Actually, I am somewhat puzzled by this development in December. The increasing in searches is quite self evident.  But my elf names are based in the fantasy universe and not aimed at being Christmas elf names. But maybe confusion  is due to lack of knowledge to the American tradition for Christmas names. In Denmark typical Christmas elf names derives from local folklore and nouns related to Christmas combined with good old fashion first names. A Typical Danish Elf names  could be Peter Porridge or Sven Spruce.</p>
<p>Well, try <a title="Elf Names" href="http://online-generator.com/name-generator/elf-name-generator.php">Elf Names</a> yourself and tell me what you think. Can they be used for Christmas Elf names in your country or are they totally nonsense?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/name-generators/elf-names-for-christmas.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash name generator</title>
		<link>http://www.name-generators.com/name-generators/flash-name-generator.htm</link>
		<comments>http://www.name-generators.com/name-generators/flash-name-generator.htm#comments</comments>
		<pubDate>Wed, 13 Oct 2010 18:45:38 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Name generator stuff]]></category>
		<category><![CDATA[ActionScript]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[generator]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=335</guid>
		<description><![CDATA[A  flash name generator can be useful as a build-in feature  in various flash games and applications. For example could you use it, when you add a new movieclip to the stage.  A Flash name generator could give these movieclips  &#8230; <a href="http://www.name-generators.com/name-generators/flash-name-generator.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A  flash name generator can be useful as a build-in feature  in various flash games and applications. For example could you use it, when you add a new movieclip to the stage.  A Flash name generator could give these movieclips  random names. Or the star in your Flash game can have a new and random name every time the game is loaded or is restarted.</p>
<p>And then of course because name generators are fun to play with and is a simple way for the beginner to get  in to ActionScript 3 programming and Flash in general.</p>
<p>In this  tutorial I will show you how to make a name generator in Flash and ActionScript.</p>
<h3>A name generator script in ActionScript 3</h3>
<p>First let&#8217;s have a look at the complete ActionScript for the  Flash name generator:</p>
<pre lang="actionscript" line="1">var myName:String;
var random1:Number;
var random2:Number;
var metal:Array = new Array("Gold","Silver","Iron","Steel","Copper","Bronze");
var bird:Array = new Array("Eagle","Hawk","Sparrow","Owl","Kite","Albatross");

generateBtn.addEventListener(MouseEvent.CLICK, makeName);

function makeName(evt:MouseEvent):void {
    random1 = Math.floor(Math.random() * metal.length);
    random2 = Math.floor(Math.random() * bird.length);
    myName = metal[random1] + " " + bird[random2];
    resultName.text = myName;
}</pre>
<p>Now lets walk through this simple script</p>
<h3>How to make a name generator in ActionScript. Line by line</h3>
<p>In Line 1-3 we declare some variables. myName  shall hold the generated name, and 2 variables to hold the random numbers we need in the process.</p>
<p>In line 4-5 we declare the arrays. These are the heart of a name generator and  the arrays are the part you need to change with your own names to make your name generator if you just dowvnload my .fla example file. The arrays can hold as many names or words as you like, just as long as you obey the actionscript syntax.</p>
<p>In line 7 we add an eventlistener to the button. generateBtn refers to the instance of the button on the stage. To that instance we add the eventlistener, that listen after the mouseevent CLICK. When that event happens (when the user click the button) the &#8220;makeName&#8221; function is run.</p>
<p>In line 9 we declare our makeName function</p>
<p>In line 10-11 we use Flashes buikd in math library to first get a random number based on the length of the array and the we floor that number to get an integer. These to 2 randoms integers are used in line 12 to choose random names from the arrays or word lists. In this case we have 2 random names we concatenate with a space in the middle. The name is saved to the myName variable.</p>
<p>In line 13 we add the text(name) to a dynamic textfield we have made on the stage with the instance name  resultName.</p>
<h3>The necessary Flash to make the name generator work</h3>
<p>You only need to add a few Flash elements to the stage to make it all work.</p>
<ul>
<li>A layer with the above actions script in frame 1</li>
<li>A layer with a button with the instance name: generateBtn</li>
<li>A layer with a dynamic text field with the instance name: resultName</li>
</ul>
<p>If you are new to Flash it may sound a little complicated, but don&#8217;t worry. Just download my example text, and together with this simple tutorial, it really is quite simple to understand how you make your own Flash generator. Even for the Flash and ActionScript beginner.</p>
<h3>Download Flash Name Generator</h3>
<p>Here you can  <a title="Download Flash name generator" href="http://www.name-generators.com/download/flash-name-generator.fla">download my Flash name generator</a>. A complete .fla Flash file ready to open and work on yourself.</p>
<p>And as usual:  If you make a cool name generator based on this ActionScript generator throw a comment and I might link back to you or make a short review of your new Flash application.</p>
<h3>The example swf name generator</h3>
<p>Here&#8217;s my simple example file flash name generator in use.  Be aware of that the very simple actionsscript and extremely short arrays only give very few different names:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="470" height="230" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.name-generators.com/generators/flash-name-generator.swf" /><embed type="application/x-shockwave-flash" width="470" height="230" src="http://www.name-generators.com/generators/flash-name-generator.swf"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/name-generators/flash-name-generator.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Band name widget</title>
		<link>http://www.name-generators.com/name-generators/band-name-widget.htm</link>
		<comments>http://www.name-generators.com/name-generators/band-name-widget.htm#comments</comments>
		<pubDate>Fri, 23 Jul 2010 10:09:32 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Name generator stuff]]></category>
		<category><![CDATA[band names]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=197</guid>
		<description><![CDATA[I was contacted by Aladdin from the  Australian band site entertainya. Aladdin wanted a band name  widget to spice up entertainya.com.au. Alladin wrote: My Name is Aladdin, I run and own an Australian online music and entertainment called entertainya. I &#8230; <a href="http://www.name-generators.com/name-generators/band-name-widget.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_211" class="wp-caption alignright" style="width: 227px"><a href="http://www.name-generators.com/wp-content/uploads/2010/07/band-name-widget.png"><img class="size-full wp-image-211 " title="Band name widget" src="http://www.name-generators.com/wp-content/uploads/2010/07/band-name-widget.png" alt="" width="217" height="432" /></a><p class="wp-caption-text">Band name widget at Australian band site entertainya</p></div>
<p>I was contacted by Aladdin from the  <a title="Australian band  and ochestra site" href="http://www.entertainya.com.au/" target="_blank">Australian  band site entertainya</a>. Aladdin wanted a <strong> band name  widget </strong>to spice up entertainya.com.au.</p>
<p style="padding-left: 30px;">Alladin wrote:<em><br />
My Name is Aladdin, I run and own an Australian online music and  entertainment called entertainya. I have been on the hunt for something  fresh and exciting to add to my site as i have 1000&#8242;s of musicians  browsing everyday.<br />
I came across your project and would love for you to consider allowing me to integrate your band name generator onto my site.</em></p>
<p>I thought the idea sounded exiting and started to develop a band name widget. The band name widget gave the idea to make a free  name generator widget.</p>
<h3>Band name generator</h3>
<p>The band name generator  widget is a  full copy of the <a title="Band name generator" href="http://online-generator.com/name-generator/band-name-generator.php" target="_blank">band name generator</a>. Same amount of band name  combinations and with a 100%  functionality.</p>
<p>You can see the band widget and how seamless  it integrates with the site.  Entertainya.com.au is based on a  joomla cms.  The band generator code is run locally on the client, so it will work with all blogs, cms as well as ordinary html pages.</p>
<h3>Behind the band widget</h3>
<p>The band name widget is programmed in JavaScript, HTML and CSS, and Alladin    just needed to add a single line of JavaScript to include on his website.</p>
<p>The widget is compressed to minimize download time, and of course follows the w3.0rg standards for proper HTML and validates as XHTML 1.1.</p>
<h3>Do you want a cool name widget too?</h3>
<p>Do you want a similar or other specialized cool name widget on your site, blog  or  favorite forum? Check out this free <a title="Free name generator widget" href="http://www.name-generators.com/name-generators/name-generator-widget.htm">name generator widget</a>.</p>
<p>Are you looking for a different kind of cool name widget? Please contact me and let&#8217;s see if we can work out something.</p>
<h3>Other ways to get a name generator</h3>
<p><a title="How to make a name generator" href="http://www.name-generators.com/name-generators/how-to-make-name-generator.htm">How to make a name generator</a></p>
<p><a title="Name generator script" href="http://www.name-generators.com/name-generators/name-generator-script.htm">Name generator script</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/name-generators/band-name-widget.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Name generator script</title>
		<link>http://www.name-generators.com/name-generators/name-generator-script.htm</link>
		<comments>http://www.name-generators.com/name-generators/name-generator-script.htm#comments</comments>
		<pubDate>Tue, 11 May 2010 17:38:10 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Name generator stuff]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=171</guid>
		<description><![CDATA[I have made a  complete name generator script to download and use as your own. The script contains a full functional HTML page with all necessary JavaScript code, HTML and CSS, and can be run in any browser. The name &#8230; <a href="http://www.name-generators.com/name-generators/name-generator-script.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have made a  complete name generator script to download and use as your own. The script contains a full functional HTML page with all necessary JavaScript code, HTML and CSS, and can be run in any browser.</p>
<p>The name generator script is a complete do-it-yourself name generator! Ready to run with or without changes. The script is a simplified version one of the one I use at all my <a title="Name generators" href="http://online-generator.com/" target="_blank">name generators</a>.</p>
<p>The script is thoroughly explained and commented in the download file. So it is very easy  to work with for everybody, even for beginners to web programming. If you like further explanation on how the script works visit my <a title="How to make a name generator tutorial" href="http://www.name-generators.com/name-generators/how-to-make-name-generator.htm" target="_blank">How to make a name generator</a> tutorial, where i you through a only slightly more simple generator script.</p>
<p>To get up and running just download the script, change the text and change the word arrays to your likings.  And you got yourself your own personal name generator.</p>
<h3 style="font-size: 20px; margin-bottom: 10px;">How to use the name generator script</h3>
<h3>Getting started</h3>
<p>Download the <a href="http://www.name-generators.com/download/name-generator-script.zip">name-generator-script.zip</a>.</p>
<p>Or just visit the <a title="Name Generator Script demo" href="http://www.name-generators.com/download/name-generator-script-demo.html" target="_blank">name generator script demo</a>, right click the page. Select view source. Copy the source to a text-editor.<br />
Save is at generator.html.</p>
<h3>How to run it</h3>
<p>It&#8217;s easy. Just open the html file with your favorite browser.</p>
<h3>How to edit it</h3>
<p>To edit this page open it with a text editor with syntax highlighting. I&#8217;ll strongly recommend <a href="http://notepad-plus.sourceforge.net/">notepadd++</a> a free, fast and flexible text editor, I also use myself.</p>
<h3>Name Generator FAQ</h3>
<p>No one yet. Guess the code must be  self-explanatory. <img src='http://www.name-generators.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   Well seriously&#8230; if you need help just ask your questions below. I&#8217;ll try my best to help you.</p>
<p>EDIT: Well now the comments works as a FAQ.  Please check them to see if you question already has been asked.</p>
<h3>How to get visitors on your new name generator</h3>
<p>If you make a cool name generator, I might wanna make a review of it. Just write a comment and I&#8217;ll look into it.</p>
<h3>How to host your new name generator</h3>
<p>There&#8217;s several ways to host your new name generator.</p>
<p>If you want your own domain name there&#8217;s a lot of companies to choose from. If you stick to some of the bigger companies the hosting is often very reliable.</p>
<p>The price level is often low and sometimes you can get a free domain name with the hosting plan.</p>
<p>But you can also find free hosting, if you don&#8217;t want your own domain.  Just make sure the service you choose supports the running of JavaScript.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/name-generators/name-generator-script.htm/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>Blog name generator</title>
		<link>http://www.name-generators.com/name-generators/blog-name-generator.htm</link>
		<comments>http://www.name-generators.com/name-generators/blog-name-generator.htm#comments</comments>
		<pubDate>Sat, 10 Apr 2010 21:52:35 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Name generator stuff]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog names]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[name]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=124</guid>
		<description><![CDATA[A friend of mine suggested that I made a blog name generator. Why? I already have a great blog name generator.  Code Name &#8211; Blog Name Generator? No reason to start all over. The  Code and Blog Name Generator makes &#8230; <a href="http://www.name-generators.com/name-generators/blog-name-generator.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A friend of mine suggested that I made a <strong>blog name generator</strong>. Why? I already have a great blog name generator.  <img src='http://www.name-generators.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Code Name &#8211; Blog Name Generator?</h3>
<p>No reason to start all over. The  <a title="code and blog name generator" href="http://online-generator.com/name-generator/codename-generator.php">Code and Blog Name Generator</a> makes cool  ideas for blog names.  By design it of course is originally a code name creator, but  the results is useful in a wide variety of areas. And many of the generated code names would also work great as blog names. What would you say to blog names like:</p>
<ul>
<li>Rough Heart</li>
<li>Scarlet Moving Pens</li>
<li>Autumn Confidential</li>
<li>Subtle Knife</li>
</ul>
<p>I think they could be pretty cool blog names. So from today instead of  reinventing the wheel, I simply claim the code generator to also be a <a title="Blog name generator" href="http://online-generator.com/name-generator/codename-generator.php">Blog Name Generator</a>.</p>
<p>EDIT: I just added a domain availability check function, so you right away can check if the suggested blog name is available as a domain name. Several top level domains are checked.</p>
<h3>Making names</h3>
<p>The names are made by 2 and 3 word combinations from word list specially chosen for making code names. Words with lots of  meaning a strong ability of creating  images. The results is powerful, inspiring and creative code and cool blog names.</p>
<p>An algorithmic program gives variation and up to 5 million different code or blog names.</p>
<h3>What is in a good blog name</h3>
<p>Well it really depends on the he subject of the blog and the personalty of the blogger. But a good blog name could be</p>
<ul>
<li>describing for the content of articles and subjects</li>
<li>content important keywords</li>
<li>memorable</li>
<li>catchy and cool</li>
</ul>
<p>A blog name generator can&#8217;t do much for you if you&#8217;re looking for specific and descriptive title like the title of my blog. But if you&#8217;re looking for catchy, cool, funny blog  names, a name generator can help you in the process.</p>
<h3>Idea generator</h3>
<p>Don&#8217;t expect too much. A name generator is basically an idea generator. It does not necessarily make the perfect names. A simple artificial intelligence of a rather simple script don&#8217;t get the subtle meanings in certain word combinations. And it&#8217;s often  the subtle nuances and meanings that separates the good blog name from the bad one.</p>
<p>The strength of a generator is that it can come up with endless combinations, cool ideas and a lot of suggestions.</p>
<p>You just have to take the good ideas and form them into you personal blog name.</p>
<p>Go to the <strong><a title="code and blog name generator" href="http://online-generator.com/name-generator/codename-generator.php">Code and Blog Name Generator.</a></strong></p>
<h3>Make your own blog name generator</h3>
<p>If you are not happy to use<strong> </strong>the code name generator as a solution, it has never been easier to make you own blog name generator. You just have to download the full functional <a title="Name generator script" href="http://www.name-generators.com/name-generators/name-generator-script.htm">name generator script</a>, and add you own word lists.</p>
<p>In a  few minutes you can have a simple blog name generator up and running. And if you put a little more work into it, you can very easily make a full blown blog name generator.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/name-generators/blog-name-generator.htm/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Flip text generator</title>
		<link>http://www.name-generators.com/other-generators/flip-text-generator.htm</link>
		<comments>http://www.name-generators.com/other-generators/flip-text-generator.htm#comments</comments>
		<pubDate>Fri, 05 Mar 2010 16:22:47 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Other generators]]></category>
		<category><![CDATA[flip text]]></category>
		<category><![CDATA[generator]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=65</guid>
		<description><![CDATA[A generator that can flip text might be pretty useless, but definitely is great fun. One of the best to flip text is flipmytext.com. Flipmytext can flip text upside down, flip words, reverse single words or the entire text. Everything can be &#8230; <a href="http://www.name-generators.com/other-generators/flip-text-generator.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A generator that can flip text might be pretty useless, but definitely is great fun. One of the best to flip text is <a title="Flip text" href="http://www.flipmytext.com/" target="_blank">flipmytext.com</a>.</p>
<p>Flipmytext can flip text upside down, flip words, reverse single words or the entire text. Everything can be pretty messed up using the flip text generator.</p>
<p>Here some text that&#8217;s upside down:</p>
<blockquote><p>uʍop ǝpısdn  sɹoʇɐɹǝuǝƃ ǝɯɐu ǝɥʇ ɯɹoɟ sǝɯɐu ǝɥʇ dıןɟ oʇ ɹoʇɐɹǝuǝƃ ʇxǝʇ dıןɟ ǝɥʇ ǝsn</p></blockquote>
<p>Here  some text that is  flipped over</p>
<blockquote><p>srotareneg eman  eht mrof seman eht pilf ot rotareneg txet pilf eht esu</p></blockquote>
<h3>Use of a flip text generator</h3>
<p>You can use the flipped text at facebook, myspace and at other socials networks. As I said it&#8217;s pretty useless but quite fun, and it might impress you friends. <img src='http://www.name-generators.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Upside down generator</h3>
<p>If you wanna play with it yourself you check this <a title="upside down text mapping" href="http://www.fileformat.info/convert/text/upside-down-map.htm" target="_blank">upside-down character mapping</a>. The side also holds a upside down generator, but this generator only can flip text upside down and nothing more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/other-generators/flip-text-generator.htm/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Japanese name generators</title>
		<link>http://www.name-generators.com/name-generators/japanese-name-generators.htm</link>
		<comments>http://www.name-generators.com/name-generators/japanese-name-generators.htm#comments</comments>
		<pubDate>Wed, 17 Feb 2010 09:43:25 +0000</pubDate>
		<dc:creator>Niels</dc:creator>
				<category><![CDATA[Name generator stuff]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[Japanese]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[names]]></category>

		<guid isPermaLink="false">http://www.name-generators.com/?p=42</guid>
		<description><![CDATA[Friday I went out to dine with my colleagues on a Japanese restaurant. On the menu was sushi and Iki beers. Superb! Just need a Japanese name now. Name generators The Japanese name generator from the rumandmonkey.com was my first choice. &#8230; <a href="http://www.name-generators.com/name-generators/japanese-name-generators.htm">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Friday I went out to dine with my colleagues on a Japanese restaurant. On the menu was sushi and Iki beers. Superb! Just need a Japanese name now.</p>
<h2>Name generators</h2>
<p>The <a title="Japanese name generator" href="http://rumandmonkey.com/widgets/toys/namegen/969/" target="_blank">Japanese name generator</a> from the rumandmonkey.com was my first choice. The interface of name generator is simple and easy to overview, but it is a huge pain though, that the generator only generates one name at the time. And you need to use the browsers back button to come back to the name generator. Also you need to type in different names and to select boy name/girl name each time you want make a new name</p>
<p>The <a title="female Japanese names" href="http://nine.frenchboys.net/jagirl.php" target="_blank">female Japanese name generator</a> and the <a title="Male Japanese name generator" href="http://nine.frenchboys.net/jaboy.php" target="_blank">male Japanese name generator</a> is much more user friendly. The user interface is extremely simple and easy to overview. Here you can generate as many names you want. Just a click the  button each time you need a new name, and the select box will remember how many names you want to generate.</p>
<h2>Japanese names</h2>
<p>Japanese names in modern times usually consist of a family name (surname), followed by a given name.  Japanese names are usually written in <em>kanji</em>, which are characters of usually Chinese origin in Japanese pronunciation.</p>
<p>Read more about how <a title="Japanese names" href="http://en.wikipedia.org/wiki/Japanese_name">Japanese names</a> are constructed at the Wikipediea</p>
<p>There are more Japanese generators out there, but most of them are covered with commercials and are a real pain to use. But if you know any good ones just throw a comment. <img src='http://www.name-generators.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.name-generators.com/name-generators/japanese-name-generators.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

