<?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>Who'da think it &#187; thunk function</title>
	<atom:link href="http://www.thunkit.net/category/thunk-function/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thunkit.net</link>
	<description></description>
	<lastBuildDate>Thu, 13 May 2010 11:36:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>@triciaho asks: Is there a paste into in Illustrator CS4 ?</title>
		<link>http://www.thunkit.net/thunk-function/triciaho-asks-is-there-a-paste-into-in-illustrator-cs4</link>
		<comments>http://www.thunkit.net/thunk-function/triciaho-asks-is-there-a-paste-into-in-illustrator-cs4#comments</comments>
		<pubDate>Wed, 20 Jan 2010 01:15:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[thunk function]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Into]]></category>
		<category><![CDATA[Layers]]></category>
		<category><![CDATA[Masks]]></category>
		<category><![CDATA[Paste]]></category>
		<category><![CDATA[Response]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.thunkit.net/thunk-function/triciaho-asks-is-there-a-paste-into-in-illustrator-cs4</guid>
		<description><![CDATA[@triciaho asks &#8220;this is a super noob qn. in indesign, there&#8217;s a &#8220;paste into&#8221; function, is there something similar in Illy CS4?&#8221; Well this one required a video response, and we think we have come up with a fantastic answer. Of course we did, we are the best there is. Using Illustrator CS4, Masks and [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://i.ytimg.com/vi/6yG1OqvQ7Cs/2.jpg" align="left">@triciaho asks &#8220;this is a super noob qn. in indesign, there&#8217;s a &#8220;paste into&#8221; function, is there something similar in Illy CS4?&#8221; Well this one required a video response, and we think we have come up with a fantastic answer. Of course we did, we are the best there is. Using Illustrator CS4, Masks and LAyers and Nerd boy stuns Mr. Crayons when he knows an Illustrator shortcut. command 7 who would&#8217;ve thunk it!</p>
<p>Duration : <b>0:4:19</b></p>
<p><span id="more-176"></span><br />[youtube 6yG1OqvQ7Cs]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thunkit.net/thunk-function/triciaho-asks-is-there-a-paste-into-in-illustrator-cs4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>p6apclps #44 Perl 6 Apocalypse</title>
		<link>http://www.thunkit.net/thunk-function/p6apclps-44-perl-6-apocalypse</link>
		<comments>http://www.thunkit.net/thunk-function/p6apclps-44-perl-6-apocalypse#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:39:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[thunk function]]></category>
		<category><![CDATA[Apocalypse]]></category>
		<category><![CDATA[larry]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[perl6]]></category>
		<category><![CDATA[wall]]></category>

		<guid isPermaLink="false">http://www.thunkit.net/thunk-function/p6apclps-44-perl-6-apocalypse</guid>
		<description><![CDATA[http://www.perlfoundation.org/perl6 &#8211; - return?*  I lean towards just the message, with a different method for more info.  But this is somewhat dependent on which representational methods we  define for all Objects. And that has not been entirely thunk through.  RFC:  Mixed Flow Control  *Some of the reference texts, when [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://i.ytimg.com/vi/940LkjBU7Xw/2.jpg" align="left">http://www.perlfoundation.org/perl6 &#8211; - return?*  I lean towards just the message, with a different method for more info.  But this is somewhat dependent on which representational methods we  define for all Objects. And that has not been entirely thunk through.  RFC:  Mixed Flow Control  *Some of the reference texts, when discussing exception handling,  refer to the matter that it may be difficult to implement a &#8220;go to&#8221;  across an unwinding semantics block, as in: *  try {  open F, $f } catch {  next; }  *This matter will have to be referred to the internals experts. It&#8217;s  ok if this functionality is not possible, it can always be simulated  with lexical state variables instead.*  *However, the authors would very much prefer that &#8220;goto&#8221;s across  unwinding boundaries would dwim. If that is not possible, hopefully some sort of compile-time warning could be produced.*  We can do this with special control exceptions that aren&#8217;t caught until  it makes sense to catch them. (Where exactly control exceptions fit in  the class hierarchy is still open to debate.) In any event, there&#8217;s no  problem throwing a control exception from a &#8220;CATCH&#8221;, since any exception  thrown in a &#8220;CATCH&#8221; or &#8220;POST&#8221; would propagate outside the current try  block in any event.  Ordinary &#8220;goto&#8221; should work as long as it&#8217;s leaving the current try  scope. Reentering the try somewhere in the middle via &#8220;goto&#8221; is likely  not possible, or even desirable. A failed try should be re-entered from  the top, once things have been cleared up. (If the try is a loop block,  going to the next iteration out of its &#8220;CATCH&#8221; will probably be  considered safe, just as if there had been an explicit &#8220;try&#8221; block  within the loop. But I could be wrong on that.)  RFC:  Use &#8220;%@&#8221; for Errors from Builtins  RFC 151 proposes a mechanism for consolidating the information  provided by of $@, $!, $?, and $^E. In the opinion of the author of  RFC 88, merging $@ and $! should not be undertaken, because $@  should *only* be set if an exception is raised.  The RFC appears to give no justification for this last assertion. If we  unify the error variables, &#8220;die&#8221; with no arguments can simply raise the  current value of $!, and we stay object oriented all the way down. Then  $! indicates the current error whether or not it&#8217;s being thrown. It  keeps track of its own state, as to whether it is currently in an  &#8220;unclean&#8221; state, and refuses to throw away information unless it&#8217;s  clean.  &#8220;%@&#8221; *should be used to hold this fault-hash, based on the following  arguments for symmetry.*  $@ current exception  @@  current exception stack  %@  current core fault information  $@[0] same as $@  $@{type}  &#8220;IO::File::NotFound&#8221;  $@{message}  &#8220;can&#8217;t find file&#8221;  $@{param}  &#8220;/foo/bar/baz.dat&#8221;  $@{child} $?  $@{errno} $!  $@{os_err} $^E  $@{chunk}  That chunk thingy in some msgs.  $@{file}  Source file name of caller.  $@{line}  Source line number of caller.  &#8220;%@&#8221; *should not contain a severity or fatality classification.*  *Every call to a core API function should clear &#8220;%@&#8221; if it returns successfully.*  *Internally, Perl can use a simple structured data type to hold the  whole canonical &#8220;%@&#8221;. The code that handles reading from &#8220;%@&#8221; will  construct it out of the internal data on the fly.*  *If &#8220;use fatal;&#8221; is in scope, then just before returning, each core  API function should do something like:  &#8220;%@ and internal_die %@;&#8221;*  *The &#8220;internal_ die&#8221; becomes the one place where a canonical  &#8220;Exception&#8221; can be generated to encapsulate &#8220;%@&#8221; just before raising  an exception, whether or not the use of such canonical &#8220;Exception&#8221;s  is controlled by a pragma such as* &#8220;use exceptions;&#8221;.  This &#8220;%@&#8221; proposal just looks like a bunch of unnecessary complication  to me. A proto-exception object with methods can be just as easily (and  lazily) constructed, and will map straight into a real exception, unlike  this hash. And an object can always be used as a hash to access  parameterless methods such as instance variable accessors.  RFC:  eval  *The semantics of &#8220;eval&#8221; are, &#8220;clear $@ and don&#8217;t unwind unless the  user re-dies after the &#8220;eval&#8221;". The semantics of &#8220;try&#8221; are &#8220;unwind  after &#8220;try&#8221;, unless any raised exception was cleanly and completely  handled, in which case clear $@&#8221;.*  *In the author&#8217;s opinion, both &#8220;eval&#8221; and &#8220;try&#8221; should exist in Perl</p>
<p>Duration : <b>0:6:33</b></p>
<p><span id="more-19"></span><br />[youtube 940LkjBU7Xw]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thunkit.net/thunk-function/p6apclps-44-perl-6-apocalypse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
