<?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>Off topic | Creative Bits</title>
	<atom:link href="https://creativebits.org/category/off-topic/feed/" rel="self" type="application/rss+xml" />
	<link>https://creativebits.org</link>
	<description>Design News &#38; Inspiration</description>
	<lastBuildDate>Mon, 05 Jun 2023 11:07:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
	<item>
		<title>Using ChatGPT as a Code Generator</title>
		<link>https://creativebits.org/off-topic/using-chatgpt-as-a-code-generator/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Mon, 05 Jun 2023 11:07:24 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://creativebits.org/?p=6321</guid>

					<description><![CDATA[<p>Using AI to generate code can save time and potentially expose you to different ways of approaching a problem. OpenAI&#8217;s ChatGPT can be leveraged as a code generator in this context. However, to effectively utilize this powerful tool, some strategies and understanding are needed. This expanded guide delves deeper into using ChatGPT for code generation. [...]</p>
The post <a href="https://creativebits.org/off-topic/using-chatgpt-as-a-code-generator/">Using ChatGPT as a Code Generator</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">Using AI to generate code can save time and potentially expose you to different ways of approaching a problem. OpenAI&#8217;s ChatGPT can be leveraged as a code generator in this context. However, to effectively utilize this powerful tool, some strategies and understanding are needed. This expanded guide delves deeper into using ChatGPT for code generation.</span></p>
<p>&nbsp;</p>
<h2><span style="font-weight: 400;">1. Be Specific With Your Request</span></h2>
<p><span style="font-weight: 400;">ChatGPT&#8217;s ability to generate useful code highly depends on the specificity of your request. You&#8217;ll need to clearly specify the language and framework you want to use and explain what you want the code to do.</span></p>
<p><span style="font-weight: 400;">For example, &#8220;Write Python code that opens a CSV file named &#8216;data.csv&#8217;, reads its content, and prints each row on the console&#8221; is a well-framed prompt. This specific prompt allows ChatGPT to generate the following Python code:</span></p>
<pre>import csv

def read_csv(filename):
with open(filename, 'r') as file:
reader = csv.reader(file)
for row in reader:
print(row)

read_csv('data.csv')</pre>
<p><span style="font-weight: 400;">However, for more complex requests, you may want to include additional context or requirements. Suppose you want to generate Python code to create a bar plot using matplotlib, based on data from a CSV file. A more specific request could be: &#8220;Write Python code using matplotlib and pandas to create a bar plot. The data should be read from a CSV file named &#8216;data.csv&#8217;. The x-axis should represent the &#8216;categories&#8217; column and the y-axis should represent the &#8216;values&#8217; column.&#8221;</span></p>
<h2><span style="font-weight: 400;">2. Structured Data</span></h2>
<p><span style="font-weight: 400;">Generating code to handle structured data, like JSON or XML, is another use case where ChatGPT can be helpful. When asking for code to create structured data, ensure that you provide the desired structure.</span></p>
<p><span style="font-weight: 400;">For example, you could ask, &#8220;Create a JSON object in JavaScript that includes the name, age, and email of a person.&#8221; ChatGPT can then generate:</span></p>
<pre>let person = {
"name": "John Doe",
"age": 30,
"email": "john.doe@example.com"
};

console.log(JSON.stringify(person));</pre>
<p><span style="font-weight: 400;">You can also request more complex structures. For instance, if you need a JSON object representing a team of people, you might ask, &#8220;Create a JSON object in JavaScript that represents a team. Each team member should have a name, age, role, and email.&#8221;</span></p>
<h2><span style="font-weight: 400;">3. Breaking Down Complex Requests</span></h2>
<p><span style="font-weight: 400;">ChatGPT&#8217;s response length limit may not accommodate long or complex code. In these cases, breaking down the problem into smaller, manageable tasks can be an effective approach. Requesting code for each part allows ChatGPT to focus on specific functionality, making the responses more manageable and accurate.</span></p>
<p><span style="font-weight: 400;">For instance, when building a web scraper in Python using BeautifulSoup, you might start by asking for a script that fetches the HTML of a webpage. Next, you could request a method to extract specific elements, and so on. This gradual approach allows you to assemble a complete, complex script from multiple accurately generated snippets.</span></p>
<h2><span style="font-weight: 400;">4. Debugging Help</span></h2>
<p><span style="font-weight: 400;">Beyond generating code, ChatGPT can be a useful tool in debugging. If you&#8217;re encountering an issue with your code, you can present the problematic script and describe the problem. ChatGPT might help identify and fix the issue.</span></p>
<p><span style="font-weight: 400;">For example, you could say: &#8220;I have a Java function that is supposed to return the factorial of a number, but it&#8217;s returning wrong results. Here&#8217;s the code&#8230;&#8221;</span></p>
<p><span style="font-weight: 400;">Keep in mind that the quality of the debugging assistance will depend on the clarity of your description of the problem and the provided context.</span></p>
<h2><span style="font-weight: 400;">5. Use It For Learning</span></h2>
<p><span style="font-weight: 400;">As an AI language model, ChatGPT is not only capable of generating code but can also be used as a learning tool. You can ask it to explain concepts, syntax, or code structure. You could request walkthroughs of simple projects, or ask about the pros and cons of different coding practices or frameworks. Essentially, you can use it as a virtual tutor to expand your understanding of different coding languages or concepts.</span></p>
<h2><span style="font-weight: 400;">6. Limitations</span></h2>
<p><span style="font-weight: 400;">While ChatGPT is a powerful tool, it has its limitations. It can sometimes produce code that is inefficient or doesn&#8217;t follow best practices. It might also not be fully aware of updates or new features introduced to programming languages or frameworks after its last training data in September 2021. Consequently, it&#8217;s critical to always review the code it generates and to cross-reference with the latest official documentation or resources.</span></p>
<h2><span style="font-weight: 400;">7. Ethical Considerations</span></h2>
<p><span style="font-weight: 400;">When using AI tools like ChatGPT, ethical considerations should always be paramount. Ensure that the code you&#8217;re generating respects intellectual property rights and doesn&#8217;t violate privacy norms or laws. Also, be mindful of the potential for misuse, such as generating malicious code. AI should be used responsibly, and the code it generates should be used ethically.</span></p>
<h2><span style="font-weight: 400;">Where to learn?</span></h2>
<p><span style="font-weight: 400;">To further your understanding and optimize the use of ChatGPT as a programmer, the course titled &#8220;</span><a href="https://icons8.com/l/chatgpt-coding-course/"><span style="font-weight: 400;">Unlocking the Potential of ChatGPT for Programmers: Best Practices and Cheats</span></a><span style="font-weight: 400;">&#8221; by Icons8 provides valuable insights. This comprehensive guide dives into advanced tips and strategies to extract the best results from AI. It covers a range of topics, from efficient prompt construction to using ChatGPT for debugging and learning new programming concepts. Harnessing the full potential of ChatGPT can make your programming tasks smoother and more efficient, and this guide serves as an excellent resource to make that possible.</span></p>
<h2><span style="font-weight: 400;">Conclusion</span></h2>
<p><span style="font-weight: 400;">ChatGPT can be a powerful tool when leveraged correctly. While it has its limitations, its capabilities in code generation and debugging are extensive. Whether you&#8217;re an experienced developer or a beginner, ChatGPT can help streamline your coding process, provided you give it clear, specific instructions and understand its limitations. Always remember that AI is here to assist us, not to replace human creativity and ingenuity.</span></p>The post <a href="https://creativebits.org/off-topic/using-chatgpt-as-a-code-generator/">Using ChatGPT as a Code Generator</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Getting Lucky with CMYK</title>
		<link>https://creativebits.org/off-topic/getting_lucky_cmyk/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Thu, 28 Feb 2013 08:08:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/getting_lucky_cmyk/</guid>

					<description><![CDATA[<p>Despite every precaution and the expertise of those involved, there&#8217;s always a certain amount of chance involved when full-color publications hit the press. And there&#8217;s nothing quite like that sickening feeling when you realize that the beige you so carefully chose was rendered with pink overtones. But now you can try your luck with process [...]</p>
The post <a href="https://creativebits.org/off-topic/getting_lucky_cmyk/">Getting Lucky with CMYK</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-field-titleimage field-type-image field-label-hidden'>
<div class='field-items'>
<div class='field-item even'><a href='https://creativebits.org/sites/default/files/cards1.jpg'><img src='https://creativebits.org/sites/default/files/cards1.jpg' width='496' height='331' alt=''></a></div>
</div>
</div>
<div class='field field-name-body field-type-text-with-summary field-label-hidden'>
<div class='field-items'>
<div class='field-item even'>
<p>Despite every precaution and the expertise of those involved, there&#8217;s always a certain amount of chance involved when full-color publications hit the press. And there&#8217;s nothing quite like that sickening feeling when you realize that the beige you so carefully chose was rendered with pink overtones. But now you can try your luck with process color without risking your client&#8217;s money or your reputation, thanks to CMYK playing cards from <a href='http://hundredmillion.co.uk/HM-cmykcards.html' rel='nofollow'>the Hundred Million site</a>.</p>
</p></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry will be automatically closed on April 25, 2013.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/getting_lucky_cmyk/">Getting Lucky with CMYK</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>A Pictogram View of the Oscars</title>
		<link>https://creativebits.org/off-topic/pictogram_view_oscars/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Mon, 25 Feb 2013 14:10:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/pictogram_view_oscars/</guid>

					<description><![CDATA[<p>The Oscars have become a venerable (some would say tired) institution. Awarded consistently for apparently all the wrong reasons, this annual event still somehow holds our attention, to the point where it has become the platform for all kinds of riffs. Designer Matteo Civaschi of H-57 created a series of pictograms intepreting some of the [...]</p>
The post <a href="https://creativebits.org/off-topic/pictogram_view_oscars/">A Pictogram View of the Oscars</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-field-titleimage field-type-image field-label-hidden'>
<div class='field-items'>
<div class='field-item even'><a href='https://creativebits.org/sites/default/files/oscars.jpg'><img src='https://creativebits.org/sites/default/files/oscars.jpg' width='496' height='338' alt=''></a></div>
</div>
</div>
<div class='field field-name-body field-type-text-with-summary field-label-hidden'>
<div class='field-items'>
<div class='field-item even'>
<p>The Oscars have become a venerable (some would say tired) institution. Awarded consistently for apparently all the wrong reasons, this annual event still somehow holds our attention, to the point where it has become the platform for all kinds of riffs. Designer Matteo Civaschi of H-57 created a series of pictograms intepreting some of the hottest contenders, with the entire series available on the <a href='http://www.mymodernmet.com/profiles/blogs/h57-oscar-best-picture-nominees'>My Modern Met</a> site.</p>
</p></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry will be automatically closed on April 22, 2013.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/pictogram_view_oscars/">A Pictogram View of the Oscars</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What Google Glass will really feel like?</title>
		<link>https://creativebits.org/off-topic/what_google_glass_will_really_feel/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Wed, 20 Feb 2013 17:27:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/what_google_glass_will_really_feel/</guid>

					<description><![CDATA[<p>Based on the latest Google Glass ad you can see below. Commenting on this Blog entry will be automatically closed on April 17, 2013.</p>
The post <a href="https://creativebits.org/off-topic/what_google_glass_will_really_feel/">What Google Glass will really feel like?</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-field-titleimage field-type-image field-label-hidden'>
<div class='field-items'>
<div class='field-item even'><a href='https://creativebits.org/sites/default/files/google-glass-reality.jpg'><img src='https://creativebits.org/sites/default/files/google-glass-reality.jpg' width='1130' height='660' alt=''></a></div>
</div>
</div>
<div class='field field-name-body field-type-text-with-summary field-label-hidden'>
<div class='field-items'>
<div class='field-item even'>
<p>Based on the latest Google Glass ad you can see below.</p>
</p></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry will be automatically closed on April 17, 2013.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/what_google_glass_will_really_feel/">What Google Glass will really feel like?</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Forbidden fruit</title>
		<link>https://creativebits.org/off-topic/forbidden_fruit/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Wed, 19 Sep 2012 20:27:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/forbidden_fruit/</guid>

					<description><![CDATA[<p>Commenting on this Blog entry will be automatically closed on November 14, 2012.</p>
The post <a href="https://creativebits.org/off-topic/forbidden_fruit/">Forbidden fruit</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-field-titleimage field-type-image field-label-hidden'>
<div class='field-items'>
<div class='field-item even'><a href='https://creativebits.org/sites/default/files/mac-joke.jpg'><img src='https://creativebits.org/sites/default/files/mac-joke.jpg' width='848' height='872' alt=''></a></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry will be automatically closed on November 14, 2012.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/forbidden_fruit/">Forbidden fruit</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Samsung&#8217;s visionary leader: Stefan Jobes</title>
		<link>https://creativebits.org/off-topic/samsungs_visionary_leader_stefan_jobes/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Wed, 08 Aug 2012 15:38:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/samsungs_visionary_leader_stefan_jobes/</guid>

					<description><![CDATA[<p>Samsung Calls BS On Apple&#8217;s Charges Of Copying on Conan O&#8217;Brien&#8217;s show. Commenting on this Blog entry will be automatically closed on October 3, 2012.</p>
The post <a href="https://creativebits.org/off-topic/samsungs_visionary_leader_stefan_jobes/">Samsung’s visionary leader: Stefan Jobes</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-field-titleimage field-type-image field-label-hidden'>
<div class='field-items'>
<div class='field-item even'><a href='https://creativebits.org/sites/default/files/stefan.jpg'><img src='https://creativebits.org/sites/default/files/stefan.jpg' width='631' height='353' alt=''></a></div>
</div>
</div>
<div class='field field-name-body field-type-text-with-summary field-label-hidden'>
<div class='field-items'>
<div class='field-item even'>
<p>Samsung Calls BS On Apple&#8217;s Charges Of Copying on Conan O&#8217;Brien&#8217;s show. </p>
<p> <!--break--><iframe width='480' height='326' src='http://teamcoco.com/embed/v/38801' frameborder='0' allowfullscreen=''></iframe></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry will be automatically closed on October 3, 2012.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/samsungs_visionary_leader_stefan_jobes/">Samsung’s visionary leader: Stefan Jobes</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Gates VS Jobs game</title>
		<link>https://creativebits.org/off-topic/gates_vs_jobs_game/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Sun, 20 Jul 2008 23:22:07 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/?p=2918</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://creativebits.org/files/billvsgates.jpg" alt="bill vs gates" /></p>The post <a href="https://creativebits.org/off-topic/gates_vs_jobs_game/">Gates VS Jobs game</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Genographic Project</title>
		<link>https://creativebits.org/off-topic/the_genographic_project/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Thu, 18 Aug 2005 15:32:03 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/?p=2921</guid>

					<description><![CDATA[<p>I&#8217;d like to point your attention to an amazing project that requires public participation of people from around the world. The genographic project organized by National Geographic and powered by IBM has a noble objective. They want to collect and analyze DNA from thousands from all parts of the world. This data will help understand [...]</p>
The post <a href="https://creativebits.org/off-topic/the_genographic_project/">The Genographic Project</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="aligncenter" src="https://creativebits.org/files/genographic_project.jpg" alt="genographic project" /></p>
<p>I&#8217;d like to point your attention to an amazing project that requires public participation of people from around the world.</p>
<p>The genographic project organized by National Geographic and powered by IBM has a noble objective. They want to collect and analyze DNA from thousands from all parts of the world. This data will help understand where we come from and possibly where we are going. It will explain why are we so different and so much the same at the same time and many other things that are beyond my understanding. It&#8217;s a five year project and it has been running successfully for some time. Read more about it here.</p>
<p>The cool part of the project is that you can participate in the project by buying a kit and sending in your own DNA sample and in return they will give you quite specific information about your origins.</p>The post <a href="https://creativebits.org/off-topic/the_genographic_project/">The Genographic Project</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Humor is your savior</title>
		<link>https://creativebits.org/off-topic/humor_is_your_savior/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Thu, 14 Oct 2004 01:06:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/humor_is_your_savior/</guid>

					<description><![CDATA[<p>Sometimes our job in advertising and design is really tough. Apparently advertising is the second most stressful profession, right after stock broker. On top of that there is a strong culture for poking each other. Creative poke client servicing, client servicing pokes creative. Clients poke everybody. Let&#8217;s take a look at the bright side. If [...]</p>
The post <a href="https://creativebits.org/off-topic/humor_is_your_savior/">Humor is your savior</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-body field-type-text-with-summary field-label-hidden'>
<div class='field-items'>
<div class='field-item even'>
<p><img src='https://creativebits.org/files/images/clientcopia.jpg' align='right' alt='clientocopia'>Sometimes our job in advertising and design is really tough. Apparently advertising is the second most stressful profession, right after stock broker. On top of that there is a strong culture for poking each other. Creative poke client servicing, client servicing pokes creative. Clients poke everybody. Let&#8217;s take a look at the bright side. If you have the &#8216;right&#8217; attitude this job can be fun.</p>
<p><a href='http://clientcopia.com/' target='blank' title='Click to visit Clientcopia' rel="nofollow noopener noreferrer">Clientcopia</a> was created to give you an escape. Take joy in knowing you are not alone. It&#8217;s about stupid client quotes, like several years back I got a brief with this jewel: Target group: People. Wow! That&#8217;s a surprise. <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>Thanks Cartmn101 for the link.</p>
</p></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry is closed.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/humor_is_your_savior/">Humor is your savior</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Cool stock market game for the weekend</title>
		<link>https://creativebits.org/off-topic/cool_stock_market_game_for_the_weekend/</link>
		
		<dc:creator><![CDATA[Creative Bits Team]]></dc:creator>
		<pubDate>Sun, 10 Oct 2004 16:29:00 +0000</pubDate>
				<category><![CDATA[Off topic]]></category>
		<guid isPermaLink="false">https://www.localartistprojects.com/uncategorized/cool_stock_market_game_for_the_weekend/</guid>

					<description><![CDATA[<p>BlogShares is a simulated, fantasy stock market for weblogs where players invest fictional money to buy stocks and bonds in an artificial economy where attention is the commodity and weblogs are the companies. Weblogs, or blogs for short, are valued by their incoming links from other known blogs. In effect, links become the business deals [...]</p>
The post <a href="https://creativebits.org/off-topic/cool_stock_market_game_for_the_weekend/">Cool stock market game for the weekend</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></description>
										<content:encoded><![CDATA[<div class='content'>
<div class='field field-name-body field-type-text-with-summary field-label-hidden'>
<div class='field-items'>
<div class='field-item even'>
<p><img src='https://creativebits.org/files/images/blogshares_graph.gif' align='right' title='CreativeBits share price history' alt='Growing stock price of CreativeBits'><a href='http://blogshares.com/blogs.php?blog=http%3A%2F%2Firaszl.brinkster.net%2Fcreativebits%2F' title='Invest in CreativeBits virtually' rel='nofollow'>BlogShares</a> is a simulated, fantasy stock market for weblogs where players invest fictional money to buy stocks and bonds in an artificial economy where attention is the commodity and weblogs are the companies. Weblogs, or blogs for short, are valued by their incoming links from other known blogs. In effect, links become the business deals in the simulation and players speculate on the fortunes of thousands of blogs by buying and selling shares.</p>
<p>Anyone can play BlogShares for free, and ownership of a blog is not a requirement to participate. You need simply to register to receive a virtual $500 to start investing. Blog owners also receive 1000 shares of stock in their blog.</p>
</p></div>
</div>
</div>
<p class='comment-closer-notice'>Commenting on this Blog entry is closed.</p>
</p></div>The post <a href="https://creativebits.org/off-topic/cool_stock_market_game_for_the_weekend/">Cool stock market game for the weekend</a> first appeared on <a href="https://creativebits.org">Creative Bits</a>.]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
