<?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>LonSeidman.com &#187; Tech Tips</title>
	<atom:link href="http://lonseidman.com/category/tech/tech-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://lonseidman.com</link>
	<description></description>
	<lastBuildDate>Fri, 04 May 2012 18:42:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Using Tumult Hype With Google DFP</title>
		<link>http://lonseidman.com/2012/02/02/using-tumult-hype-with-google-dfp/</link>
		<comments>http://lonseidman.com/2012/02/02/using-tumult-hype-with-google-dfp/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 19:20:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[banner]]></category>
		<category><![CDATA[DFP]]></category>
		<category><![CDATA[Double Click for Publishers]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Hype]]></category>
		<category><![CDATA[Hypeapp]]></category>
		<category><![CDATA[Tumult]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://lonseidman.com/?p=1033</guid>
		<description><![CDATA[I just discovered Tumult&#8217;s Hype &#8211; an excellent Mac application that allows for rapid development of HTML5 based animations. It works a lot like Apple&#8217;s Keynote and allowed me to put together a simple banner advertisement in all of 10 minutes. Check it out: The only challenge is how to attach a Hype produced ad [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered Tumult&#8217;s Hype &#8211; an excellent Mac application that allows for rapid development of HTML5 based animations. It works a lot like Apple&#8217;s Keynote and allowed me to put together a simple banner advertisement in all of 10 minutes. Check it out:</p>
<p><iframe src="http://imnct.com/ads/Test.html" frameborder="0" width="300" height="250"></iframe></p>
<p>The only challenge is how to attach a Hype produced ad to an ad server that can track impressions and clicks. We use Google&#8217;s Double Click for Publishers (DFP) platform at the Independent Media Network. It&#8217;s great for showing flash ads or static images (both of which are flat files) but anything else is slightly more challenging.</p>
<p>UPDATE: Tumult&#8217;s tech support contacted me last week with an easy to follow set of instructions. My method (at the bottom of the post) worked, but this seems like it&#8217;s a better way to implement it:</p>
<p><code>Step1:<br />
All of the files/libraries need to be in the same folder. DoubleClick doesn't allow sub folders. So both relocate all of the files, along with updating the main HTML file to not look for any files (JS, CSS, Images, etc) in a sub folder.</p>
<p>Step2:<br />
Create an external CSS file that contains the linkage for the external image, example:<br />
#image1{<br />
position:absolute;<br />
display:block;<br />
width:auto;<br />
height:auto;<br />
background: url('image1.png') no-repeat;<br />
background-size: 100%;<br />
}</p>
<p>**DoubleClick's Studio environment reads this CSS file and updates the names/linkages of all of the external images before runtime, so it will do all of this in the CSS.</p>
<p>Step3:<br />
In order to have DoubleClick's &quot;Enabler&quot; work, you have to manually add it to the HTML file:<br />
&lt;script src=&quot;http://s0.2mdn.net/879366/Enabler_01_09.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</p>
<p>Step4:<br />
I'm not 100% sure if the system was allowing for the import of an external JS source, so I just included it in the HTML:<br />
&lt;script src=&quot;HYPE.js&quot;&gt;&lt;/script&gt;</p>
<p>Step5:<br />
DoubleClick studio is really particular with certain extension names, and I had to remove the extra string that Hype creates when creating that first HTML file. Example:<br />
Old:<br />
&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;300x250_hype_generated_script.js?24112&quot;&gt;&lt;/script&gt;</p>
<p>New:<br />
&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot; src=&quot;300x250_hype_generated_script.js&quot;&gt;&lt;/script&gt;</p>
<p>Step6:<br />
After animating the banner ad within the Hype environment, you need to convert all of the external images into having these settings:<br />
Element Inspector = Background Fill Style of &quot;none&quot;<br />
Identity Inspector = Match the Display Name and Unique Element ID to the element you created in your external CSS file</p>
<p>Step7:<br />
DoubleClick's Studio requires an instance of their &quot;enabler&quot; being used somewhere to be uploaded. So as long as there's some sort of &quot;counter&quot; or &quot;exit&quot; setup in any of the files, everything should be accepted. I just added an &quot;exit&quot; when you click on one of the elements, example:<br />
var javascripts = [{name:&quot;onCTAClick&quot;,source:&quot;function(hypeDocument, element, event) {\n\tEnabler.exit('HTML5_CTA_Clickthrough');\t\n}&quot;,identifier:&quot;12&quot;}];<br />
</code></pre>
<p>Here's my old workaround:</p>
<p>After a good deal of poking around we found a workaround. This is probably not kosher with the Javascript elites, but it does the trick for us. Here's what we did:</p>
<blockquote><p>&lt;div style="position:relative;"&gt;<br />
&lt;iframe src = "http://URL_TO_YOUR_AD.HTML" width = "300" height = "250" frameborder = "0"&gt;&lt;/iframe&gt;<br />
&lt;a href= "%%CLICK_URL_UNESC%%http://DESTINATION_LINK" style="position:absolute; top:0; left:0; display:inline-block; width:300px; height:250px; z-index:5;" target="_blank"&gt;&lt;/a&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>Essentially what we did here was make an iFrame clickable by overlaying some transparent CSS over it. Or at least I think that's what we're doing here. The %%CLICK_URL_UNESC%% macro that's appended directly ahead of the URL is what DFP uses to track the click.</p>
<p>We're not yet comfortable enough with this solution to roll it out for a production advertisement, but our house ad has been delivering (and clicking) flawlessly on every modern browser as well as mobile devices.</p>
<p>I'd love to hear from you as to whether or not this is a good practice with DFP or in general.</p>
]]></content:encoded>
			<wfw:commentRss>http://lonseidman.com/2012/02/02/using-tumult-hype-with-google-dfp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Switched Off Syphir</title>
		<link>http://lonseidman.com/2010/05/03/why-i-switched-off-syphir/</link>
		<comments>http://lonseidman.com/2010/05/03/why-i-switched-off-syphir/#comments</comments>
		<pubDate>Mon, 03 May 2010 17:44:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.lonseidman.com/?p=740</guid>
		<description><![CDATA[As a habitually disorganized person in the physical world, I welcome smart tools that help me organize things virtually with little or no effort. One of my favorite desktop apps to accomplish this task is Hazel, recommended by my favorite virtual organizer Merlin Mann. I set Hazel to automatically delete files on my desktop or [...]]]></description>
			<content:encoded><![CDATA[<p>As a habitually disorganized person in the physical world, I welcome smart tools that help me organize things virtually with little or no effort.  </p>
<p>One of my favorite desktop apps to accomplish this task is <a href="http://www.noodlesoft.com/hazel">Hazel</a>, recommended by my favorite virtual organizer <a href="http://www.merlinmann.com/">Merlin Mann</a>.   I set Hazel to automatically delete files on my desktop or downloads folder after 3 days of inactivity, forcing me to keep things organized. </p>
<p>So I was excited when Merlin espoused a similar app for Gmail on <a href="http://twit.tv/mbw">Mac Break Weekly</a> recently called <a href="https://www.syphir.com/">Syphir</a>.  While it doesn&#8217;t yet have all of the bells and whistles of Hazel, it is well on its way to enforcing rules that can keep inboxes tidier than Google&#8217;s filters can do.   There&#8217;s just one problem.  Take a look at this:</p>
<p><a href="http://lonseidman.com.s58730.gridserver.com/wp-content/uploads/2010/05/syphirproblem.jpg"><img src="http://lonseidman.com.s58730.gridserver.com/wp-content/uploads/2010/05/syphirproblem.jpg" alt="" title="syphirproblem" width="599" height="335" class="aligncenter size-full wp-image-741" /></a></p>
<p>Google recently implemented new security safeguards that give users a better idea as to where accounts are being accessed from.  </p>
<p>I was alarmed this morning when I noticed my account was being accessed from a half dozen IPs all over the country, including one that resolved back to MIT and others that resolved to Amazon EC2.  After momentarily freaking out, I came to the conclusion that this was all Syphir traffic.  Sure enough, once I disabled the Syphir service my account returned to normal.  </p>
<p>In fairness, Syphir is handling user security <a href="https://www.syphir.com/security">responsibly</a>.  They utilize Oauth and OpenID linked to a Google account so passwords are not stored on their servers.  Nevertheless, the fact that my account is being accessed from any number of servers throughout the United States simultaneously makes it next to impossible to detect unwanted visitors.  </p>
<p>I will keep an eye on Syphir&#8217;s progress, but this flood of IMAP requests to my Gmail account is a deal breaker for me.  </p>
]]></content:encoded>
			<wfw:commentRss>http://lonseidman.com/2010/05/03/why-i-switched-off-syphir/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review:  Photo Basics 402 uLite Video Lighting Kit</title>
		<link>http://lonseidman.com/2009/07/14/review-photo-basics-402-ulite-video-lighting-kit/</link>
		<comments>http://lonseidman.com/2009/07/14/review-photo-basics-402-ulite-video-lighting-kit/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 12:40:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[chroma key]]></category>
		<category><![CDATA[green screen]]></category>
		<category><![CDATA[Photo Basics 402 uLite Video Lighting Kit]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.lonseidman.com/?p=623</guid>
		<description><![CDATA[I am a member of the Amazon Vine Program. Each month Amazon.com sends me products to review on their site. This month I received the Photo Basics 402 uLite Video Lighting Kit As an all-in-one kit, the Photo Basics 402 on the surface appears to be all inclusive. In the box are two moderately powered [...]]]></description>
			<content:encoded><![CDATA[<p>I am a member of the Amazon Vine Program. Each month Amazon.com sends me products to review on their site. This month I received the <a name="evtst|a|B0026HMKFI" href="http://www.amazon.com/Photo-Basics-402-uLite-Lighting/dp/B0026HMKFI%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dlonseidman-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0026HMKFI">Photo Basics 402 uLite Video Lighting Kit</a></p>
<p>As an all-in-one kit, the Photo Basics 402 on the surface appears to be all inclusive. In the box are two moderately powered soft boxes, some software, a few sample backgrounds, and an absolutely enormous green screen. <a href="http://www.amazon.com/Photo-Basics-402-uLite-Lighting/dp/B0026HMKFI%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dlonseidman-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0026HMKFI"><img class="alignright" src="http://ecx.images-amazon.com/images/I/312cpIf-0FL._SL160_.jpg" alt="" width="160" height="147" /></a></p>
<p>You can see some of the other reviewers&#8217; results in their video reviews on <a href="http://www.amazon.com/Photo-Basics-402-uLite-Lighting/dp/B0026HMKFI%3FSubscriptionId%3D02E5W5871AJF7PMMMS82%26tag%3Dlonseidman-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB0026HMKFI">Amazon&#8217;s site</a>. There&#8217;s no question this kit provides just about everything needed to do some decent green screen work. But there are some problems that are worth pointing out:</p>
<p style="padding-left: 30px;">1. What appears to be a free standing flat green screen in the marketing photos is actually an enormous (and heavy) rolled up green blanket in the box. What&#8217;s more, the manufacturer does not provide any hooks or other tools to aid hanging up the screen (at least my box doesn&#8217;t have it). Expect to take some time to get it flush and static. Even small movements of air can move the screen enough to give some errors.</p>
<p style="padding-left: 30px;">2. The only software included with the package is a sample version of Adobe Premiere Elements which will expire after thirty days. There is nothing for Mac users, although the current version of iMovie supports green screens.</p>
<p>The Photo Basics 402 kit succeeds in that everything in the box will work once you invest a little bit more to get a full version of the software and the screen stabilized. Still, a comparable setup with a better screen could be pieced together on Amazon for a comparable (or maybe even lower) price.</p>
<p>Here&#8217;s an example of a moderately priced alternative:</p>
<p><center><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=lonseidman-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B001COVC8M" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=lonseidman-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B001N8G2HS" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></center></p>
]]></content:encoded>
			<wfw:commentRss>http://lonseidman.com/2009/07/14/review-photo-basics-402-ulite-video-lighting-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix the Ugly Dock in Leopard</title>
		<link>http://lonseidman.com/2007/10/15/fix-the-ugly-dock-in-leopard/</link>
		<comments>http://lonseidman.com/2007/10/15/fix-the-ugly-dock-in-leopard/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 21:59:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://wordpress.lonseidman.com/?p=17</guid>
		<description><![CDATA[I&#8217;m going to do a little tech blogging this morning. I just upgraded all of my Macs to Apple&#8217;s new Leopard operating system. For the most part (beyond the usual first version bugs and compatibility issues) it&#8217;s a welcome improvement. One thing I dislike about the upgrade are the changes they made to the dock.. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m going to do a little tech blogging this morning.  I just upgraded all of my Macs to Apple&#8217;s new Leopard operating system.  For the most part (beyond the usual first version bugs and compatibility issues) it&#8217;s a welcome improvement.  </p>
<p>One thing I dislike about the upgrade are the changes they made to the dock..  To try and make it more aesthetically pleasing they made it more difficult to see what applications were currently running (the little dot underneath open apps blended into the background).</p>
<p>Thankfully there&#8217;s a fix.  Simply type this command into terminal:</p>
<p><i>defaults write com.apple.dock no-glass -boolean YES</i><br />
then type <i>killall Dock. </i></p>
<p>After you&#8217;re done the dock will appear and look like this:</p>
<p><center><img src  = "http://www.lonseidman.com/images/dock.jpg"></center></p>
<p>Sometimes simple is better!  If for some reason you want to return to the old/new dock, simply replace the &#8220;YES&#8221; in the above command to &#8220;NO.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://lonseidman.com/2007/10/15/fix-the-ugly-dock-in-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

