<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Exposé, SmackBook Pro style</title>
	<atom:link href="http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/</link>
	<description>Rants and Raves from Kingston, RI</description>
	<pubDate>Wed, 08 Oct 2008 05:28:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Jarrett House North &#187; Blog Archive &#187; Smack my Mac up</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-238314</link>
		<dc:creator>Jarrett House North &#187; Blog Archive &#187; Smack my Mac up</dc:creator>
		<pubDate>Tue, 29 Apr 2008 13:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-238314</guid>
		<description>[...] I know: Sudden Motion Sensor hacks are pass&#233;. But I finally got around to playing with one that invokes Expos&#233;, and now I&#8217;m hooked. I ended up modifying it to invoke Dashboard instead, which required [...]</description>
		<content:encoded><![CDATA[<p>[...] I know: Sudden Motion Sensor hacks are pass&eacute;. But I finally got around to playing with one that invokes Expos&eacute;, and now I&#8217;m hooked. I ended up modifying it to invoke Dashboard instead, which required [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derkostka</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-209823</link>
		<dc:creator>derkostka</dc:creator>
		<pubDate>Thu, 28 Feb 2008 18:10:43 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-209823</guid>
		<description>Did anybody get this working with 2 differnet "claps" ?

Maybe: Left-smack = Expose, Right-smack = Spaces !

I have been trying this, and know that Expose is "100" whereas Spaces listenes on ASCII 101 - But i have no idea how to get this into a perl script :(

Help ! Anybody ?

Thanks for that wonderful Blog !</description>
		<content:encoded><![CDATA[<p>Did anybody get this working with 2 differnet &#8220;claps&#8221; ?</p>
<p>Maybe: Left-smack = Expose, Right-smack = Spaces !</p>
<p>I have been trying this, and know that Expose is &#8220;100&#8243; whereas Spaces listenes on ASCII 101 - But i have no idea how to get this into a perl script <img src='http://www.jepstone.net/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Help ! Anybody ?</p>
<p>Thanks for that wonderful Blog !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasmin</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-202892</link>
		<dc:creator>Jasmin</dc:creator>
		<pubDate>Sun, 17 Feb 2008 23:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-202892</guid>
		<description>uffff you gona hate me for posting so clumsy but...

when i try with smackmeuh.pl triggering it from terminal it works
but i really want it to work through executable so I can be happy as Heferkimbo

thanks in advance</description>
		<content:encoded><![CDATA[<p>uffff you gona hate me for posting so clumsy but&#8230;</p>
<p>when i try with smackmeuh.pl triggering it from terminal it works<br />
but i really want it to work through executable so I can be happy as Heferkimbo</p>
<p>thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasmin</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-202887</link>
		<dc:creator>Jasmin</dc:creator>
		<pubDate>Sun, 17 Feb 2008 23:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-202887</guid>
		<description>sorry again but also with this smaxpose2.command code it doesnt work, the same as above

help</description>
		<content:encoded><![CDATA[<p>sorry again but also with this smaxpose2.command code it doesnt work, the same as above</p>
<p>help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jasmin</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-202878</link>
		<dc:creator>Jasmin</dc:creator>
		<pubDate>Sun, 17 Feb 2008 23:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-202878</guid>
		<description>hello, im unexpirienced but i try to read and i have problem 

ok i downloaded amstracker and the code
i made a (/usr/local/bin) and put everything inside
i made this code

/usr/bin/perl -w

use strict;

my $SENSIBILITY = 26;
my $TIME = 80; # (0.05 seconds)

open F,"./Users/getoutski/bin/AMSTracker -s -u0.005 &#124;";

my $stable;
my $foo = '';

while() {
    my @a = /(-?\d+)/g;
    print, next if @a != 3;

    if((abs($a[1]) + abs($a[0]))  $SENSIBILITY &#38;&#38; $stable &#62; $TIME) {
	$stable = 0;
	$foo = $a[0] &#60; 0 ? 'key code 118 using {control down}' : 'key code 101';
    } else {
	if($foo ne '')  {
		`osascript -e 'tell application \"System Events\" to ${foo}'`;
		$foo = '';
	}
    }
}

and saved it "smaxpose.command"
afterwards i run (chmod +x smaxpose.command) from terminal and make it executable
started both AMStracker and new executable
and i get only this

Last login: Mon Feb 18 00:20:48 on ttyp2
/Users/getoutski/bin/smaxpose.command; exit
Welcome to Darwin!
getoutskis-computer:~ getoutski$ /Users/getoutski/bin/smaxpose.command; exit</description>
		<content:encoded><![CDATA[<p>hello, im unexpirienced but i try to read and i have problem </p>
<p>ok i downloaded amstracker and the code<br />
i made a (/usr/local/bin) and put everything inside<br />
i made this code</p>
<p>/usr/bin/perl -w</p>
<p>use strict;</p>
<p>my $SENSIBILITY = 26;<br />
my $TIME = 80; # (0.05 seconds)</p>
<p>open F,&#8221;./Users/getoutski/bin/AMSTracker -s -u0.005 |&#8221;;</p>
<p>my $stable;<br />
my $foo = &#8221;;</p>
<p>while() {<br />
    my @a = /(-?\d+)/g;<br />
    print, next if @a != 3;</p>
<p>    if((abs($a[1]) + abs($a[0]))  $SENSIBILITY &amp;&amp; $stable &gt; $TIME) {<br />
	$stable = 0;<br />
	$foo = $a[0] &lt; 0 ? &#8216;key code 118 using {control down}&#8217; : &#8216;key code 101&#8242;;<br />
    } else {<br />
	if($foo ne &#8221;)  {<br />
		`osascript -e &#8216;tell application \&#8221;System Events\&#8221; to ${foo}&#8217;`;<br />
		$foo = &#8221;;<br />
	}<br />
    }<br />
}</p>
<p>and saved it &#8220;smaxpose.command&#8221;<br />
afterwards i run (chmod +x smaxpose.command) from terminal and make it executable<br />
started both AMStracker and new executable<br />
and i get only this</p>
<p>Last login: Mon Feb 18 00:20:48 on ttyp2<br />
/Users/getoutski/bin/smaxpose.command; exit<br />
Welcome to Darwin!<br />
getoutskis-computer:~ getoutski$ /Users/getoutski/bin/smaxpose.command; exit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JohnnyK</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-199741</link>
		<dc:creator>JohnnyK</dc:creator>
		<pubDate>Wed, 13 Feb 2008 11:10:31 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-199741</guid>
		<description>hi...iv just got this smackbook thing yesterday..i got everythin sorted..but everytim i restart compt..i hav to start all ova again wit termainal...i read wat brian wrote bout smapose.command or somthing...but i cannot find where it is...a lil help plzz? wat do i need to do so that i dont hav to mess wit this terminal thing everytim i wanna use it thannks in advanceee</description>
		<content:encoded><![CDATA[<p>hi&#8230;iv just got this smackbook thing yesterday..i got everythin sorted..but everytim i restart compt..i hav to start all ova again wit termainal&#8230;i read wat brian wrote bout smapose.command or somthing&#8230;but i cannot find where it is&#8230;a lil help plzz? wat do i need to do so that i dont hav to mess wit this terminal thing everytim i wanna use it thannks in advanceee</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian Jepson</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-175704</link>
		<dc:creator>Brian Jepson</dc:creator>
		<pubDate>Mon, 31 Dec 2007 04:32:45 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-175704</guid>
		<description>Hi Curtis, if you've got Spaces set to start when you press F8, try changing 101 to 100 in the osascript line toward the end of the .command file</description>
		<content:encoded><![CDATA[<p>Hi Curtis, if you&#8217;ve got Spaces set to start when you press F8, try changing 101 to 100 in the osascript line toward the end of the .command file</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Curtis</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-175697</link>
		<dc:creator>Curtis</dc:creator>
		<pubDate>Mon, 31 Dec 2007 04:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-175697</guid>
		<description>Thanx everyone for their posts.  I got is to work with a new MacBook running OS X 10.5.1.  I was wondering if anyone knew how to get it to work with spaces instead of expose?</description>
		<content:encoded><![CDATA[<p>Thanx everyone for their posts.  I got is to work with a new MacBook running OS X 10.5.1.  I was wondering if anyone knew how to get it to work with spaces instead of expose?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kyle</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-168835</link>
		<dc:creator>kyle</dc:creator>
		<pubDate>Thu, 13 Dec 2007 04:11:51 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-168835</guid>
		<description>hey i can't seem to save the file after i put all the in for in the terminal file it just say cancel or terminate but i won't sve what i put in and the only way i can get the smack pro to work is to leave that file open! and ideas</description>
		<content:encoded><![CDATA[<p>hey i can&#8217;t seem to save the file after i put all the in for in the terminal file it just say cancel or terminate but i won&#8217;t sve what i put in and the only way i can get the smack pro to work is to leave that file open! and ideas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Thomas</title>
		<link>http://www.jepstone.net/blog/2006/05/25/expose-smackbook-pro-style/#comment-132308</link>
		<dc:creator>Marc Thomas</dc:creator>
		<pubDate>Mon, 03 Sep 2007 22:01:31 +0000</pubDate>
		<guid isPermaLink="false">http://jepstone.net/blog/?p=528#comment-132308</guid>
		<description>Can someone give me a step by step guide on how to do it?
I've got the AMSTracker and smaxpose.command both saved into a folder called Smackbook Expose.

what do i do?

bearing in mind, i've done absolutely no work with terminal before, so be gentle please!</description>
		<content:encoded><![CDATA[<p>Can someone give me a step by step guide on how to do it?<br />
I&#8217;ve got the AMSTracker and smaxpose.command both saved into a folder called Smackbook Expose.</p>
<p>what do i do?</p>
<p>bearing in mind, i&#8217;ve done absolutely no work with terminal before, so be gentle please!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
