<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>James Manning&#039;s Blog</title>
	<atom:link href="http://blog.sublogic.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sublogic.com</link>
	<description>just another dev</description>
	<lastBuildDate>Fri, 27 Jan 2012 03:24:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.sublogic.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>James Manning&#039;s Blog</title>
		<link>http://blog.sublogic.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.sublogic.com/osd.xml" title="James Manning&#039;s Blog" />
	<atom:link rel='hub' href='http://blog.sublogic.com/?pushpress=hub'/>
		<item>
		<title>Loading lambdas from a file</title>
		<link>http://blog.sublogic.com/2012/01/14/loading-lambdas-from-a-file/</link>
		<comments>http://blog.sublogic.com/2012/01/14/loading-lambdas-from-a-file/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 07:26:30 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.sublogic.com/?p=5315</guid>
		<description><![CDATA[From this question on SO: http://stackoverflow.com/questions/8857871/creating-lambda-expression-from-a-string The below assumes you know the intended type of the lambdas you’re loading (you could make it more dynamic, but that didn’t seem likely in the target scenario to me). It uses the existing&#160; compiler within the framework, but since I don’t know of a way to compile at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5315&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From this question on SO:</p>
<blockquote><p><a href="http://stackoverflow.com/questions/8857871/creating-lambda-expression-from-a-string">http://stackoverflow.com/questions/8857871/creating-lambda-expression-from-a-string</a></p>
</blockquote>
<p>The below assumes you know the intended type of the lambdas you’re loading (you could make it more dynamic, but that didn’t seem likely in the target scenario to me).</p>
<p>It uses the existing&#160; compiler within the framework, but since I don’t know of a way to compile at a more granular level (and still be string-based – so CodeDOM and the like don’t count <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://manningj.files.wordpress.com/2012/01/wlemoticon-smile.png" />), this just compiles a single class with a single property into an assembly, then takes the assembly and pulls out the property.</p>
<p>With this for the input:</p>
<blockquote><p><a href="http://manningj.files.wordpress.com/2012/01/image4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2012/01/image_thumb4.png?w=440&#038;h=93" width="440" height="93" /></a></p>
</blockquote>
<p>The output generated is:</p>
<blockquote><p><a href="http://manningj.files.wordpress.com/2012/01/image5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2012/01/image_thumb5.png?w=799&#038;h=152" width="799" height="152" /></a></p>
</blockquote>
<p><a href="https://gist.github.com/1610600">https://gist.github.com/1610600</a></p>
<p><pre class="brush: csharp;">
using System;
using System.Xml.Linq;
using System.Linq;
using System.IO;
using Microsoft.CSharp;
using System.CodeDom.Compiler;
using System.Reflection;
using System.Linq.Expressions;

class Program
{
    private const string classTemplate = @&quot;
            using System;
            using System.Linq.Expressions;
    
            public static class RulesConfiguration
            {{
                private static Expression&lt;Func&lt;string, bool&gt;&gt;[] rules = new Expression&lt;Func&lt;string, bool&gt;&gt;[]
                {{
                    {0}
                }};
    
                public static Expression&lt;Func&lt;string, bool&gt;&gt;[] Rules {{ get {{ return rules; }} }}
            }}
        &quot;;

    static void Main(string[] args)
    {
        var filePath = @&quot;c:\temp\rules.txt&quot;;
        var fileContents = File.ReadAllLines(filePath);

        // add commas to the expressions so they can compile as part of the array
        var joined = String.Join(&quot;,&quot; + Environment.NewLine, fileContents);

        Console.WriteLine(&quot;Rules found in file: \n{0}&quot;, joined);

        var classSource = String.Format(classTemplate, joined);

        var assembly = CompileAssembly(classSource);

        var rules = GetExpressionsFromAssembly(assembly);

        foreach (var rule in rules)
        {
            var compiledToFunc = rule.Compile();
            Console.WriteLine(&quot;Checking rule {0} against input {1}: {2}&quot;, rule, filePath, compiledToFunc(filePath));
        }
    }

    static Expression&lt;Func&lt;string, bool&gt;&gt;[] GetExpressionsFromAssembly(Assembly assembly)
    {
        var type = assembly.GetTypes().Single();
        var property = type.GetProperties().Single();
        var propertyValue = property.GetValue(null, null);
        return propertyValue as Expression&lt;Func&lt;string, bool&gt;&gt;[];
    }

    static Assembly CompileAssembly(string source)
    {
        var compilerParameters = new CompilerParameters()
        {
            GenerateExecutable = false,
            GenerateInMemory = true,
            ReferencedAssemblies =
            {
                &quot;System.Core.dll&quot; // needed for linq + expressions to compile
            },
        };
        var compileProvider = new CSharpCodeProvider();
        var results = compileProvider.CompileAssemblyFromSource(compilerParameters, source);
        if (results.Errors.HasErrors)
        {
            Console.Error.WriteLine(&quot;{0} errors during compilation of rules&quot;, results.Errors.Count);
            foreach (CompilerError error in results.Errors)
            {
                Console.Error.WriteLine(error.ErrorText);
            }
            throw new InvalidOperationException(&quot;Broken rules configuration, please fix&quot;);
        }
        var assembly = results.CompiledAssembly;
        return assembly;
    }
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5315/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5315/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5315/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5315&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2012/01/14/loading-lambdas-from-a-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>That path sucks, try this one instead!</title>
		<link>http://blog.sublogic.com/2012/01/11/that-path-sucks-try-this-one-instead/</link>
		<comments>http://blog.sublogic.com/2012/01/11/that-path-sucks-try-this-one-instead/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 05:19:19 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/?p=5312</guid>
		<description><![CDATA[I should probably submit this to Alex @ TheDailyWTF, ya know… &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5312&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I should probably submit this to Alex @ <a href="http://thedailywtf.com/">TheDailyWTF</a>, ya know…</p>
<p>&#160;</p>
<p><a href="http://manningj.files.wordpress.com/2012/01/image3.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2012/01/image_thumb3.png?w=473&#038;h=323" width="473" height="323" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5312/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5312/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5312/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5312&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2012/01/11/that-path-sucks-try-this-one-instead/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s &#8216;lightning&#8217;, not &#8216;lightening&#8217;!</title>
		<link>http://blog.sublogic.com/2012/01/07/its-lightning-not-lightening/</link>
		<comments>http://blog.sublogic.com/2012/01/07/its-lightning-not-lightening/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 22:40:59 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/?p=5308</guid>
		<description><![CDATA[&#160; I’m amazed (ok, not really) how often this gets messed up.&#160; I see it a lot playing online when people decide to complain about use of the lightning gun, for instance. Apparently Google (or, at least, their algorithms) have noticed as well!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5308&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://manningj.files.wordpress.com/2012/01/image1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2012/01/image_thumb1.png?w=270&#038;h=92" width="270" height="92" /></a></p>
<p>&#160;</p>
<p>I’m amazed (ok, not really) how often this gets messed up.&#160; I see it a lot playing online when people decide to complain about use of the lightning gun, for instance.</p>
<p>Apparently Google (or, at least, their algorithms) have noticed as well!</p>
<p><a href="http://manningj.files.wordpress.com/2012/01/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2012/01/image_thumb2.png?w=714&#038;h=379" width="714" height="379" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5308/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5308&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2012/01/07/its-lightning-not-lightening/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>github import from svn made me laugh</title>
		<link>http://blog.sublogic.com/2012/01/07/github-import-from-svn-made-me-laugh/</link>
		<comments>http://blog.sublogic.com/2012/01/07/github-import-from-svn-made-me-laugh/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 18:22:39 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/?p=5301</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5301&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://manningj.files.wordpress.com/2012/01/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2012/01/image_thumb.png?w=964&#038;h=181" width="964" height="181" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5301&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2012/01/07/github-import-from-svn-made-me-laugh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2012/01/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Server uses an odd number line</title>
		<link>http://blog.sublogic.com/2011/11/04/sql-server-uses-an-odd-number-line/</link>
		<comments>http://blog.sublogic.com/2011/11/04/sql-server-uses-an-odd-number-line/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 19:37:01 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/2011/11/04/sql-server-uses-an-odd-number-line/</guid>
		<description><![CDATA[While it’s likely just a hyphen that needs to be removed from the resource string, it makes for an odd error message as-is. C:\ » sqlcmd -h 0 Sqlcmd: &#8216;-h 0&#8242;: header value must be either -1 or a value between -1 and 2147483647<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5298&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>While it’s likely just a hyphen that needs to be removed from the resource string, it makes for an odd error message as-is. <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://manningj.files.wordpress.com/2011/11/wlemoticon-smile1.png" /></p>
<blockquote><p>C:\ » sqlcmd -h 0     <br />Sqlcmd: &#8216;-h 0&#8242;: header value must be either -1 or a value <strong>between -1 and 2147483647</strong></p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5298/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5298/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5298/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5298&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2011/11/04/sql-server-uses-an-odd-number-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/11/wlemoticon-smile1.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>a company really sad to see you unsubscribe</title>
		<link>http://blog.sublogic.com/2011/11/03/a-company-really-sad-to-see-you-unsubscribe/</link>
		<comments>http://blog.sublogic.com/2011/11/03/a-company-really-sad-to-see-you-unsubscribe/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 14:11:57 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/2011/11/03/a-company-really-sad-to-see-you-unsubscribe/</guid>
		<description><![CDATA[Definitely an interesting experience as I unsubscribed from AppSumo (was just switching from email to RSS, FWIW)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5296&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Definitely an interesting experience as I unsubscribed from <a href="http://appsumo.com/">AppSumo</a> (was just switching from email to RSS, FWIW)</p>
<p><a href="http://manningj.files.wordpress.com/2011/11/image2.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2011/11/image_thumb2.png?w=717&#038;h=499" width="717" height="499" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5296/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5296&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2011/11/03/a-company-really-sad-to-see-you-unsubscribe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/11/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>OCZ, SandForce, and &#8220;no material impact&#8221;</title>
		<link>http://blog.sublogic.com/2011/11/02/ocz-sandforce-and-no-material-impact/</link>
		<comments>http://blog.sublogic.com/2011/11/02/ocz-sandforce-and-no-material-impact/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 19:04:02 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/2011/11/02/ocz-sandforce-and-no-material-impact/</guid>
		<description><![CDATA[As November 1st has come and gone and OCZ is still silent on the Octane (the Oct 20th press release is the only meaningful hit on their site, the other ‘octane’ is talking about SGI), one wonders what’s going on over there. Without any real knowledge myself, I’m left to speculation, but since it was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5293&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As November 1st has come and gone and OCZ is still silent on the Octane (the Oct 20th press release is the only meaningful hit on their site, the other ‘octane’ is talking about SGI), one wonders what’s going on over there.</p>
<p>Without any real knowledge myself, I’m left to speculation, but since it was just a week ago that the OCZ CEO decided to publicly claim that SandForce being acquired by LSI “<a href="http://www.marketwatch.com/story/ocz-technology-group-comments-on-sandforce-acquisition-2011-10-26">will have no material impact to our existing product lines or business</a>”, I wonder if that word ‘existing’ was added specifically because of the Octane since it’s pretty easy to argue that it wouldn’t fall under ‘existing’ a week ago since it hadn’t been made available to the public yet.&#160; I don’t really know enough about SSD’s in general or OCZ’s in particular to know whether it’s even possible that the LSI acquisition could even have a material impact on the Octane or not.&#160; </p>
<p>As <a href="http://twitter.com/#!/ocztechnology">OCZ’s twitter account</a> remains silent and <a href="https://www.google.com/finance?client=ob&amp;q=NASDAQ:OCZ">the OCZ stock on NASDAQ</a> (at least the moment) remains relatively flat over this last week around $7/share, I wonder how many investors are getting awfully nervous based on this lack of communication from the company.</p>
<p>Certainly I would have been on the (I’d imagine very LONG) list of people asking for an Octane as a Christmas present, so perhaps it’s all just a mad scramble internally for them to figure out how they can still make it out in time for the holiday shopping season.</p>
<p>With Black Friday and Cyber Monday only 23 and 26 days away, respectively, whatever’s going on has got to be freaking some people out.&#160; Hopefully it’ll at least be an interesting story once it all comes out!</p>
<p>I’m kind of surprised there’s nothing in the ‘trade mags’/blogs/whatever about this, but perhaps I’m just missing something and/or making a mountain out of a mole hill.&#160; Either way, I’d love to find out WTF is going on with the Octane, sooner rather than later! <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://manningj.files.wordpress.com/2011/11/wlemoticon-smile.png" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5293&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2011/11/02/ocz-sandforce-and-no-material-impact/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/11/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Ok, it&#8217;s November 1st, where&#8217;s the Octane?</title>
		<link>http://blog.sublogic.com/2011/11/01/ok-its-november-1st-wheres-the-octane/</link>
		<comments>http://blog.sublogic.com/2011/11/01/ok-its-november-1st-wheres-the-octane/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 17:15:11 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/2011/11/01/ok-its-november-1st-wheres-the-octane/</guid>
		<description><![CDATA[So 12 days ago, OCZ announces their first Indilinx-based SSD since acquiring Indilinx earlier this year. http://www.ocztechnology.com/aboutocz/press/2011/458 The OCZ Octane SSD Series will be available November 1st in models ranging from 128GB-1TB capacities throughout OCZ&#8217;s global channel. &#160; The reaction of many, myself included, can best be represented by our dear friend SpongeBob: &#160; Since [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5284&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So 12 days ago, OCZ announces their first Indilinx-based SSD since <a href="http://www.ocztechnology.com/aboutocz/press/2011/421">acquiring Indilinx earlier this year</a>.</p>
<p><a href="http://www.ocztechnology.com/aboutocz/press/2011/458">http://www.ocztechnology.com/aboutocz/press/2011/458</a></p>
<blockquote><p>The <strong><font>OCZ Octane SSD Series will be available November 1st</font></strong> in models ranging from 128GB-1TB capacities throughout OCZ&#8217;s global channel.</p>
</blockquote>
<p>&#160;</p>
<p>The reaction of many, myself included, can best be represented by our dear friend SpongeBob:</p>
<blockquote><p><a href="http://manningj.files.wordpress.com/2011/11/image.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2011/11/image_thumb.png?w=130&#038;h=99" width="130" height="99" /></a></p>
</blockquote>
<p>&#160;</p>
<p>Since today is The Day, I go to check <a href="http://www.ocztechnology.com/where-to-buy/resellers/north-america.html">OCZ’s 3 ‘premier resellers’, Amazon, newegg, and TigerDirect</a></p>
<p><strong><em>The results?</em></strong></p>
<p>Not on <a href="http://www.amazon.com/gp/search?rh=i%3Aelectronics%2Cn%3A172282%2Ck%3Aocz+octane&amp;keywords=ocz+octane&amp;ie=UTF8&amp;qid=1320166975&amp;ajr=0">Amazon</a></p>
<blockquote><h3>Your search &quot;ocz octane&quot; did not match any products.</h3>
</blockquote>
<p>Not on <a href="http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&amp;DEPA=0&amp;Order=BESTMATCH&amp;N=-1&amp;isNodeId=1&amp;Description=ocz+octane&amp;x=0&amp;y=0">newegg</a></p>
<blockquote><h5>We have found 0 items that match &quot;ocz octane&quot;.</h5>
</blockquote>
<p>Not on <a href="http://www.tigerdirect.com/applications/SearchTools/failedsearch.asp?keywords=ocz%20octane">TigerDirect</a></p>
<blockquote><p>0 Results found for &quot;ocz octane.&quot;</p>
</blockquote>
<p>&#160;</p>
<p><strong><font>My reaction after these (and other) fruitless searches today?</font></strong></p>
<blockquote><p><a href="http://manningj.files.wordpress.com/2011/11/image1.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2011/11/image_thumb1.png?w=504&#038;h=317" width="504" height="317" /></a></p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5284&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2011/11/01/ok-its-november-1st-wheres-the-octane/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/11/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/11/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Does TWC QoS down Earthlink traffic?</title>
		<link>http://blog.sublogic.com/2011/10/14/does-twc-qos-down-earthlink-traffic/</link>
		<comments>http://blog.sublogic.com/2011/10/14/does-twc-qos-down-earthlink-traffic/#comments</comments>
		<pubDate>Sat, 15 Oct 2011 03:00:37 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.sublogic.com/2011/10/14/does-twc-qos-down-earthlink-traffic/</guid>
		<description><![CDATA[Any ideas on how I could tell if I’m the only one in my area (this side of the second hop) seeing this, and if not, whether this is TWC just QoS’ing Earthlink traffic behind their own? I wouldn’t want to switch from Earthlink to TWC cable if it’s not going to make a difference, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5283&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Any ideas on how I could tell if I’m the only one in my area (this side of the second hop) seeing this, and if not, whether this is TWC just QoS’ing Earthlink traffic behind their own?</p>
<p>I wouldn’t want to switch from Earthlink to TWC cable if it’s not going to make a difference, but if it would, I’d happily do so. <img style="border-style:none;" class="wlEmoticon wlEmoticon-smile" alt="Smile" src="http://manningj.files.wordpress.com/2011/10/wlemoticon-smile2.png" /></p>
<blockquote><p>C:\Users\James&gt;tracert 152.1.1.22</p>
<p>Tracing route to ns1.ncsu.edu [152.1.1.22]     <br />over a maximum of 30 hops:</p>
<p>&#160; 1&#160;&#160;&#160; &lt;1 ms&#160;&#160;&#160; &lt;1 ms&#160;&#160;&#160; &lt;1 ms&#160; DD-WRT [192.168.0.1]     <br /><strong>&#160; 2&#160;&#160; 417 ms&#160;&#160; 397 ms&#160;&#160; 405 ms&#160; user-0c8hjg1.cable.mindspring.com [24.136.206.1]       <br />&#160; 3&#160;&#160; 447 ms&#160;&#160; 435 ms&#160;&#160; 459 ms&#160; ten13-0-0-306.rlghnca-rtr2.nc.rr.com [66.26.44.117]        <br /></strong>&#160; 4&#160;&#160; 235 ms&#160;&#160; 252 ms&#160;&#160;&#160;&#160; *&#160;&#160;&#160;&#160; ae19.chrlncpop-rtr1.southeast.rr.com [24.93.64.2]      <br />&#160; 5&#160;&#160; 389 ms&#160;&#160; 399 ms&#160;&#160; 408 ms&#160; ten1-3.chrlncsa-p-rtr01.southeast.rr.com [24.93.73.57]      <br />&#160; 6&#160;&#160; 432 ms&#160;&#160; 450 ms&#160;&#160; 475 ms&#160; por100.twcc.rlghnc-a-c2701.nc.rr.com [24.27.255.253]      <br />&#160; 7&#160;&#160; 229 ms&#160;&#160; 237 ms&#160;&#160; 260 ms&#160; rrcs-24-172-64-46.midsouth.biz.rr.com [24.172.64.46]      <br />&#160; 8&#160;&#160; 294 ms&#160;&#160; 306 ms&#160;&#160; 306 ms&#160; ncsu-gw-2-to-chlt7600-gw.ncren.net [128.109.248.62]      <br />&#160; 9&#160;&#160; 373 ms&#160;&#160; 379 ms&#160;&#160; 367 ms&#160; itcore-x-ncsugw2.ncstate.net [152.1.6.249]      <br /> 10&#160;&#160; 435 ms&#160;&#160; 423 ms&#160;&#160; 459 ms&#160; vl2910-dc2-6509-2.ncstate.net [152.1.6.226]      <br /> 11&#160;&#160; 476 ms&#160;&#160; 481 ms&#160;&#160; 476 ms&#160; ns1.ncsu.edu [152.1.1.22]</p>
<p>Trace complete.</p>
</blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5283&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2011/10/14/does-twc-qos-down-earthlink-traffic/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/10/wlemoticon-smile2.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>
	</item>
		<item>
		<title>after iOS 5 upgrade, media on iPhone all &#8216;gone&#8217; and the space is now &#8216;Other&#8217;</title>
		<link>http://blog.sublogic.com/2011/10/13/after-ios-5-upgrade-media-on-iphone-all-gone-and-the-space-is-now-other/</link>
		<comments>http://blog.sublogic.com/2011/10/13/after-ios-5-upgrade-media-on-iphone-all-gone-and-the-space-is-now-other/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 02:57:55 +0000</pubDate>
		<dc:creator>manningj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://manningj.wordpress.com/2011/10/13/after-ios-5-upgrade-media-on-iphone-all-gone-and-the-space-is-now-other/</guid>
		<description><![CDATA[Apparently this has been happening for ages (at least going back to iTunes 7.x) and it appears to be related to sync operations not happening correctly/normally/whatever (although I didn’t perceive any sync problems on this particular phone). As unexpected of a workaround as it is, I got lucky and ran across someone else that hit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5281&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Apparently this has been happening for ages (at least going back to iTunes 7.x) and it appears to be related to sync operations not happening correctly/normally/whatever (although I didn’t perceive any sync problems on this particular phone).</p>
<p><a href="http://manningj.files.wordpress.com/2011/10/image4.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2011/10/image_thumb4.png?w=698&#038;h=121" width="698" height="121" /></a></p>
<p>As unexpected of a workaround as it is, I got lucky and ran across someone else that hit this today with their own iOS 5 upgrade.&#160; Just drag a new song not currently on the device from the library onto the device, and sure enough, that did the trick.&#160; The particular song synced over when I dropped it, and that triggered whatever necessary sanity check code that then resynced everything else on the device.&#160; Yay!</p>
<p><a href="http://gfmorris.com/2007/07/19/iphone-music-disappears-disk-space-shows-as-other/">http://gfmorris.com/2007/07/19/iphone-music-disappears-disk-space-shows-as-other/</a></p>
<p><a href="http://manningj.files.wordpress.com/2011/10/image5.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;margin:0;" title="image" border="0" alt="image" src="http://manningj.files.wordpress.com/2011/10/image_thumb5.png?w=789&#038;h=630" width="789" height="630" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/manningj.wordpress.com/5281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/manningj.wordpress.com/5281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/manningj.wordpress.com/5281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/manningj.wordpress.com/5281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/manningj.wordpress.com/5281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/manningj.wordpress.com/5281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/manningj.wordpress.com/5281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/manningj.wordpress.com/5281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.sublogic.com&amp;blog=13317043&amp;post=5281&amp;subd=manningj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.sublogic.com/2011/10/13/after-ios-5-upgrade-media-on-iphone-all-gone-and-the-space-is-now-other/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f02db29ff83998a5c98eab1d7747a4ad?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">manningj</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/10/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://manningj.files.wordpress.com/2011/10/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
