<?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>Wildbit &#187; Newsberry</title>
	<atom:link href="http://wildbit.com/blog/category/newsberry/feed/" rel="self" type="application/rss+xml" />
	<link>http://wildbit.com/blog</link>
	<description>Thoughts on building web apps, businesses, and virtual teams</description>
	<lastBuildDate>Tue, 01 Jun 2010 17:34:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Learning a new codebase</title>
		<link>http://wildbit.com/blog/2009/07/30/learning-a-new-codebase/</link>
		<comments>http://wildbit.com/blog/2009/07/30/learning-a-new-codebase/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 16:05:41 +0000</pubDate>
		<dc:creator>Hristo Deshev</dc:creator>
				<category><![CDATA[Continuos Integration]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Newsberry]]></category>

		<guid isPermaLink="false">http://wildbit.com/blog/?p=638</guid>
		<description><![CDATA[Hi! My name is Hristo Deshev, and I am the new kid on the block here at Wildbit. Well, "kid" is a gross exaggeration with me being almost 30, but I sometimes like to think of myself as just a kid - the only difference from me being 10 is that I have different toys now. :-)

I am a programming language, development tool, and platform junkie with many interests, but at the moment I am serving as a .NET developer for Newsberry. Newsberry is an old project with a huge codebase. And guess what? I have to learn it. I've been doing that for some time now, and I daresay I have been making good progress. Here I'd like to share some tips and techniques both on the technological and philosophical level that have proven themselves useful.]]></description>
			<content:encoded><![CDATA[<p>Hi! My name is Hristo Deshev, and I am the new kid on the block here at Wildbit. Well, &#8220;kid&#8221; is a gross exaggeration with me being almost 30, but I sometimes like to think of myself as just a kid &#8211; the only difference from me being 10 is that I have different toys now. :-)</p>
<p>I am a programming language, development tool, and platform junkie with many interests, but at the moment I am serving as a .NET developer for <a href="http://www.newsberry.com/">Newsberry</a>. Newsberry is an old project with a huge codebase. And guess what? I have to learn it. I&#8217;ve been doing that for some time now, and I daresay I have been making good progress. Here I&#8217;d like to share some tips and techniques both on the technological and philosophical level that have proven themselves useful.</p>
<h3>Keep your thoughts organized and don&#8217;t forget the big picture</h3>
<p>I know many people just get the source code, compile it and start running it in the debugger, trying to get an idea about what is going on. This may be a good strategy for smaller projects and one-off scripts that you find on the web, but it does not scale well. At best, you will achieve good knowledge about a part of the system (the portion of code you have read through), while you will have no idea about the rest. Don&#8217;t forget that there is a good chance that you don&#8217;t understand anything as the code can only answer the &#8220;How is this application built?&#8221; question. You will not get the &#8220;Why&#8221; part, and that is often crucial in order to understand the &#8220;How&#8221; bit.</p>
<p>My first steps were to get an account over at <a href="http://www.newsberry.com/">http://www.newsberry.com/</a> and start playing with the system. I had to first learn how it works as a user, so that I know what problems it solves. Once I felt confident I knew it at a reasonable level, I got to the source code part. I had to learn a lot about the problem domain &#8211; I was an email marketing newbie, and the body of knowledge on the subject is huge.</p>
<p>After you know enough about the business domain, you can start playing with the source code. To me the most important part in a system is its deployment story. You have to know the various components in the system: what are the jobs they perform, how they interact, etc. Newsberry is pretty complex: it has several web sites, Windows services, mail servers, and a couple of custom tools. Getting to know those components is essential. Exploring their interactions will quickly expose holes in your understanding of the business domain, and you have the duty and the opportunity to fill them. There are two tools that helped me here:</p>
<h3><a href="http://en.wikipedia.org/wiki/Mind_map">Mind mapping</a></h3>
<p>I have been using mind maps for years, and I am used to drawing them on paper or with a computer program. They are a great tool to organize your thoughts when learning something. My guess is that they boost your understanding by stimulating the creative parts of your brain. They trigger that by making you produce something instead of passively reading up on a subject. Anyway my theory really doesn&#8217;t matter &#8211; all I care is that mind maps work for me, and I recommend everyone try them too. So, how do I use mind maps when learning Newsberry? Using my favorite mapping program, <a href="http://freemind.sourceforge.net/">Freemind</a>, I started creating maps for the email marketing process, Newsberry system deployment, data flow throughout the system such as email generation and transformation. As an example, here is a screenshot of my deployment map:</p>
<p><img title="N2 Deployment" src="http://wildbit.com/blog/wp-content/uploads/2009/07/N2_Deployment.png" alt="N2 Deployment" width="500" height="284" /></p>
<p>You can use maps to store all kinds of information: from the high-level overviews down to the nitty-gritty. Again, the most important thing is not the map itself, but the process of creating the map. Try it &#8211; It works!</p>
<h3>Virtualization</h3>
<p>Now that you are pretty comfortable with the deployment architecture, you want to get your hands dirty. Of course, you can&#8217;t do that on the production server. You can&#8217;t do it on the staging server too &#8211; I didn&#8217;t want to do something stupid and kill the staging environment or destroy the <a href="http://en.wikipedia.org/wiki/Continuous_integration">CI</a> process just because I don&#8217;t know the system yet. You can&#8217;t really test on your machine either, because&#8230; well because you have to be able to deploy your program everywhere and it is too easy to hardcode settings that work on your machine only. That is why, apart from running the system on my development machine, I decided to recreate the production environment in a virtual machine. My virtualization solution of choice is <a href="http://www.virtualbox.org/">VirtualBox</a>. It is fast, easy to use and offers tons of advanced features too. I quickly got a Windows 2003 server OS installed on a VM, and started playing. I configured my virtual network cards with the same IP addresses that the server had. I edited my <a href="http://en.wikipedia.org/wiki/Hosts_file">hosts file</a> to redirect domains to the local machine. I installed SQL Server and imported a test DB full of usable data. I got an SMTP server running that was able to deliver mail to several fake domains. I could then fetch that mail using POP3 and inspect it for errors or write automated tests. I even went ahead and duplicated the <a href="http://ccnet.thoughtworks.com/">CruiseControl.NET</a> setup so that I could test CI builds as if they were running on the real build machine.This looks like a lot of work, and it really is. I am glad I did it because it helped me learn how the system operates. I went through the horrors of administering an SMTP server, configuring IIS, fighting SQL Server, and, at the end, I came out stronger. I really recommend using virtualization to safely play with a new, unknown system. One VirtualBox tip: use the snapshots feature as often as possible. If you manage to destroy your system, just revert to the previous snapshot, and you&#8217;ll be running again in seconds.</p>
<h3>Use code exploration tools</h3>
<p>One word here: <a href="http://www.jetbrains.com/resharper/">Resharper</a>. Many think it is a refactoring tool, but it is really much more. Load all your code in a Visual Studio solution, and start poking around. I use Resharper&#8217;s &#8220;Find Usages&#8221; feature to find who calls a given method, what code uses a property or sets a new value. The tool is indispensable.</p>
<p>Another tool that deserves mention here is <a href="http://www.red-gate.com/products/reflector/">Reflector</a>. It does not work with source, but decompiles assemblies instead. It has great code analysis features, and you can quickly understand how a method is used, who instantiates a given class, etc. Not needing the source code makes Reflector the perfect detective tool that allows you to unobtrusively poke even at your production code.</p>
<h3>The ultimate method</h3>
<p>Well really there is no such thing as the one and only codebase learning technique. You can&#8217;t use purely a technical approach or a purely theoretical one. Creating software is a complex collaborative process, and you can&#8217;t understand how a large system works using only of the two approaches.</p>
<p>I am sure there are a lot of useful techniques one can use to learn a new codebase quickly that I have not covered here. What are your tools and methods of choice? Share them in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/07/30/learning-a-new-codebase/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Speeding up manual testing with Selenium IDE</title>
		<link>http://wildbit.com/blog/2009/07/07/speeding-up-manual-testing-with-selenium-ide/</link>
		<comments>http://wildbit.com/blog/2009/07/07/speeding-up-manual-testing-with-selenium-ide/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 09:08:14 +0000</pubDate>
		<dc:creator>Igor Balos</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Quality Assurance]]></category>
		<category><![CDATA[Web/Tech]]></category>
		<category><![CDATA[qa]]></category>
		<category><![CDATA[selenium]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://wildbit.com/blog/?p=561</guid>
		<description><![CDATA[In the quality assurrance field, the main goal is to ensure the quality and reliability of the product. Manual testing is the most common way of testing and it consumes a lot of time. However, there are techinques to shorten the time needed for manual testing by automating time-consuming tasks.]]></description>
			<content:encoded><![CDATA[<p>In the <a href="http://http://en.wikipedia.org/wiki/Quality_assurance">quality assurrance</a> field, the main goal is to ensure the quality and reliability of the product. Manual testing is the most common way of testing and it consumes a lot of time. However, there are techinques to shorten time needed for <a href="http://en.wikipedia.org/wiki/Manual_testing">manual testing</a> by automating time-consuming tasks.<br />
<span id="more-561"></span></p>
<h3>Selenium IDE</h3>
<p>There are many different ways to automate tasks and <a href="http://seleniumhq.org/projects/ide/">Selenium IDE</a> is just one of them. Selenium IDE has been around now for some time. It&#8217;s a small add-on for firefox which allows you to run and record tests for your web application. The reason I use Selenium IDE is because you can use it without almost any interference in your process of manual testing. Selenium IDE is lightweight and very easy to use and it&#8217;s constantly improved.</p>
<p>When I do <a href="http://en.wikipedia.org/wiki/Manual_testing">manual testing</a>, I cover the areas that I wante to test, and as I go, I turn on Selenium IDE and record tasks. I try to record scenarios that I will use later in other tests. These small Selenium IDE test cases are recorded so I will not waste time on common tasks, which would be repeated numerous times. Automating small tasks can speed up testing tremendously. This way you would spend time on reviewing parts of the application which are important, rather than spending time on common, everyday tasks.</p>
<p>Here is a simple scenario of my usual review of new functionality on our <a href="http://newsberry.com/">Newsberry</a> project: Recently we released <a href="http://newsberry.com/pricing">monthly plans</a>, which required a lot of sign up testing. During testing of the sign up process, I recorded some scripts in Selenium IDE (simple html scripts), for signing up users, adding senders and activating them. This is the usual process you would use when you are creating a new account. Now, these scripts were used a lot during the review of <a href="http://newsberry.com/pricing">monthly plans</a>, but they were used a lot later during other reviews too. By recording small tasks, you can simply re-run them later, and not worry about doing the same process manually over and over again.</p>
<p><img title="Selenium IDE Plugin for Firefox" src="http://wildbit.com/uploads/2009/07/selenium.jpg" alt="Selenium IDE Plugin for Firefox" /></p>
<p>The beauty of the process is that it takes only couple of minutes to do this. These are not complicated test cases, test suites, no, these are <strong>very simple scripts, which everyone can run</strong>. You can simply send them over to developers, designers, and they can use it the same way you did, as long as they have firefox installed on their computers.</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/07/07/speeding-up-manual-testing-with-selenium-ide/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why we changed the navigation on Newsberry</title>
		<link>http://wildbit.com/blog/2009/05/13/why-we-changed-the-navigation-on-newsberry/</link>
		<comments>http://wildbit.com/blog/2009/05/13/why-we-changed-the-navigation-on-newsberry/#comments</comments>
		<pubDate>Wed, 13 May 2009 21:16:39 +0000</pubDate>
		<dc:creator>Gilbert Guttmann</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Usability & Design]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=360</guid>
		<description><![CDATA[The new Newsberry has been online for quite some time, and you might have noticed that some things are different. We mostly applied the new look of the public site to the application, but one thing needed a serious overhaul&#8230;

The Navigation
We have to admit that the navigation was not entirely easy to understand on the [...]]]></description>
			<content:encoded><![CDATA[<p>The new Newsberry has been online for quite some time, and you might have noticed that some things are different. We mostly applied the new look of the public site to the application, but one thing needed a serious overhaul&#8230;</p>
<p><span id="more-360"></span></p>
<h3>The Navigation</h3>
<p>We have to admit that the navigation was not entirely easy to understand on the previous version. The biggest problem was that the hierarchy of the different navigation elements was torn appart. The new version does a much better job at grouping all the actions and presenting them with much better visual weight.</p>
<p>Have a look at the Subscribers page for example. I&#8217;ve marked the different navigation levels with numbers, with 1 being the the highest level and 4 being the lowest. As you can see, the new design even got rid of the fourth level, making it much easier for navigating through the application. At the same time, your eye does not need to jump from left to right/right to left when you move between the main areas (Dashboard, Lists and Templates).</p>
<p><img src="http://www.wildbit.com/uploads/2009/05/comparison.png" alt="Comparison" /></p>
<h3>Yes, we removed the left sidebar</h3>
<p>Some customers might be a bit confused that we removed the left sidebar. But we did this in favor of consistency. For instance, a Camapaign was created within the Campaigns section of the application. Lists and Templates were created via the sidebar. Sounds wrong, doesn&#8217;t it?</p>
<h4>Now, we basically had two options:</h4>
<ul>
<li>Add a &#8220;Create Campaign&#8221; button to the sidebar</li>
<li>Remove the sidebar and add &#8220;Create List&#8221; and &#8220;Create Template&#8221; buttons, just like the &#8220;Create Campaign&#8221; button</li>
</ul>
<p>As you probably noticed, option two won. Removing the sidebar really helped to clean up the overall design, which results in less confusion for the viewer.</p>
<p>We really hope that these changes help to speed up your interaction with Newsberry and make the overall experience more fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/05/13/why-we-changed-the-navigation-on-newsberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fresh, new look for Newsberry</title>
		<link>http://wildbit.com/blog/2009/04/28/fresh-new-look-for-newsberry/</link>
		<comments>http://wildbit.com/blog/2009/04/28/fresh-new-look-for-newsberry/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 10:41:45 +0000</pubDate>
		<dc:creator>Natalie Nagele</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Web/Tech]]></category>
		<category><![CDATA[Wildbit Projects]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=356</guid>
		<description><![CDATA[You may have already noticed that we redesigned Newsberry public to give it a fresh, clean new look. It&#8217;s Step Two of the effort we talked about earlier to update the application with not only new features, but also a clean-up of what&#8217;s there.

So, what&#8217;s different?
We have been thinking about a way to keep the [...]]]></description>
			<content:encoded><![CDATA[<p>You may have already noticed that we redesigned Newsberry public to give it a fresh, clean new look. It&#8217;s Step Two of the effort we talked about <a href="http://www.wildbit.com/blog/2009/03/25/a-closer-look-at-newsberrys-new-public-site/">earlier</a> to update the application with not only new features, but also a clean-up of what&#8217;s there.</p>
<p><span id="more-356"></span></p>
<h3>So, what&#8217;s different?</h3>
<p>We have been thinking about a way to keep the old functionality intact, but adding a new fresh look to it. Thanks to our designer <a href="http://www.wildbit.com/blog/2009/03/25/a-closer-look-at-newsberrys-new-public-site/">Gilbert</a>, Newsberry got a completely new face. If you have been using <a href="http://www.newsberry.com">Newsberry</a> before and you liked it, we’re sure you will love it now!</p>
<h4>What have we done?</h4>
<ul>
<li>Moved Subscriber Lists to their own section at the top to make them more easily accessible.</li>
<li>We&#8217;ve moved the tabs for Account and Help to the top so they are always visible.</li>
<li>Moved our <a href="http://help.newsberry.com" target="_blank">Help System</a> to an outside application called <a href="http://tenderapp.com/">Tender</a>. This will allow our customers to post questions, comments and feedback as well as post private issues for our customer service.</li>
</ul>
<p>These are only small changes which you would notice when you first log into your Newsberry account, but it does not stop here. During the makeover, we have completely redesigned navigation, buttons, tabs, modalboxes and much more.</p>
<p>For example, take a look at the redesigned &#8220;Create a Campaign&#8221; page:</p>
<p><img src="http://wildbit.com/uploads/2009/04/new-look.jpg" alt="Create a Campaign" /></p>
<p>Want to see for yourself? <a href="https://app.newsberry.com/signin.aspx">Login to your account</a> or <a href="https://app.newsberry.com/signup.aspx">signup</a> now!<br />
 <br />
The adventures of Newsberry do not end here. We have a lot more cool stuff planned for 2009. Stay tuned and follow us on <a href="http://twitter.com/newsberry">Twitter</a> to get the latest updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/04/28/fresh-new-look-for-newsberry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A closer look at Newsberry&#8217;s new public site</title>
		<link>http://wildbit.com/blog/2009/03/25/a-closer-look-at-newsberrys-new-public-site/</link>
		<comments>http://wildbit.com/blog/2009/03/25/a-closer-look-at-newsberrys-new-public-site/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 18:14:57 +0000</pubDate>
		<dc:creator>Gilbert Guttmann</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=351</guid>
		<description><![CDATA[It was about time that we finally redesigned the public site of our Email Marketing application, Newsberry. I&#8217;m very proud that I had the chance to do this &#8211; I kind of lurked on this task since I started working at Wildbit.

Besides the fact that we are very happy that this happened, I want to [...]]]></description>
			<content:encoded><![CDATA[<p>It was about time that we finally redesigned the public site of our Email Marketing application, <a href="http://newsberry.com">Newsberry</a>. I&#8217;m very proud that I had the chance to do this &#8211; I kind of lurked on this task since I started working at Wildbit.</p>
<p><span id="more-351"></span></p>
<p>Besides the fact that we are very happy that this happened, I want to talk about the use of icons on the site today. Long story short, for myself icons have two big roles when it comes to design:</p>
<ul>
<li>Explain certain actions visually, so they are more clear to the user</li>
<li>Support the visual design</li>
</ul>
<p>In general, icons can contribute to your overall design the same way a typeface, a color or an image &#8211; they don&#8217;t have a minor role in the visual hierarchy. I stumbled upon a lot of websites which make use of free or stock icons. I don&#8217;t want to convict the use of them, but in my eyes custom made icons really help to make your design stand out from the crowd. </p>
<p><img src="http://www.wildbit.com/uploads/2009/03/newsberry-icons.png" alt="Newsberry Icons" /></p>
<p>That said, it was a no-go for me to use free or stock icons anywhere on Newsberry. Even if they don&#8217;t match the taste of the shiny-icon crowd, I put a lot of love in these little bunch of pixels. Come on guys, it&#8217;s easier than you think &#8211; inspiration and help is everywhere.</p>
<p>So, I hope you enjoy the new look of the site. What? You ask if the new public site is the last stop on the road? No Sir, there are more adventures ahead of us:</p>
<p><img src="http://www.wildbit.com/uploads/2009/03/newsberry-app-preview.jpg" alt="Newsberry Application Preview" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/03/25/a-closer-look-at-newsberrys-new-public-site/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Newsberry Redesign Sneak Peek</title>
		<link>http://wildbit.com/blog/2009/03/20/newsberry-redesign-sneak-peek/</link>
		<comments>http://wildbit.com/blog/2009/03/20/newsberry-redesign-sneak-peek/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 16:50:12 +0000</pubDate>
		<dc:creator>Natalie Nagele</dc:creator>
				<category><![CDATA[Newsberry]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=349</guid>
		<description><![CDATA[A new look for <a href="http://newsberry.com">Newsberry's</a> public site is coming next week, along with some exciting new features. Here is a sneak peek, so be sure to check out the site next week and follow us on <a href="http://twitter.com/newsberry">Twitter</a> for the announcement.

<img src="http://www.wildbit.com/wp-content/uploads/2009/03/newsberry-3.png" />]]></description>
			<content:encoded><![CDATA[<p>A new look for <a href="http://newsberry.com">Newsberry&#8217;s</a> public site is coming next week, along with some exciting new features. Here is a sneak peek, so be sure to check out the site next week and follow us on <a href="http://twitter.com/newsberry">Twitter</a> for the announcement.</p>
<p><img src="http://www.wildbit.com/uploads/2009/03/newsberry-3.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/03/20/newsberry-redesign-sneak-peek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newsberry: Target subscribers based on behavior</title>
		<link>http://wildbit.com/blog/2009/03/17/creating-sublists-more-flexible-than-ever/</link>
		<comments>http://wildbit.com/blog/2009/03/17/creating-sublists-more-flexible-than-ever/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 18:52:26 +0000</pubDate>
		<dc:creator>Natalie Nagele</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Sublist]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=331</guid>
		<description><![CDATA[We have released a great new update related to sub-lists feature for Newsberry, which will allow you to control even more efficiently than before to whom you would like to send the email campaigns. From now on, you would be able to create sub-list of all opened, unopened, bounced emails (even by type of bounce) and sub-list of email addresses of subscribers which clicked a link in the campaigns they received.]]></description>
			<content:encoded><![CDATA[<p>You may not recognize me, but you will be seeing a lot more of me in the coming months. I recently joined Wildbit to help with <a href="http://newsberry.com">Newsberry</a> as the service continues to grow. I&#8217;ll be responsible for customer service, improving your delivery, and giving the product the close attention it needs.</p>
<p>We just released an exciting new tool in Newsberry, <a href="http://help.newsberry.com/entry/30">behavioral targeting</a>. Now you can target and segment subscribers based on who opened emails, clicked links, and which emails bounced. This new tool will help you maximize response and create follow up emails based on subscriber behavior.</p>
<p><span id="more-331"></span></p>
<p>Here are some basic ways you can use this new tool:</p>
<ul>
<li>Send an email to all subscribers who clicked on a specific link.</li>
<li>Send a follow up email to only those people who opened your email.</li>
<li>Send an email to anyone who clicked a link or opened your email in the past five campaigns.</li>
</ul>
<p>Read more about this new feature in the <a href="http://help.newsberry.com/entry/30">help system</a>.</p>
<p><img src="http://www.wildbit.com/uploads/2009/03/links.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2009/03/17/creating-sublists-more-flexible-than-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highrise integration in Newsberry</title>
		<link>http://wildbit.com/blog/2008/12/10/highrise-integration/</link>
		<comments>http://wildbit.com/blog/2008/12/10/highrise-integration/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 16:29:08 +0000</pubDate>
		<dc:creator>Igor Balos</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Highrise]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=311</guid>
		<description><![CDATA[We released a great new feature for <a href="http://newsberry.com/">Newsberry</a>: <a href="http://highrisehq.com">Highrise</a> integration.

<a href="http://www.highrisehq.com/">Highrise</a> is an online contact manager and address book, which keeps contact info centralized, sharable, and safe online. By integrating with <a href="http://newsberry.com/">Newsberry</a>, you can synchronize contacts between Newsberry and <a href="http://www.highrisehq.com/">Highrise</a>. This is the first integration tool for <a href="http://newsberry.com/">Newsberry</a> and we plan to release more in the near future.]]></description>
			<content:encoded><![CDATA[<p>We released a great new feature for <a href="http://newsberry.com/">Newsberry</a>: <a href="http://highrisehq.com">Highrise</a> integration.</p>
<p><a href="http://www.highrisehq.com/">Highrise</a> is an online contact manager and address book, which keeps contact info centralized, sharable, and safe online. By integrating with <a href="http://newsberry.com/">Newsberry</a>, you can synchronize contacts between Newsberry and <a href="http://www.highrisehq.com/">Highrise</a>. This is the first integration tool for <a href="http://newsberry.com/">Newsberry</a> and we plan to release more in the near future.</p>
<p><span id="more-311"></span></p>
<h3>How does it work?</h3>
<p>By integrating with Highrise, we offer:</p>
<ul>
<li>Automatic updates of name, email, and phone number in Highrise to your Newsberry list</li>
<li>Posting a note in each Highrise contact when a campaign is sent.</li>
</ul>
<p>In <a href="http://newsberry.com/">Newsberry</a> we provide two ways of importing subscribers:</p>
<ul>
<li>Importing contacts from csv and excel files</li>
<li>Manual import</li>
</ul>
<p>Now, if you have a <a href="http://www.highrisehq.com/">Highrise</a> account, you can import subscribers by integrating with Highrise. Not only can intergrate contacts, but you can do it for every list that you have in your <a href="http://newsberry.com">Newsberry</a> account. Every list can be integrated with a different Highrise account.</p>
<p>You don&#8217;t need to worry whether your contact list in <a href="http://newsberry.com/">Newsberry</a> contains all the contacts you have in your <a href="http://www.highrisehq.com/">Highrise</a> account. If you add, update or delete contacts in your Highrise account, you will notice the same changes in Newsberry. Newsberry will synchronize the contacts between Highrise and Newsberry for you automatically.</p>
<p>You can add contacts from different sources to your account (manually, by importing through csv, xls files or by Highrise integration), and all of them will coexist in your list.</p>
<h3>Keep a record of it</h3>
<p>One more cool feature about Highrise integration is that we post a note to your Highrise contacts whenever you send a campaign.</p>
<p><img src="http://www.wildbit.com/uploads/2008/12/highrise-1.jpg" alt="" /></p>
<h3>Give it a try!</h3>
<p>The feature is available for Free and Paid Newsberry accounts. To give a test run, sign up for a <a href="http://newsberry.com/">Newsberry</a> account. To learn more, read the  <a href="https://newsberry.tenderapp.com/faqs/subscribers/how-do-i-setup-highrise-integration-3">Highrise integration</a> article in Newsberry&#8217;s help section.<br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/12/10/highrise-integration/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Retreat Results</title>
		<link>http://wildbit.com/blog/2008/10/15/retreat-results/</link>
		<comments>http://wildbit.com/blog/2008/10/15/retreat-results/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 14:00:54 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[About Us]]></category>
		<category><![CDATA[Beanstalk]]></category>
		<category><![CDATA[Business Strategy]]></category>
		<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[team]]></category>
		<category><![CDATA[turkey]]></category>
		<category><![CDATA[wildbit retreat]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=256</guid>
		<description><![CDATA[To say the least, the Wildbit retreat was amazing. It was an all around good time and we discussed strategy, goals, and had plenty of knowledge sharing. We'd like to be as open as possible about our goals and plans. With that in mind, here are some things we are focusing on in the next 6 - 12 months.]]></description>
			<content:encoded><![CDATA[<p>To say the least, the Wildbit retreat was amazing. It was an all around good time and we discussed strategy, goals, and had plenty of knowledge sharing. </p>
<p><a href="http://flickr.com/photos/fedorenko/sets/72157607765151624/"><img src="http://www.wildbit.com/wp-content/uploads/2008/10/2938163139_b1a931fb87.jpg" alt="" title="Turkey" width="300" /></a></p>
<p>We&#8217;d like to be as open as possible about our goals and plans. With that in mind, here are some things we are focusing on in the next 6 &#8211; 12 months.</p>
<p><span id="more-256"></span></p>
<ul>
<li>Increase the number of blog posts about our thoughts, successes, and failures.</li>
<li>As our products grow, begin to transfer most of our attention to products and a portion to client work.</li>
<li>Improve test coverage in our applications, starting with better regression tests.</li>
<li>Create a more unified message and brand to our customers between Wildbit and our products. </li>
<li>Start working on our next product, hush hush for now.</li>
</ul>
<p>Of course, we have many great features and plans for Beanstalk and Newsberry. We&#8217;ll post more about them as we get close to a release. Make sure to <a href="http://twitter.com/wildbit">follow us on Twitter</a>, we&#8217;ll be posting much more.</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/10/15/retreat-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Newsberry: SenderScore and New Features</title>
		<link>http://wildbit.com/blog/2008/10/08/newsberry-senderscore-and-new-features/</link>
		<comments>http://wildbit.com/blog/2008/10/08/newsberry-senderscore-and-new-features/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 09:52:51 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[SenderScore]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=255</guid>
		<description><![CDATA[We've made some great updates to <a href="http://newsberry.com">Newsberry</a> recently, including our partnership with SenderScore, new subscriber forms that allow complete customization of fields and forms, and the ability to add users and set permissions for the account and lists. ]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve made some great updates to <a href="http://newsberry.com">Newsberry</a> recently, including our partnership with SenderScore to improve deliverability, new subscriber forms that allow complete customization of fields and forms, and the ability to add users and set permissions for the account and lists. <span id="more-255"></span></p>
<h3>Get SenderScore Certified!</h3>
<p>In addition to some great new features, we&#8217;re also happy to announce our recent partnership with <a href="http://www.returnpath.net/senderscore/sender/accreditation/">SenderScore</a>. What does this mean for you? Well, it means that your campaigns are now monitored across the the largest email network in the industry, providing <strong>improved delivery to get your emails to the inbox</strong>.</p>
<p>You can get certified too. Now that we are a partner, we can get your company certified as well to ensure the best delivery. For a limited time, <strong>we are offering a free demo</strong> of the tool set to <em>10 customers only</em>. Email <a href="mailto:support@newsberry.com">support@newsberry.com</a> to get involved.</p>
<h3>Add users and set permissions<br /></h3>
<p>In <a href="http://newsberry.com">Newsberry</a>, you can now create multiple users for each account and apply specific permissions. Permissions can be set per list according to responsibility. For instance, you can give someone permission to only view reports in one list, but create and send campaigns in another.</p>
<p>To learn about user permissions, <a href="http://help.newsberry.com/entry/22">read the help article</a>.</p>
<p><img src="http://app.newsberry.com/images/56/n2-permissions.gif"/></p>
<h3>Improved subscribe forms<br /></h3>
<p>We&#8217;ve released a major upgrade to subscribe forms and fields. You now have full control of the subscribe forms that you can insert into your site or send to your subscribers. This includes creating drop-downs, checklists, and showing/hiding fields from the public. You may notice our API is available as well. Stay tuned for more information.</p>
<p><a href="http://help.newsberry.com/entry/11">Learn all about the new subscribe forms</a> in our help section.</p>
<p><img src="http://app.newsberry.com/images/56/n2-forms.gif"/></p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/10/08/newsberry-senderscore-and-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turkey, We&#8217;re Here!</title>
		<link>http://wildbit.com/blog/2008/10/05/turkey-were-here/</link>
		<comments>http://wildbit.com/blog/2008/10/05/turkey-were-here/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 21:35:50 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[About Us]]></category>
		<category><![CDATA[Articles & Reports]]></category>
		<category><![CDATA[Beanstalk]]></category>
		<category><![CDATA[Business Strategy]]></category>
		<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=252</guid>
		<description><![CDATA[We arrived in Turkey on Friday night and so far it has been amazing. It's great to meet with a team of people who you work with each day, but hardly see in person. Some of us have never even met in person, although the first time meeting was as if we've always been friends. As Ilya put it, "It's really great to meet as a team, but even better to now realize we are a group of good friends from around the world."]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/groups/wildbit-retreat/pool/"><img src="http://www.wildbit.com/wp-content/uploads/2008/10/2916758212_616843c3d2_t.jpg" alt="" title="Turkey Spices" width="75" height="100" style="float:left; margin:.4em .5em .4em 0;" /></a>We arrived in Turkey on Friday night and so far it has been amazing. It&#8217;s great to meet with a team of people who you work with each day, but hardly see in person. Some of us have never even met in person, although the first time meeting was as if we&#8217;ve always been friends. As Ilya put it, &#8220;It&#8217;s really great to meet as a team, but even better to now realize we are a group of good friends from around the world.&#8221;</p>
<p><span id="more-252"></span></p>
<p><a href="https://wb.svn.beanstalkapp.com/retreats/turkey_agenda.html"><img src="http://www.wildbit.com/wp-content/uploads/2008/10/turkey-retreat-agenda.png" alt="" title="turkey-retreat-agenda" width="291" height="300" style="float:right; margin:.4em .5em .4em 0;" /></a>This weekend we finished up our agenda, which we&#8217;d like to share with everyone. We think it is important that our customers and clients know our plans, goals, and priorities. Have a look at the <a href="https://wb.svn.beanstalkapp.com/retreats/turkey_agenda.html">retreat agenda</a> on Beanstalk.</p>
<p>We&#8217;re already making progress on strategy and having a good time. A few embarrassing rounds of pool volleyball is always a good time. Turkey and the town of Gocek, where we are staying, is incredibly hospital and very beautiful. The town is located in the Mediterranean just at the base of some impressive mountains and cliffs.</p>
<p>If you&#8217;re interested, you can follow the <a href="http://flickr.com/groups/wildbit-retreat/">photos on our Flickr group</a> throughout the week. </p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/10/05/turkey-were-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Next Wildbit Retreat: Turkey</title>
		<link>http://wildbit.com/blog/2008/09/08/next-wildbit-retreat-turkey/</link>
		<comments>http://wildbit.com/blog/2008/09/08/next-wildbit-retreat-turkey/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 20:17:52 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[About Us]]></category>
		<category><![CDATA[Beanstalk]]></category>
		<category><![CDATA[Business Strategy]]></category>
		<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[retreat]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=244</guid>
		<description><![CDATA[We just recently finished up the details and itineraries for our next company retreat. Trying to choose a location, environment, and time for 10 people in 6 countries is not easy! While we also considered Croatia, Malta, Spain, and Greece we decided on Turkey's Mediterranean coast. The flights were the least expensive and it is pretty close to everyone. Not to mention getting a Visa is simple.]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.wildbit.com/wp-content/uploads/2008/09/turkey-beach.png'><img src="http://www.wildbit.com/wp-content/uploads/2008/09/turkey-beach.png" alt="" title="Turkey Mediterranean " width="150" height="112" style="float:left; margin:.4em .5em .4em 0;" /></a>We just recently finished up the details and itineraries for our next company retreat. Trying to choose a location, environment, and time for 10 people in 6 countries is not easy! While we also considered Croatia, Malta, Spain, and Greece we decided on <strong>Turkey&#8217;s Mediterranean coast in early October</strong>, when the weather is still warm but is the start of their low season.<br />
<span id="more-244"></span><br />
<img src="http://www.wildbit.com/wp-content/uploads/2008/09/picture-9.png" alt="" title="picture-9" width="300" height="218" style="float:right; margin:.4em .5em .4em 0;" /><br />
<h3>So, what&#8217;s on the agenda?</h3>
<p>The company retreat is all about strategy, learning, and relaxing. We&#8217;ve been working really hard on a bunch of projects over the past year, so we have a lot to cover. Here is a short list:</p>
<ul>
<li>Celebrate the past year&#8217;s success.</li>
<li>Plan and discuss Beanstalk goals.</li>
<li>Discuss process issues and room for improvement.</li>
<li>Set goals for Newsberry growth and plan the time line and tasks.</li>
<li>Smoke hookahs and eat well :)</li>
<li>Some short Rails training for the .NET guys and designers.</li>
<li>Take out a <a href="http://www.edenyachts.com/seastar2.htm">Gulet</a> for the day.</li>
</ul>
<p>We&#8217;re really looking forward to just hanging out and focusing on the next steps to improve Wildbit overall. With our products growing quickly, we&#8217;re starting to shift more toward product work, which requires a new shift in process, roles, and responsibilities. I&#8217;m confident the retreat will result in some really nice improvements for our customers and clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/09/08/next-wildbit-retreat-turkey/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome Gilbert and Petyo</title>
		<link>http://wildbit.com/blog/2008/09/05/welcome-gilbert-and-petyo/</link>
		<comments>http://wildbit.com/blog/2008/09/05/welcome-gilbert-and-petyo/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 20:09:16 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[About Us]]></category>
		<category><![CDATA[Beanstalk]]></category>
		<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[gilbert]]></category>
		<category><![CDATA[petyo]]></category>
		<category><![CDATA[weplaythis]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=241</guid>
		<description><![CDATA[We recently posted about open designer and developer positions at Wildbit. After a lot of reviews, discussions, and trials we have hire two new employees! Please welcome our latest designer, Gilbert, from Germany and our latest rails developer, Petyo, from Bulgaria.]]></description>
			<content:encoded><![CDATA[<p>We recently posted about open <a href="http://www.wildbit.com/blog/2008/07/03/were-hiring-developer-designer-client/">designer and developer positions</a> at Wildbit. After a lot of reviews, discussions, and trials we have hired two new members! Please welcome our latest designer, Gilbert, from Germany and our latest rails developer, Petyo, from Bulgaria.</p>
<p><span id="more-241"></span></p>
<h3>Gilbert Guttmann</h3>
<p><img src="http://www.wildbit.com/wp-content/uploads/2008/09/2817114_icon.jpg" alt="Gilbert Guttmann" title="Gilbert Guttmann" style="float:left; margin:.4em .5em .4em 0;" />Gilbert has been a customer on Beanstalk since almost the beginning. We talked many times in chat before we received his response to the design position. It&#8217;s a great thing to hire from within your community. Gilbert also created <a href="http://weplaythis.com">weplaythis.com</a>, a really cool site for people who love gaming. You see a lot to come from Gilbert in Newsberry, Beanstalk, and MeetPips.</p>
<h3>Petyo Ivanov</h3>
<p><img src="http://www.wildbit.com/wp-content/uploads/2008/09/2764720_icon.jpg" alt="Petyo Ivanov" title="Petyo Ivanov" style="float:left; margin:.4em .5em .4em 0;" />Petyo is our next addition to our rails development team. In the past, he has worked for some great companies, including <a href="http://telerik.com">Telerik</a>. So far Petyo has been doing great things on <a href="http://meetpips.com">MeetPips</a> (our latest client project) and a new video project that will be released very soon. He&#8217;ll also help with the growing demand on <a href="http://beanstalkapp.com">Beanstalk</a>.</p>
<p>Please welcome Gilbert and Petyo to the team. You can expect to see a lot of great things from them.</p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/09/05/welcome-gilbert-and-petyo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[Newsberry] Customize your subscribe forms</title>
		<link>http://wildbit.com/blog/2008/09/04/newsberry-customize-your-subscribe-forms/</link>
		<comments>http://wildbit.com/blog/2008/09/04/newsberry-customize-your-subscribe-forms/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 17:52:25 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[Wildbit Projects]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=240</guid>
		<description><![CDATA[This week we released a big improvement in <a href="http://newsberry.com">Newsberry</a> for customizing subscribe forms and fields in your list. With this new release, you can now fully customize your list and form fields, including:]]></description>
			<content:encoded><![CDATA[<p>This week we released a big improvement in <a href="http://newsberry.com">Newsberry</a> for customizing subscribe forms and fields in your list. With this new release, you can now fully customize your list and form fields, including:<br />
<span id="more-240"></span></p>
<ul>
<li>Adding drop-downs, check lists, and multiple option fields</li>
<li>Changing the order of fields in your subscribe form</li>
<li>Hide or show specific fields to your subscribers</li>
</ul>
<p>Learn more about the changes and <a href="http://help.newsberry.com/entry/11">full features in the Newsberry help section</a>.</p>
<p><strong>Here are some screen shots:</strong></p>
<p><img src="http://help.newsberry.com/Upload/help-n2-data-fields.png" alt="Data Fields" /></p>
<p><img src="http://help.newsberry.com/Upload/help-n2-dropdownfield.png" alt="Drop down fields" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/09/04/newsberry-customize-your-subscribe-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customer service, one at time.</title>
		<link>http://wildbit.com/blog/2008/05/13/customer-service-one-at-time/</link>
		<comments>http://wildbit.com/blog/2008/05/13/customer-service-one-at-time/#comments</comments>
		<pubDate>Wed, 14 May 2008 01:02:33 +0000</pubDate>
		<dc:creator>Chris Nagele</dc:creator>
				<category><![CDATA[Beanstalk]]></category>
		<category><![CDATA[Business Strategy]]></category>
		<category><![CDATA[Newsberry]]></category>
		<category><![CDATA[campfire]]></category>
		<category><![CDATA[customer service]]></category>

		<guid isPermaLink="false">http://www.wildbit.com/?p=227</guid>
		<description><![CDATA[A lot of companies think of customer service at the high-level or grand scale. Help systems, Call centers, Infrastructure, etc. Running Beanstalk and Newsberry, I do as much as possible at the individual level as possible. It's where customer service really counts. Deciding to use Campfire chat for support has been one of the best moves for us, despite the mishaps. We offer direct access, and in turn, obtain direct feedback from our customers.]]></description>
			<content:encoded><![CDATA[<p>A lot of companies think of customer service at the high-level or grand scale. Help systems, Call centers, Infrastructure, etc. Running Beanstalk and Newsberry, I do as much as possible at the individual level as possible. It&#8217;s where customer service really counts. Deciding to use <a href="http://campfirenow.com">Campfire</a> chat for support has been one of the best moves for us, <a href="http://www.wildbit.com/blog/2008/04/24/wehn-campfire-backfires/">despite the mishaps</a>. We offer direct access, and in turn, obtain direct feedback from our customers.</p>
<p><span id="more-227"></span></p>
<p>We also try to be as honest and transparent as possible. Just today a customer asked how the new deployment feature was coming. It&#8217;s taken a lot longer than we expected and many people are waiting for it. I could have easily said &#8220;It&#8217;s almost ready&#8221; to keep him waiting. Instead, I wanted to get him excited and let him know we&#8217;re working hard. Nothing shows this better than giving a sneak peek at what is coming. So, I grabbed some screen shots of the new tools and uploaded them to campfire. Now he knows what to expect, and more important, knows that we are really working hard to make things happen for our customers. </p>
<p>Transparency is just as important on the positive notes as they are for the negative.</p>
<p><img src="http://farm3.static.flickr.com/2348/2491187164_6a0e54df6c_o.png" alt="Campfire Discussion" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wildbit.com/blog/2008/05/13/customer-service-one-at-time/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
