<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7670369293204487684</id><updated>2012-02-16T16:16:40.288-08:00</updated><category term='cart 345'/><category term='helvetica'/><category term='legibility'/><category term='monochrome'/><category term='typography'/><category term='concordia'/><category term='concrete poetry'/><category term='constructivist'/><category term='dimensional'/><category term='Pretty Jesus'/><category term='DB 3'/><category term='communication'/><category term='russian'/><category term='cart345'/><title type='text'>Gordon 345</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>34</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7865280051557355559</id><published>2009-12-10T13:35:00.000-08:00</published><updated>2009-12-10T14:46:07.470-08:00</updated><title type='text'>Hyper-hyponymizer / wordnet tree PostMortem</title><content type='html'>So after all that the Hyperhyponymizer is complete. It did go through a few different iterations in the process though. The first change was a major one. When we realized that we might end up dealing with some very large datasets (70 + words at times) we thought it would be best to discard the current gui in exchange for a new one which could present the words in more of a list format. We settled on trying to create animated Bezier curves for this, which I did actually get working:&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/SyF0XS-vsjI/AAAAAAAAAJA/-ROxq72XH40/s1600-h/Screen+shot+2009-12-05+at+9.50.31+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 264px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/SyF0XS-vsjI/AAAAAAAAAJA/-ROxq72XH40/s320/Screen+shot+2009-12-05+at+9.50.31+PM.png" alt="" id="BLOGGER_PHOTO_ID_5413736170656870962" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;the animation of these curves was fairly simple. I used the cubic bezier equation like this&lt;br /&gt;&lt;br /&gt;for(var i:uint = 1; i &lt;= 70; ++i){&lt;br /&gt;&lt;br /&gt;t = i/70;                                      &lt;br /&gt;&lt;br /&gt;Y = (ap1.y * ((1-t)*(1-t)*(1-t))) + cp1.y * (3 * ((1-t)*(1-t))) * t + cp2.y * ( 3 * ((1-t) * (t*t)))+ (ap2.y * (t*t*t));                   &lt;br /&gt;X = (ap1.x * ((1-t)*(1-t)*(1-t))) + cp1.x * (3 * ((1-t)*(1-t))) * t + cp2.x * ( 3 * ((1-t) * (t*t)))+ (ap2.x * (t*t*t));                                     &lt;br /&gt;&lt;br /&gt;curve.graphics.beginFill(0xFFFFFF, 0.1 + i/70);&lt;br /&gt;curve.graphics.drawCircle(X, Y, 1 + (2 * ((70 - i)/70)));&lt;br /&gt;&lt;br /&gt;}  &lt;br /&gt;&lt;br /&gt;This is actually a really beautiful and useful mathematical equation. It was a bit tricky to find a version of it I could use in flash. I ended up adapting this one from one I found on a C++ forum. Basically cp1, cp2, ap1, ap2 are Points representing anchor points and control points. Bezier equations are different from other types of functions in that for a single 'y' value there can be multiple 'x's and vice-versa, so a new value 't' is used as the independent variable (t is between 0 and 1 (this is important!)). To draw the curves here I simply used a for loop with 'i' being used as 't'. This worked well, but did not animate the curves (obviously). To animate them I just exchanged the 'for' with an ENTER_FRAME eventListener, so that a new circle was drawn for each new frame, up until a certain number of frames. This worked, but not perfectly, because any change in frame-rate affected the speed of the growth of the curves.  The next thing I tried was to exchange the enter_frame with a TweenLite tween, drawing a new circle everytime the tween was updated to a new frame. This fixed the speed problem but created a new one. Because of the (admittedly flawed) drawing method, whenever there was a drop in the framerate there was a gap in the curve:  &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SyF3YF41cuI/AAAAAAAAAJI/Hk0XhPNp6Ws/s1600-h/Screen+shot+2009-12-06+at+3.07.32+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 318px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SyF3YF41cuI/AAAAAAAAAJI/Hk0XhPNp6Ws/s320/Screen+shot+2009-12-06+at+3.07.32+AM.png" alt="" id="BLOGGER_PHOTO_ID_5413739482857173730" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;because we were running out of time, and the Bezier curves were turning out to be a major headache (as well as the fact that I don't think they would have looked as good) we decided to switch back to the original interface. There were a few bumps in the road in adapting it to the backend, but it didn't take too much to get them working together:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SyF4eC77jCI/AAAAAAAAAJQ/37xUDbA_87Q/s1600-h/Screen+shot+2009-12-06+at+10.20.16+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 305px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SyF4eC77jCI/AAAAAAAAAJQ/37xUDbA_87Q/s320/Screen+shot+2009-12-06+at+10.20.16+PM.png" alt="" id="BLOGGER_PHOTO_ID_5413740684655692834" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;and  a little tip here: Always check where the borders on your textfields are! (make sure they don't look like they do below!)&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SyF4eQWOjcI/AAAAAAAAAJY/4rpPVxr6rbQ/s1600-h/Screen+shot+2009-12-06+at+10.05.32+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 303px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SyF4eQWOjcI/AAAAAAAAAJY/4rpPVxr6rbQ/s320/Screen+shot+2009-12-06+at+10.05.32+PM.png" alt="" id="BLOGGER_PHOTO_ID_5413740688255651266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and just because they look nice, another (accidental this time) bezier-curve drawing:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SyF5acEEqnI/AAAAAAAAAJg/VxnxMC-5Wgo/s1600-h/Screen+shot+2009-12-04+at+9.09.56+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 271px; height: 309px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SyF5acEEqnI/AAAAAAAAAJg/VxnxMC-5Wgo/s320/Screen+shot+2009-12-04+at+9.09.56+PM.png" alt="" id="BLOGGER_PHOTO_ID_5413741722192882290" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7865280051557355559?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7865280051557355559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/12/hyper-hyponymizer-wordnet-tree.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7865280051557355559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7865280051557355559'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/12/hyper-hyponymizer-wordnet-tree.html' title='Hyper-hyponymizer / wordnet tree PostMortem'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_wUr3P12-1_I/SyF0XS-vsjI/AAAAAAAAAJA/-ROxq72XH40/s72-c/Screen+shot+2009-12-05+at+9.50.31+PM.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-8579378390172299497</id><published>2009-12-04T08:44:00.000-08:00</published><updated>2009-12-04T08:51:47.388-08:00</updated><title type='text'>increased efficiency</title><content type='html'>so I've had this nagging feeling that I might have some efficiency problems in this thing, and I suspect that it has to do with the lines that connect nodes. I started suspecting them because every now and then I notice little dots like you see below, and the only place I can see them coming from is connections that are not being deleted properly.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/Sxk812W-XPI/AAAAAAAAAIg/x8eH6FA2c4s/s1600-h/Screen+shot+2009-12-04+at+11.32.15+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 123px; height: 97px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/Sxk812W-XPI/AAAAAAAAAIg/x8eH6FA2c4s/s320/Screen+shot+2009-12-04+at+11.32.15+AM.png" alt="" id="BLOGGER_PHOTO_ID_5411423323084971250" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/Sxk82GnTeBI/AAAAAAAAAIo/Mf6QcCPcNeo/s1600-h/Screen+shot+2009-12-04+at+11.34.53+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 137px; height: 88px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/Sxk82GnTeBI/AAAAAAAAAIo/Mf6QcCPcNeo/s320/Screen+shot+2009-12-04+at+11.34.53+AM.png" alt="" id="BLOGGER_PHOTO_ID_5411423327448430610" border="0" /&gt;&lt;/a&gt;so I added a text field to print out the number of children that the line 'layer' has, and low and behold:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/Sxk82dE6qJI/AAAAAAAAAIw/MtS6X5Vw6zc/s1600-h/Screen+shot+2009-12-04+at+11.42.47+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 242px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/Sxk82dE6qJI/AAAAAAAAAIw/MtS6X5Vw6zc/s320/Screen+shot+2009-12-04+at+11.42.47+AM.png" alt="" id="BLOGGER_PHOTO_ID_5411423333478213778" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/Sxk82uUgZ5I/AAAAAAAAAI4/kxuPOipzSJI/s1600-h/Screen+shot+2009-12-04+at+11.42.57+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/Sxk82uUgZ5I/AAAAAAAAAI4/kxuPOipzSJI/s320/Screen+shot+2009-12-04+at+11.42.57+AM.png" alt="" id="BLOGGER_PHOTO_ID_5411423338107004818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;seems like I'm getting 8 for the price of one... I have a good idea where this is coming from though. Oh and I should also mention that when you navigate backwards only one child is removed (not the 8 that are created)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-8579378390172299497?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/8579378390172299497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/12/increased-efficiency.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/8579378390172299497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/8579378390172299497'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/12/increased-efficiency.html' title='increased efficiency'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/Sxk812W-XPI/AAAAAAAAAIg/x8eH6FA2c4s/s72-c/Screen+shot+2009-12-04+at+11.32.15+AM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-2485550723586076346</id><published>2009-12-03T18:11:00.000-08:00</published><updated>2009-12-03T18:15:33.151-08:00</updated><title type='text'>progress update</title><content type='html'>so the gui is in the final stages of completion (I believe)&lt;br /&gt;&lt;a href="http://hybrid.concordia.ca/%7Eg_bail/index.php?id=tree"&gt;I put up a demo of it here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SxhwQARXGuI/AAAAAAAAAIY/eErAIFsQ7lU/s1600-h/Screen+shot+2009-12-03+at+9.10.59+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 241px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SxhwQARXGuI/AAAAAAAAAIY/eErAIFsQ7lU/s320/Screen+shot+2009-12-03+at+9.10.59+PM.png" alt="" id="BLOGGER_PHOTO_ID_5411198372538686178" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and here's a little tip for everyone: If you are using textFields as buttons, and they're acting weird, make sure they are not overlapping each other like this, or you will have weird problems!&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SxhwPwKZNfI/AAAAAAAAAIQ/N-q2Ew8J8eY/s1600-h/Screen+shot+2009-12-03+at+6.56.10+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SxhwPwKZNfI/AAAAAAAAAIQ/N-q2Ew8J8eY/s320/Screen+shot+2009-12-03+at+6.56.10+PM.png" alt="" id="BLOGGER_PHOTO_ID_5411198368214496754" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-2485550723586076346?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/2485550723586076346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/12/progress-update.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/2485550723586076346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/2485550723586076346'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/12/progress-update.html' title='progress update'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/SxhwQARXGuI/AAAAAAAAAIY/eErAIFsQ7lU/s72-c/Screen+shot+2009-12-03+at+9.10.59+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-8683155763535020488</id><published>2009-12-03T08:19:00.000-08:00</published><updated>2009-12-03T08:20:26.333-08:00</updated><title type='text'>well...</title><content type='html'>that was easy. Commented two lines of code and it works basically perfectly. sweet!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-8683155763535020488?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/8683155763535020488/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/12/well.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/8683155763535020488'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/8683155763535020488'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/12/well.html' title='well...'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7273069321290644691</id><published>2009-12-02T22:00:00.000-08:00</published><updated>2009-12-03T08:00:53.321-08:00</updated><title type='text'>where it's at</title><content type='html'>Just a little update before I get started for the day. So last night I fixed a lot of messy little things that were bothering me a lot. I've got the alpha of the textfields tweening up and down when they are created and removed, which stops them overlapping each other weirdly before they are removed. I've also changed the way text fields are dealt with internally, before I was creating, formatting and entering text in them and then adding them to their Nodes, as well as having an event listener that moved them &lt;span style="font-style: italic;"&gt;every frame&lt;/span&gt; whether their Nodes were moving or not. It was very bad and messy, but now I have them created and formatted within the constructor of each Node, with their positions updated only when Node's are being created or removed, much nicer, much cleaner. I've also fixed a problem where the rotation layer would rotate 350º when it should have rotated 10º, or 358º when it should have been 2º (etc, etc). This problem was occurring because destination angles were being set by the angle property of each node, and because if I tell flash to go from 355º to 5º it won't go over the top of 360º to 0º and then to 5º from there, it goes down through every angle between 355º and 5º making a weird dissorienting spin. I fixed that by changing the way destination angles are being set. I'm know just increasing the rotation by the difference between the angle of the current node clicked and the previous node clicked, which seems to work perfectly. I also moved the 'camera' so that the most recently created layer of children Nodes are more central on the screen.&lt;br /&gt;&lt;br /&gt;anyway, jsut a little summary, today I plan on fixing the biggest, worst and last bug I have right now, which is that when you delete children and then try to grow them back from their parent, you get a big runtime error, and everything gets all screwed up. I'm hoping that there will be some quick fix for this, but I guess we'll find out soon...&lt;br /&gt;&lt;br /&gt;once that's cleared up I want to make an additional text based navigation system/control panel, so hopefully we'll be seeing that by the end of the day...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7273069321290644691?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7273069321290644691/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/12/where-its-at.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7273069321290644691'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7273069321290644691'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/12/where-its-at.html' title='where it&apos;s at'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-1636762398087206876</id><published>2009-11-30T20:03:00.000-08:00</published><updated>2009-11-30T20:12:21.415-08:00</updated><title type='text'>Tree Navigation Workin' (mostly)</title><content type='html'>SoI've spent some time fighting with flash, but I've got this tree/node navigation thing mostly functional. Click a node and it sends out all of that node's children (to eventually be determined by XML), click a sibling of the original node and that siblings children will come out as the others go back in. Click a parent and all of the parent's descendants are removed. It has some serious bugs at this stage, but I'm really happy for the most part. Anyway, updates should be imminent, working demo and source are &lt;a href="http://hybrid.concordia.ca/%7Eg_bail/index.php?id=tree"&gt;here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SxSXGSxqumI/AAAAAAAAAHY/UoO2IdkgIV4/s1600/Screen+shot+2009-11-30+at+11.09.45+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 288px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SxSXGSxqumI/AAAAAAAAAHY/UoO2IdkgIV4/s320/Screen+shot+2009-11-30+at+11.09.45+PM.png" alt="" id="BLOGGER_PHOTO_ID_5410115186753976930" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-1636762398087206876?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/1636762398087206876/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/tree-navigation-workin-mostly.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1636762398087206876'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1636762398087206876'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/tree-navigation-workin-mostly.html' title='Tree Navigation Workin&apos; (mostly)'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/SxSXGSxqumI/AAAAAAAAAHY/UoO2IdkgIV4/s72-c/Screen+shot+2009-11-30+at+11.09.45+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-6518543436008162322</id><published>2009-11-27T17:05:00.000-08:00</published><updated>2009-11-30T20:01:20.805-08:00</updated><title type='text'>update and SWF that works AND source</title><content type='html'>for any interested parties, &lt;a href="http://hybrid.concordia.ca/%7Eg_bail/index.php?id=tree"&gt;the tree-drawer now works in Camino, firefox and what-have-you on mac, and I've put up the source code as an added bonus.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;(of course, it works on windows too (as far as I know) )&lt;br /&gt;&lt;br /&gt;here's some pretty pictures:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SxB8j3X3UJI/AAAAAAAAAHI/dQB0AMAlOP4/s1600/Screen+shot+2009-11-27+at+7.20.43+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 262px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SxB8j3X3UJI/AAAAAAAAAHI/dQB0AMAlOP4/s320/Screen+shot+2009-11-27+at+7.20.43+PM.png" alt="" id="BLOGGER_PHOTO_ID_5408960108073275538" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SxB8juw67aI/AAAAAAAAAHA/6laa6CteYgg/s1600/Screen+shot+2009-11-27+at+7.12.55+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 303px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SxB8juw67aI/AAAAAAAAAHA/6laa6CteYgg/s320/Screen+shot+2009-11-27+at+7.12.55+PM.png" alt="" id="BLOGGER_PHOTO_ID_5408960105762450850" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SxB8kDqGiGI/AAAAAAAAAHQ/3d9BloL_t-Y/s1600/Screen+shot+2009-11-27+at+8.05.09+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 298px; height: 320px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SxB8kDqGiGI/AAAAAAAAAHQ/3d9BloL_t-Y/s320/Screen+shot+2009-11-27+at+8.05.09+PM.png" alt="" id="BLOGGER_PHOTO_ID_5408960111370995810" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-6518543436008162322?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/6518543436008162322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/update-and-swf-that-works-and-source.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6518543436008162322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6518543436008162322'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/update-and-swf-that-works-and-source.html' title='update and SWF that works AND source'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/SxB8j3X3UJI/AAAAAAAAAHI/dQB0AMAlOP4/s72-c/Screen+shot+2009-11-27+at+7.20.43+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-3894347040066184524</id><published>2009-11-26T23:05:00.000-08:00</published><updated>2009-11-30T20:02:05.086-08:00</updated><title type='text'>update + link to a swf!</title><content type='html'>so after a little struggling and late-night mental gymnastics, I've got my tree drawer working so that you click a node and it generates three children, centers the node you clicked and aligns it to the stage. I'm pretty happy with it for now. Tweening will be the next step now.&lt;br /&gt;&lt;br /&gt;click the screens to play with it on my site:&lt;br /&gt;&lt;br /&gt;+++EDIT+++ It seems like FireFox on mac doesn't like this thing, but FireFox on windows doesn't mind. let me know in a comment or an email if it works for you or not... ...I'm working on it.&lt;br /&gt;&lt;br /&gt;warning! it doesn't work right in camino, but it for sure works in FireFox.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://hybrid.concordia.ca/%7Eg_bail/index.php?id=tree"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 304px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw96sd8JRgI/AAAAAAAAAG4/fC6hGmi-yOM/s320/Screen+shot+2009-11-27+at+1.46.56+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408676581864982018" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-3894347040066184524?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/3894347040066184524/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/update-link-to-swf.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/3894347040066184524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/3894347040066184524'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/update-link-to-swf.html' title='update + link to a swf!'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_wUr3P12-1_I/Sw96sd8JRgI/AAAAAAAAAG4/fC6hGmi-yOM/s72-c/Screen+shot+2009-11-27+at+1.46.56+AM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-5956745963041615294</id><published>2009-11-26T10:34:00.000-08:00</published><updated>2009-11-26T10:38:26.024-08:00</updated><title type='text'>update</title><content type='html'>so I think I've got the basics of a tree drawing system down now. The node placing function is a wrapped up in a class, so I can call it to place nodes around the parent and then call it for each child, and so on.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw7KtNr5tHI/AAAAAAAAAGg/r6P0EUjuxiE/s1600/Screen+shot+2009-11-26+at+1.33.15+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 297px; height: 265px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw7KtNr5tHI/AAAAAAAAAGg/r6P0EUjuxiE/s320/Screen+shot+2009-11-26+at+1.33.15+PM.png" alt="" id="BLOGGER_PHOTO_ID_5408483080635266162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;and just for fun...&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw7KtU5-o_I/AAAAAAAAAGo/Vy-lKpXFuoY/s1600/Screen+shot+2009-11-26+at+1.21.07+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 291px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw7KtU5-o_I/AAAAAAAAAGo/Vy-lKpXFuoY/s320/Screen+shot+2009-11-26+at+1.21.07+PM.png" alt="" id="BLOGGER_PHOTO_ID_5408483082573358066" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-5956745963041615294?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/5956745963041615294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/update.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5956745963041615294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5956745963041615294'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/update.html' title='update'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/Sw7KtNr5tHI/AAAAAAAAAGg/r6P0EUjuxiE/s72-c/Screen+shot+2009-11-26+at+1.33.15+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-4809934987388059436</id><published>2009-11-25T21:37:00.000-08:00</published><updated>2009-11-25T21:40:38.480-08:00</updated><title type='text'>haha, fixed it</title><content type='html'>so I fixed my problem of like 15 minutes ago, details are at the bottom of the previous post. Here's some screen shots:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4Uh2OKSyI/AAAAAAAAAGQ/uDFAVjxH_vo/s1600/Screen+shot+2009-11-26+at+12.37.17+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 152px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4Uh2OKSyI/AAAAAAAAAGQ/uDFAVjxH_vo/s200/Screen+shot+2009-11-26+at+12.37.17+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408282774241692450" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/Sw4Ug0L_O8I/AAAAAAAAAF4/_jRnW3GBisQ/s1600/Screen+shot+2009-11-26+at+12.36.32+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 160px; height: 136px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/Sw4Ug0L_O8I/AAAAAAAAAF4/_jRnW3GBisQ/s200/Screen+shot+2009-11-26+at+12.36.32+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408282756515838914" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/Sw4UhJCU69I/AAAAAAAAAGA/SnfMZB5sMxI/s1600/Screen+shot+2009-11-26+at+12.36.41+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 166px; height: 156px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/Sw4UhJCU69I/AAAAAAAAAGA/SnfMZB5sMxI/s200/Screen+shot+2009-11-26+at+12.36.41+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408282762112461778" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw4UhdTaLuI/AAAAAAAAAGI/Nyo_hhYpsaI/s1600/Screen+shot+2009-11-26+at+12.36.50+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 192px; height: 159px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw4UhdTaLuI/AAAAAAAAAGI/Nyo_hhYpsaI/s200/Screen+shot+2009-11-26+at+12.36.50+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408282767552818914" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;and just for fun:&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw4UiIIX-_I/AAAAAAAAAGY/p-Tuf22nrKg/s1600/Screen+shot+2009-11-26+at+12.36.08+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 195px; height: 170px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/Sw4UiIIX-_I/AAAAAAAAAGY/p-Tuf22nrKg/s200/Screen+shot+2009-11-26+at+12.36.08+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408282779049262066" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-4809934987388059436?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/4809934987388059436/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/haha-fixed-it.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/4809934987388059436'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/4809934987388059436'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/haha-fixed-it.html' title='haha, fixed it'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4Uh2OKSyI/AAAAAAAAAGQ/uDFAVjxH_vo/s72-c/Screen+shot+2009-11-26+at+12.37.17+AM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-5206484668024946036</id><published>2009-11-25T20:57:00.000-08:00</published><updated>2009-11-25T21:29:35.436-08:00</updated><title type='text'>progress update</title><content type='html'>so: we've got our dataset for this now! Last night and this afternoon I wrote a command-line tool in C++ to take the source files from wordnet.princeton.edu and convert it to XML as well as remove a bunch of duplicate words, and words with "_" and "-" in them.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4Lx1EuYLI/AAAAAAAAAFg/XTvqRCKVf-c/s1600/Screen+shot+2009-11-26+at+12.01.28+AM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 171px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4Lx1EuYLI/AAAAAAAAAFg/XTvqRCKVf-c/s320/Screen+shot+2009-11-26+at+12.01.28+AM.png" alt="" id="BLOGGER_PHOTO_ID_5408273153206935730" border="0" /&gt;&lt;/a&gt;So with that done, I'm now trying to figure out how I can layout data that has a tree structure visually. I've spent tonight relearning trigonometry in the attempt to position child nodes evenly around their parent. I'm on the right track, but not there yet. here's what I have now:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4MRner0WI/AAAAAAAAAFo/KZrC2syB0XM/s1600/node+layout+weird1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 293px; height: 229px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4MRner0WI/AAAAAAAAAFo/KZrC2syB0XM/s320/node+layout+weird1.jpg" alt="" id="BLOGGER_PHOTO_ID_5408273699313537378" border="0" /&gt;&lt;/a&gt;it looks like a total random mess at first, but if you look closer you can see that nodes 1,2, and 3 are in the right position, 4 and 5 are at the right 'x' but need to trade 'y's and 6, 7, and 8 just need to be pushed up, and then they'll be in the right place aswell. This is encouraging, because (i take it to mean) that everything is working right, and something weird is happening in one small piece of code....&lt;br /&gt;incase yo ucan't picture it, here is how the nodes should (but don't) look:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/Sw4OAYj3vWI/AAAAAAAAAFw/2I2PyewyrfE/s1600/node+layout+weird3.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 293px; height: 229px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/Sw4OAYj3vWI/AAAAAAAAAFw/2I2PyewyrfE/s320/node+layout+weird3.jpg" alt="" id="BLOGGER_PHOTO_ID_5408275602274237794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;EDIT: so, I believe I said I thought it must be one weird thing in a small piece of code? well, I had the angles being calculated automatically and dynamically, but the drawing function was just written out line by line, and I had updated where it was drawing x values from but not where it was drawing it's y values from, so it for example node 8 has it's proper x but node 3's y. The universe makes sense again...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-5206484668024946036?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/5206484668024946036/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/progress-update.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5206484668024946036'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5206484668024946036'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/progress-update.html' title='progress update'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/Sw4Lx1EuYLI/AAAAAAAAAFg/XTvqRCKVf-c/s72-c/Screen+shot+2009-11-26+at+12.01.28+AM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-3912910701206192271</id><published>2009-11-23T20:35:00.001-08:00</published><updated>2009-11-23T20:40:44.461-08:00</updated><title type='text'>DB4 sketch (rough)!</title><content type='html'>here is just one rough sketch of what we're thinking of for DB4 - a search system for a database of entries arranged in a hierarchical tree structure but also relating to each other by tags. This is a (really quick) sketch of how the GUI might look (but probably won't)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/Swtjsz9KpGI/AAAAAAAAAFY/3v1QC0ouCBE/s1600/DB4_Sketch1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 214px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/Swtjsz9KpGI/AAAAAAAAAFY/3v1QC0ouCBE/s320/DB4_Sketch1.jpg" alt="" id="BLOGGER_PHOTO_ID_5407525399100564578" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-3912910701206192271?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/3912910701206192271/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/db4-sketch-rough.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/3912910701206192271'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/3912910701206192271'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/db4-sketch-rough.html' title='DB4 sketch (rough)!'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_wUr3P12-1_I/Swtjsz9KpGI/AAAAAAAAAFY/3v1QC0ouCBE/s72-c/DB4_Sketch1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-1107686188939016669</id><published>2009-11-22T13:49:00.000-08:00</published><updated>2009-11-22T13:50:20.765-08:00</updated><title type='text'>nodes nodes nodes</title><content type='html'>not so confident I can animate the whole thing moving now. Just crashed flash on my first attempt.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-1107686188939016669?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/1107686188939016669/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/nodes-nodes-nodes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1107686188939016669'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1107686188939016669'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/nodes-nodes-nodes.html' title='nodes nodes nodes'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-922668513609792057</id><published>2009-11-22T10:55:00.001-08:00</published><updated>2009-11-22T11:05:33.660-08:00</updated><title type='text'>node map, still working on it...</title><content type='html'>so I'm still trying to figure this thing out. I've made a few changes, It's loading from XML now, it's calculating the strength of attraction between each pair of 'friends' properly, it's finding the node with the most friends and placing it in the center, then it's placing all other nodes based on their attraction to the center node.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SwmLNpXMnXI/AAAAAAAAAFI/7s53EXM9GuU/s1600/Screen+shot+2009-11-22+at+1.54.36+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 143px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SwmLNpXMnXI/AAAAAAAAAFI/7s53EXM9GuU/s200/Screen+shot+2009-11-22+at+1.54.36+PM.png" alt="" id="BLOGGER_PHOTO_ID_5407005894192700786" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SwmLN30rPJI/AAAAAAAAAFQ/hw4v-SX_Vsc/s1600/Screen+shot+2009-11-22+at+1.54.43+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 166px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SwmLN30rPJI/AAAAAAAAAFQ/hw4v-SX_Vsc/s200/Screen+shot+2009-11-22+at+1.54.43+PM.png" alt="" id="BLOGGER_PHOTO_ID_5407005898074438802" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I'm beginning to think that this is the wrong way to go about it though. I'm going to try to take a more organic approach, give each node a random position, and have them connected to their friends by spring constraints (stronger and shorter the better friends they are). Then I'll just let them come to a state of equilibrium on their own. It'll also be nice because it will add a little bit of movement to what is currently very static and boring.&lt;br /&gt;&lt;br /&gt;we'll see how it goes&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-922668513609792057?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/922668513609792057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/node-map-still-working-on-it.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/922668513609792057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/922668513609792057'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/node-map-still-working-on-it.html' title='node map, still working on it...'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/SwmLNpXMnXI/AAAAAAAAAFI/7s53EXM9GuU/s72-c/Screen+shot+2009-11-22+at+1.54.36+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7001764698805688347</id><published>2009-11-21T13:10:00.001-08:00</published><updated>2009-11-21T13:32:31.862-08:00</updated><title type='text'>DB 4 node map first test</title><content type='html'>so I just finished my first really really simple crude test of how a map of interconnected tagged data might look as a web of interconnected nodes.&lt;br /&gt;&lt;br /&gt;the data it's using is just a bunch of words, and it treats each letter of each word as a tag.&lt;br /&gt;&lt;br /&gt;then for each word it creates a list of other words that share at least 1 'tag' (letter) with that word.&lt;br /&gt;&lt;br /&gt;then it chooses a location for each word's node, places the nodes and draws a line between every pair of nodes that share tags. the lines are stronger if the nodes share more tags.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SwhaH-okAUI/AAAAAAAAAE4/jXY3-Rd15wQ/s1600/Screen+shot+2009-11-21+at+4.17.32+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 233px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SwhaH-okAUI/AAAAAAAAAE4/jXY3-Rd15wQ/s320/Screen+shot+2009-11-21+at+4.17.32+PM.png" alt="" id="BLOGGER_PHOTO_ID_5406670445776994626" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;the first, very obvious problem is that, because the node placement is random, there are a &lt;span style="font-style: italic;"&gt;lot&lt;/span&gt; of  crossed connections which make it messy and confusing, also the nodes don't tell you anything without mousing over them, which is annoying.&lt;br /&gt;&lt;br /&gt;anyways, it needs a whole lot of work still, and maybe it won't end up being the final direction of the DB, more of a proof-of-concept I guess (not that it is a completely original concept).&lt;br /&gt;&lt;br /&gt;to do:&lt;br /&gt;-place nodes strategically. strong connections closer to each other, nodes with lots of connections more central, etc.&lt;br /&gt;-have nodes display their most important tags all the time, and all their tags when moused over&lt;br /&gt;-get more real test data. words with letters as tags I don't think is an accurate simulation of real tagged data&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7001764698805688347?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7001764698805688347/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-4-node-map-first-test.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7001764698805688347'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7001764698805688347'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-4-node-map-first-test.html' title='DB 4 node map first test'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/SwhaH-okAUI/AAAAAAAAAE4/jXY3-Rd15wQ/s72-c/Screen+shot+2009-11-21+at+4.17.32+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-6954239921725792797</id><published>2009-11-18T14:32:00.000-08:00</published><updated>2009-11-18T15:42:43.223-08:00</updated><title type='text'>DB four a little bit more</title><content type='html'>fixed the bug I described (except y and z). thought I'd throw up these pics because they are kind of interesting looking&lt;br /&gt;&lt;br /&gt;before. each letter contains segments of the letter preceding it alphabetically, and each letter is mroe distorted than the one before. thought the backwards 'e' was an interesting one.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SwR2eA1Is0I/AAAAAAAAAEo/9Xzdi6lbp6c/s1600/Screen+shot+2009-11-18+at+5.20.01+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 62px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SwR2eA1Is0I/AAAAAAAAAEo/9Xzdi6lbp6c/s200/Screen+shot+2009-11-18+at+5.20.01+PM.png" alt="" id="BLOGGER_PHOTO_ID_5405575710742459202" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and after&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SwR2eVduiBI/AAAAAAAAAEw/PLKunuO1t6Y/s1600/Screen+shot+2009-11-18+at+5.29.10+PM.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 58px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SwR2eVduiBI/AAAAAAAAAEw/PLKunuO1t6Y/s200/Screen+shot+2009-11-18+at+5.29.10+PM.png" alt="" id="BLOGGER_PHOTO_ID_5405575716281419794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;update: it's all done now, everything's up and working, and the code is a hell of a lot shorter&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-6954239921725792797?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/6954239921725792797/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-four-little-bit-more.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6954239921725792797'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6954239921725792797'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-four-little-bit-more.html' title='DB four a little bit more'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_wUr3P12-1_I/SwR2eA1Is0I/AAAAAAAAAEo/9Xzdi6lbp6c/s72-c/Screen+shot+2009-11-18+at+5.20.01+PM.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-9006902508691462619</id><published>2009-11-17T21:36:00.000-08:00</published><updated>2009-11-17T21:39:59.518-08:00</updated><title type='text'>DB4 first step</title><content type='html'>just finished the start of a mega rewrite of my (disorganized, inefficient) code from DB3. Data for my font is stored within the xml a little differently, and is now loaded into a series of arrays rather than an XML object. first big advantage is I can use one function to type every letter instead of having a switch statement with 26 cases. All is not working quite properly yet though. the letters are coming out weird and the zed is not coming out at all.&lt;br /&gt;more to come later&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-9006902508691462619?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/9006902508691462619/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/db4-first-step.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/9006902508691462619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/9006902508691462619'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/db4-first-step.html' title='DB4 first step'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-1887871125794355355</id><published>2009-11-17T09:47:00.000-08:00</published><updated>2009-11-17T09:50:18.049-08:00</updated><title type='text'>reading</title><content type='html'>&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;so this isn't really from a piece of text in the readings but rather from the ideas that were in them.&lt;br /&gt;&lt;br /&gt;interesting in that they mesh well with the direction i'm thinking of taking DB3 in to make it DB4&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SwLiTrGkfeI/AAAAAAAAAEg/2hhgcb9NXZg/s1600/alphabet.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 284px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SwLiTrGkfeI/AAAAAAAAAEg/2hhgcb9NXZg/s400/alphabet.jpg" alt="" id="BLOGGER_PHOTO_ID_5405131330413690338" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-1887871125794355355?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/1887871125794355355/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/reading.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1887871125794355355'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1887871125794355355'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/reading.html' title='reading'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_wUr3P12-1_I/SwLiTrGkfeI/AAAAAAAAAEg/2hhgcb9NXZg/s72-c/alphabet.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7444482091780136900</id><published>2009-11-07T13:31:00.000-08:00</published><updated>2009-11-30T20:03:08.475-08:00</updated><title type='text'>DB 3.3 rough good cut</title><content type='html'>so it's all working together now!&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SvXndKdd94I/AAAAAAAAAEQ/Ka1OYTENrks/s1600-h/Picture+14.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 234px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SvXndKdd94I/AAAAAAAAAEQ/Ka1OYTENrks/s320/Picture+14.png" alt="" id="BLOGGER_PHOTO_ID_5401477816310953858" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/SvXndYk352I/AAAAAAAAAEY/QC2odhX6CaM/s1600-h/Picture+15.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 233px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/SvXndYk352I/AAAAAAAAAEY/QC2odhX6CaM/s320/Picture+15.png" alt="" id="BLOGGER_PHOTO_ID_5401477820100110178" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://hybrid.concordia.ca/%7Eg_bail/index.php?id=anagram"&gt;check it out, and source code too&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7444482091780136900?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7444482091780136900/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-33-rough-good-cut.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7444482091780136900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7444482091780136900'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-33-rough-good-cut.html' title='DB 3.3 rough good cut'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/SvXndKdd94I/AAAAAAAAAEQ/Ka1OYTENrks/s72-c/Picture+14.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-1766831759119709692</id><published>2009-11-06T20:25:00.000-08:00</published><updated>2009-11-06T20:30:57.547-08:00</updated><title type='text'>elastic text scrambler</title><content type='html'>another little section of DB 3.3 completed (with bugs!)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;check it out and source files too, &lt;a href="http://hybrid.concordia.ca/%7Eg_bail"&gt;here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-1766831759119709692?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/1766831759119709692/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/elastic-text-scrambler.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1766831759119709692'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1766831759119709692'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/elastic-text-scrambler.html' title='elastic text scrambler'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-1874529505686086450</id><published>2009-11-06T09:54:00.000-08:00</published><updated>2009-11-06T10:02:43.549-08:00</updated><title type='text'>anagrammatic morphemelogical recontextualizer</title><content type='html'>so after a little bit of work I've got my word maker creating anagrams of input words.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;you can see it &lt;a href="http://hybrid.concordia.ca/~g_bail"&gt;here&lt;/a&gt;, along with source files.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-1874529505686086450?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/1874529505686086450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/anagrammatic-morphemelogical.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1874529505686086450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1874529505686086450'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/anagrammatic-morphemelogical.html' title='anagrammatic morphemelogical recontextualizer'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7016952741879374352</id><published>2009-11-03T08:33:00.000-08:00</published><updated>2009-11-03T13:11:47.024-08:00</updated><title type='text'>DB 3.2 process</title><content type='html'>DB 3.2&lt;br /&gt;&lt;br /&gt;My starting point for DB 3.2 was physics behaviors in flash.&lt;br /&gt;&lt;br /&gt;The first thing I made was a very simple elastic behavior. I then made a small, vaguely interactive, toy which would basically make a particle with a textfield in it for each keystroke, and make the contents of that textfield the character typed. I animated the particles with the Elastic class I had made, and that was it.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SvBfQBi7jZI/AAAAAAAAAC4/8b77VszaCns/s1600-h/test1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 266px; height: 259px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SvBfQBi7jZI/AAAAAAAAAC4/8b77VszaCns/s320/test1.jpg" alt="" id="BLOGGER_PHOTO_ID_5399920682114715026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;this is all I had in class last week. Class as well as discussion with people in the class got me thinking about content as well as ways to make things more interactive as opposed to reactive.&lt;br /&gt;&lt;br /&gt;I went through a lot of different ideas about how to integrate these two concerns, and eventually settled on the idea of making new words out of the user's input words. The nonsensical always appeals to me, so I settled on the idea of generating imaginary words. I did this by making a list of greek and latin morphemes used in english; prefixes, suffixes and roots; and put them into an XML file. Flash creates words by picking a prefix, root and suffix at random and then assembling them into a word. This worked better than I thought it would, but it still has some bugs. The biggest problem is that of the occasional unpronouncable double or triple vowel, and the limited amount of prefixes and especially suffixes that have been added.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SvCE_tU2brI/AAAAAAAAAEA/78c6QjPPdJ8/s1600-h/Picture+35.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 67px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SvCE_tU2brI/AAAAAAAAAEA/78c6QjPPdJ8/s320/Picture+35.png" alt="" id="BLOGGER_PHOTO_ID_5399962183250898610" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SvCE_juEEQI/AAAAAAAAAD4/OWk8rLQRAgg/s1600-h/Picture+36.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 75px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SvCE_juEEQI/AAAAAAAAAD4/OWk8rLQRAgg/s320/Picture+36.png" alt="" id="BLOGGER_PHOTO_ID_5399962180672295170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SvCE_cLWoqI/AAAAAAAAADw/amE1fDJe3d4/s1600-h/Picture+37.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 74px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SvCE_cLWoqI/AAAAAAAAADw/amE1fDJe3d4/s320/Picture+37.png" alt="" id="BLOGGER_PHOTO_ID_5399962178647663266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SvCE_A8oLUI/AAAAAAAAADo/ARJE_eFevNg/s1600-h/Picture+38.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 100px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SvCE_A8oLUI/AAAAAAAAADo/ARJE_eFevNg/s320/Picture+38.png" alt="" id="BLOGGER_PHOTO_ID_5399962171338140994" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;with the content generation aspect mostly working I started working again on the interactive part. I used the little elasticity thing I made earlier as a jumping - off point. I liked the idea of it, but ultimately I don't think it really looked all that good. I decided to move from treating words as particles, to using individual letters, and finally to animating individual 'pixels' within the letters. I created an XML containing the x and y coords of the pixels within each letter (lowercase only so far). Each keystroke adds all the pixels for its corresponding letter to the stage, at a random position, elastically bound to its position within its parent letter. I also added more friction to the movement of the particles, which now drift into place quickly at first, but settle more slowly. I was quite happy with this effect on completion of inputting the coords for all the letters.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SvCQiFVM4pI/AAAAAAAAAEI/9PwdQIKRgVQ/s1600-h/test2.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 264px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SvCQiFVM4pI/AAAAAAAAAEI/9PwdQIKRgVQ/s320/test2.jpg" alt="" id="BLOGGER_PHOTO_ID_5399974868438278802" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;this also offered the opportunity for a little foray into the world of (extremely basic) font design&lt;br /&gt;&lt;br /&gt;here is how the whole alphabet look right after being created&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SvCEz5EbWzI/AAAAAAAAADA/sZoZbcSJ2XA/s1600-h/Picture+30.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 246px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SvCEz5EbWzI/AAAAAAAAADA/sZoZbcSJ2XA/s320/Picture+30.png" alt="" id="BLOGGER_PHOTO_ID_5399961980244810546" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and here is the second version after some extensive XML tweeking&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SvCE0GjHA2I/AAAAAAAAADI/f6a5Op6HJxw/s1600-h/Picture+31.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 246px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SvCE0GjHA2I/AAAAAAAAADI/f6a5Op6HJxw/s320/Picture+31.png" alt="" id="BLOGGER_PHOTO_ID_5399961983863161698" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;at this point I am basically happy with these two textual behaviours. They both need some polishing, but I think they're about 90% done.&lt;br /&gt;&lt;br /&gt;from here I would like to start combining these two basic functions I have created in a more interactive way. My first idea was to have the user enter some text, and then when they hit enter for the text to morph into a non-nonsensical anagram of itself.&lt;br /&gt;&lt;br /&gt;I like this idea, but I am thinking of expanding upon it. It could be interesting for example, if flash looked for possible anagrams on each keystroke, and morphed the input text at the first one found, without warning, and without the user's control.&lt;br /&gt;&lt;br /&gt;Ultimately I would also like to add more complicated, and more interactive physical behaviours to my particles as well, which I think I will do using one of the many opensource AS 3.0 physics engines available online.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7016952741879374352?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7016952741879374352/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-32-process.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7016952741879374352'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7016952741879374352'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/11/db-32-process.html' title='DB 3.2 process'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/SvBfQBi7jZI/AAAAAAAAAC4/8b77VszaCns/s72-c/test1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-2065920605640844573</id><published>2009-10-26T17:26:00.000-07:00</published><updated>2009-10-26T17:35:31.025-07:00</updated><title type='text'>reading for oct 27</title><content type='html'>decided to go analog for this one (at least in part).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I enjoyed this one a lot actually. Text taken from a passage in Peter Cho's essay&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;"the computer can work its subtle influence in this way,&lt;br /&gt;guiding the creative process by making some actions easy, others&lt;br /&gt;frustratingly difficult."&lt;/blockquote&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SuZAMxWJ_2I/AAAAAAAAACw/HuEyGrA2IwE/s1600-h/reading6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 291px; height: 400px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SuZAMxWJ_2I/AAAAAAAAACw/HuEyGrA2IwE/s400/reading6.jpg" alt="" id="BLOGGER_PHOTO_ID_5397071791598993250" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-2065920605640844573?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/2065920605640844573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/10/reading-for-oct-27.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/2065920605640844573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/2065920605640844573'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/10/reading-for-oct-27.html' title='reading for oct 27'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/SuZAMxWJ_2I/AAAAAAAAACw/HuEyGrA2IwE/s72-c/reading6.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-4301665265714950500</id><published>2009-10-26T14:50:00.000-07:00</published><updated>2009-10-26T16:50:49.391-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='DB 3'/><title type='text'>(very late) DB 3.1</title><content type='html'>the two interactive type works I chose for this DB were &lt;a href="http://metaatem.net/words/"&gt;Spell with Flickr&lt;/a&gt; and &lt;a href="http://www.typorganism.com/"&gt;Typorganism&lt;/a&gt; (which is really a collection of several interactive type toys)&lt;br /&gt;&lt;br /&gt;Spell with Flickr is a cool app I came across a few years ago, but haven't really revisited until now. Basically, it takes a piece of text you input to it (a few words long) and replaces each character with a photo of a real world instance of that letter. It looks something like this:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/SuYc28wIddI/AAAAAAAAACQ/18wy3kXfg88/s1600-h/SpellWithFlickr1.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 34px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/SuYc28wIddI/AAAAAAAAACQ/18wy3kXfg88/s320/SpellWithFlickr1.png" alt="" id="BLOGGER_PHOTO_ID_5397032933796640210" border="0" /&gt;&lt;/a&gt;The element I like most about this app is the fact that it is really just a framework for purely user-generated content, a good example of what the net is all about. As far as it being effective from a design point of view I'm not so sure. The images it creates are often interesting, and if you don't like one of the letters you get, you can click that letter to refresh it, making it possible to arrive at compositions which are somewhat harmonious. Ultimately though, the results of 'Spell with Flickr' are (almost) always very hard (or impossible) to read. As a tool to find one letter to use as an accent I think this could be very useful, but as a standalone interactive piece it is not really anything more than a fun novelty (not that there's anything wrong with that).&lt;br /&gt;&lt;br /&gt;The second piece I chose to look at, &lt;a href="http://www.typorganism.com/"&gt;Typorganism&lt;/a&gt; is, as I said above, a collection of small interactive type pieces. The part of this site I thought worked the best was actually its menu and intro, rather than any of the actual 'content' within the site. The menu looks like&lt;br /&gt;this:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_wUr3P12-1_I/SuYgvyhvaHI/AAAAAAAAACY/BsdgQ59glFU/s1600-h/Typorganism.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 215px;" src="http://3.bp.blogspot.com/_wUr3P12-1_I/SuYgvyhvaHI/AAAAAAAAACY/BsdgQ59glFU/s320/Typorganism.png" alt="" id="BLOGGER_PHOTO_ID_5397037208839350386" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Each menu item has circle in the center to which it corresponds, and these circles dart around their larger circle in a way reminiscent of micro-organisms under a microscope. I actually found this menu quite beautiful. It is very simple, very elegant and quite original as well. As a piece of design and as a piece of typography I think it is very effective. I think I would say the same for the menu as well. It looks like this:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SuYnJOldEXI/AAAAAAAAACg/fDL80KNskqA/s1600-h/typorganismMenu.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 175px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SuYnJOldEXI/AAAAAAAAACg/fDL80KNskqA/s320/typorganismMenu.png" alt="" id="BLOGGER_PHOTO_ID_5397044242937614706" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;at first all you see is a bunch of letters floating around in space, seemingly without meaning. but when you click they quickly assemble into a word, like this:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/SuYnJffmCwI/AAAAAAAAACo/ciiqJbY95Pw/s1600-h/typorganismMenu2.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 201px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/SuYnJffmCwI/AAAAAAAAACo/ciiqJbY95Pw/s320/typorganismMenu2.png" alt="" id="BLOGGER_PHOTO_ID_5397044247476439810" border="0" /&gt;&lt;/a&gt;I found this part of the site to be really effective as well. At first it is difficult to tell what is going on, the site doesn't really make any sense, but the moment you realize how the site works you feel like you've just got the punch-line to a joke. Again like the main menu of the site, the motion of the letters in space is very organic. They appear to be suspended in liquid, slowly drifting, and then when they are clicked they snap together as if under the influence of some sort of magnetic field. Another dimension is added to this effect when the user varys the speed of their mouse-clicks. With slow clicks the effect is lazy and biological, but with fast clicking, the words appear to explode and recombine constantly, producing a very different, but still good, effect.&lt;br /&gt;&lt;br /&gt;   As I said, the actual content of the site was somewhat less inspiring. The effects were not all that interesting, and in some cases the actual interactive elements of the site were not really as interactive as the menu and the&lt;br /&gt;intro.&lt;br /&gt;&lt;br /&gt;I would not wan to say that either of the pieces I talked about is better than the other, because they are so different. As a tool, 'Spell with Flickr is definitely more useful, but as a piece of design 'Typorganism' is far superior. The one thing I might say that 'Flickr' has that 'Typorganism' does not is re-playability. I can see myself visiting it many times in the future, because it is different every time, whereas 'Typorganism' does not change, once you've seen it once, you've seen everything.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-4301665265714950500?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/4301665265714950500/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/10/very-late-db-31.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/4301665265714950500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/4301665265714950500'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/10/very-late-db-31.html' title='(very late) DB 3.1'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_wUr3P12-1_I/SuYc28wIddI/AAAAAAAAACQ/18wy3kXfg88/s72-c/SpellWithFlickr1.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-5066778407763598652</id><published>2009-10-12T12:34:00.000-07:00</published><updated>2009-10-12T22:30:08.518-07:00</updated><title type='text'>DB 2.0</title><content type='html'>&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/UvH-WOlCC0M&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/UvH-WOlCC0M&amp;amp;hl=en&amp;amp;fs=1&amp;amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;The basic process I used to make this video was the following. I started by harvesting  a whole bunch of old movies, shorts and instructional films from a wonderful website called &lt;a href="http://www.archive.org/index.php"&gt;Archive.org&lt;/a&gt;.&lt;span style="font-style: italic;"&gt; &lt;/span&gt;I  imported all these movies into Premiere and selected interesting shots from them, which I cut together, trying to fit the music, but also to create some sort of flow. All of the type I used was  created in Adobe Illustrator using the fonts &lt;span style="font-style: italic;"&gt;Plasticine &lt;/span&gt;and &lt;span style="font-style: italic;"&gt;Cut it Out.&lt;/span&gt; I liked these two fonts because they are somewhat dirty and imperfect, but not overtly dark or threatening. I also felt that they echoed old film and television titles well, which I think adds a certain something to the piece. Text and video was compiled in After Effects. This was a very simple, but very time-consuming process, masking the text layers, with a little bit of feather, to reveal the foreground items I wanted shown, and applying a slight gaussian blur, to unify the appearance of type and image. There were also a few other techniques used, a bulge was put on the text in the shot with the crystal ball, and the position, scale and rotation of the text was tweened in a few shots, notably the basketball shot and the cigarette shot. All the techniques I used were really very simple, but I feel like they created an interesting effect, and I am happy with the result.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-5066778407763598652?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/5066778407763598652/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/10/db-20.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5066778407763598652'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5066778407763598652'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/10/db-20.html' title='DB 2.0'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-5645912736097514218</id><published>2009-10-07T17:44:00.000-07:00</published><updated>2009-10-07T22:24:10.918-07:00</updated><title type='text'>DB 2 very rough cut</title><content type='html'>So after uninstalling and reinstalling various components of CS4 I was able to export this from Premier Pro. Finally.&lt;br /&gt;&lt;br /&gt;this is a very rough cut, a lot of scenes still need to be fit to the frame better, and all the clips (or at least the ones after the lyrics start) have to be converted to black and white.&lt;br /&gt;&lt;br /&gt;enjoy:&lt;br /&gt;&lt;br /&gt;(hopefully)&lt;br /&gt;&lt;br /&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/huyzq0B53CY&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/huyzq0B53CY&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-5645912736097514218?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/5645912736097514218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/10/db-2-very-rough-cut.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5645912736097514218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/5645912736097514218'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/10/db-2-very-rough-cut.html' title='DB 2 very rough cut'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-6840839626981751088</id><published>2009-10-05T15:36:00.000-07:00</published><updated>2009-10-05T15:41:03.709-07:00</updated><title type='text'>Reading Oct. 6</title><content type='html'>For this week's reading I chose a sentence from &lt;span style="font-style: italic;"&gt;Ambition/Fear&lt;/span&gt; By Zuzana Licko and Rudy VanderLans;&lt;br /&gt;&lt;blockquote&gt;&lt;span class="text1"&gt;Digital data is easily modifiable and      it is difficult to draw the lines of ownership and copyrights.&lt;/span&gt;&lt;/blockquote&gt;        and here it is:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/Ssp10PdsqqI/AAAAAAAAACI/_Nasd4-RI1I/s1600-h/Digital+Data.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 300px; height: 400px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/Ssp10PdsqqI/AAAAAAAAACI/_Nasd4-RI1I/s400/Digital+Data.jpg" alt="" id="BLOGGER_PHOTO_ID_5389249444466961058" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-6840839626981751088?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/6840839626981751088/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/10/reading-oct-6.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6840839626981751088'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6840839626981751088'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/10/reading-oct-6.html' title='Reading Oct. 6'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/Ssp10PdsqqI/AAAAAAAAACI/_Nasd4-RI1I/s72-c/Digital+Data.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-6813332729843547451</id><published>2009-09-28T11:33:00.000-07:00</published><updated>2009-09-29T07:50:26.099-07:00</updated><title type='text'>DB 2.1 V 2.0</title><content type='html'>So I know I already did this section of this DB, using 'The Lion's Roar' (or whatever it was called) but I just found this video which I like a lot more, and which I plan to emulate stylistically a lot more than the other one.&lt;br /&gt;&lt;br /&gt;&lt;object width="400" height="225"&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3302330&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1"&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=3302330&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;p&gt;&lt;a href="http://vimeo.com/3302330"&gt;Flickermood 2.0&lt;/a&gt; from &lt;a href="http://vimeo.com/user412958"&gt;Sebastian Lange&lt;/a&gt; on &lt;a href="http://vimeo.com/"&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;This video struck me instantly because it does what I would like to do for my motion graphics piece, which is to use text only, but to also be almost entirely un-readable. One criticism I do have of this piece is that the treatment of the text does not really reflect the content that well (although it is hard to tell, as the content is almost completely obscured by the treatment). The text used is the poem &lt;span style="font-style: italic;"&gt;Mutability&lt;/span&gt; by Percy Bysshe Shelley which seemed to me to be about the temporal, fragile nature of life. Shelley's treatment of his subject matter is quite contemplative, which is not reflected by the fast-paced, chaotic style of the video. However, I think that this piece was made more as an exercise in style than as a kinetic, typographic interpretation of Shelley's poem. The reason I was drawn to the style of this piece is that it fits well with what I want to do in my own work. I am using the song &lt;span style="font-style: italic;"&gt;Loser&lt;/span&gt; (Beck) as the audio and text for my piece.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/dO4BrGInoRo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/dO4BrGInoRo&amp;amp;hl=en&amp;amp;fs=1&amp;amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;What I love about this song is that the words, when listened to literally, are complete gibberish, but they still create a definite mood and suggest a lot of great imagery. I think a style similar to that in &lt;span style="font-style: italic;"&gt;flickermood&lt;/span&gt; above will be very appropriate for this piece. The style will be a lot more playful, but the effect will be the same (or very similar).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I've found a few print type images in my travels that I like, and may imitate for this:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SsEMnzf-UVI/AAAAAAAAABg/uo_MnlM1N7k/s1600-h/738841251469233.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 150px; height: 200px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SsEMnzf-UVI/AAAAAAAAABg/uo_MnlM1N7k/s200/738841251469233.jpg" alt="" id="BLOGGER_PHOTO_ID_5386600507290571090" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SsEM0hknsCI/AAAAAAAAABo/1QGz0XNMou8/s1600-h/795841247041588.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 132px; height: 200px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SsEM0hknsCI/AAAAAAAAABo/1QGz0XNMou8/s200/795841247041588.png" alt="" id="BLOGGER_PHOTO_ID_5386600725816520738" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SsEM_arNM-I/AAAAAAAAABw/n-w2ZsSfpLM/s1600-h/1009661248868913.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 142px; height: 200px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SsEM_arNM-I/AAAAAAAAABw/n-w2ZsSfpLM/s200/1009661248868913.jpg" alt="" id="BLOGGER_PHOTO_ID_5386600912943657954" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SsENGFeFVKI/AAAAAAAAAB4/hC6e2dCbRZ8/s1600-h/1189641251944621.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 144px; height: 200px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SsENGFeFVKI/AAAAAAAAAB4/hC6e2dCbRZ8/s200/1189641251944621.jpg" alt="" id="BLOGGER_PHOTO_ID_5386601027510555810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SsENhO8qaqI/AAAAAAAAACA/ftK5GrPAOx4/s1600-h/1246931253532528.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 142px; height: 200px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SsENhO8qaqI/AAAAAAAAACA/ftK5GrPAOx4/s200/1246931253532528.jpg" alt="" id="BLOGGER_PHOTO_ID_5386601493911202466" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;All these images above were found on &lt;a href="http://www.typographyserved.com/"&gt;typographyserved.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-6813332729843547451?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/6813332729843547451/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/db-21-v-20.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6813332729843547451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/6813332729843547451'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/db-21-v-20.html' title='DB 2.1 V 2.0'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/SsEMnzf-UVI/AAAAAAAAABg/uo_MnlM1N7k/s72-c/738841251469233.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7011366066009289641</id><published>2009-09-26T12:32:00.000-07:00</published><updated>2009-09-26T12:39:07.649-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='typography'/><category scheme='http://www.blogger.com/atom/ns#' term='cart345'/><category scheme='http://www.blogger.com/atom/ns#' term='legibility'/><category scheme='http://www.blogger.com/atom/ns#' term='communication'/><category scheme='http://www.blogger.com/atom/ns#' term='cart 345'/><title type='text'>reading - week 3</title><content type='html'>Just a quick little something. Sort of a simplified quote from &lt;a href="http://www.ted.com/talks/david_carson_on_design.html"&gt;this,&lt;/a&gt; when&lt;br /&gt;he was talking about this:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/Sr5s0ThXi6I/AAAAAAAAABQ/KZYq-X-j9ic/s1600-h/Picture+13.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 145px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/Sr5s0ThXi6I/AAAAAAAAABQ/KZYq-X-j9ic/s200/Picture+13.png" alt="" id="BLOGGER_PHOTO_ID_5385861850230918050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;which I thought was a really sweet image.&lt;br /&gt;&lt;br /&gt;anyways, I decided to create a ligature of the two words 'Legibility' and 'Communication, and here's what I came up with:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/Sr5tOI1X1TI/AAAAAAAAABY/HOvJh6sXPaQ/s1600-h/Legibility-communication.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 143px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/Sr5tOI1X1TI/AAAAAAAAABY/HOvJh6sXPaQ/s400/Legibility-communication.jpg" alt="" id="BLOGGER_PHOTO_ID_5385862294038631730" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7011366066009289641?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7011366066009289641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/reading-week-3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7011366066009289641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7011366066009289641'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/reading-week-3.html' title='reading - week 3'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/Sr5s0ThXi6I/AAAAAAAAABQ/KZYq-X-j9ic/s72-c/Picture+13.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-9032550062429254462</id><published>2009-09-26T08:27:00.000-07:00</published><updated>2009-09-26T13:13:13.355-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://www.vidly.net/video-the-hush-sound-the-lions-roar-animation.html"&gt;&lt;object height="395" width="500"&gt;&lt;embed src="http://www.dailymotion.com/swf/5cfc1CMkFklp9hZtU" type="application/x-shockwave-flash" allowfullscreen="true" height="395" width="500"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;this is one I saw years ago, and just rediscovered. I've always thought that it was well done, and really liked its playful style. And although it's not strictly dealing with type, I also really like the little animated embellishments. I feel like it does a good job echoing the mood and tone of the lyrics as well as the music of the piece, using a nostalgic carnival motif modernized by the use of simple vector graphics and bold sans-serif type. I know it is not really cutting edge graphically or stylistically, but I think it is a solid piece of design that works well, which is what I hope to achieve in my own work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-9032550062429254462?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/9032550062429254462/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/httpwww.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/9032550062429254462'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/9032550062429254462'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/httpwww.html' title=''/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-1642796170812201062</id><published>2009-09-21T16:19:00.000-07:00</published><updated>2009-09-21T17:21:51.902-07:00</updated><title type='text'></title><content type='html'>So I spent way too much time on &lt;p&gt;&lt;a href="http://www.youtube.com/watch?v=JocSqBjh4Lg"&gt;this,&lt;/a&gt;&lt;/p&gt;but it was fun to do.&lt;br /&gt;&lt;br /&gt;Kind of poor quality because I had a hard time getting it into the right format for upload. Had to export it as a gif from flash and then convert that to avi in quicktime. yuck.&lt;br /&gt;&lt;br /&gt;the line is from the Bringhurst reading:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;/blockquote&gt;&lt;blockquote&gt;"The word form can be surgically revised, instead of rewritten, to become the word farm or firm or fort or fork or from or with a little more trouble, to become the word pineapple"&lt;br /&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-1642796170812201062?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/1642796170812201062/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/so-i-spent-bit-too-much-time-on-this.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1642796170812201062'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/1642796170812201062'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/so-i-spent-bit-too-much-time-on-this.html' title=''/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-4862028621646516471</id><published>2009-09-21T16:11:00.000-07:00</published><updated>2009-09-21T16:18:53.070-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='cart345'/><category scheme='http://www.blogger.com/atom/ns#' term='concrete poetry'/><category scheme='http://www.blogger.com/atom/ns#' term='cart 345'/><category scheme='http://www.blogger.com/atom/ns#' term='russian'/><category scheme='http://www.blogger.com/atom/ns#' term='constructivist'/><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_wUr3P12-1_I/SrgIo3vyocI/AAAAAAAAABI/eB_CgZkT1_k/s1600-h/TangoWithCows.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 398px;" src="http://4.bp.blogspot.com/_wUr3P12-1_I/SrgIo3vyocI/AAAAAAAAABI/eB_CgZkT1_k/s400/TangoWithCows.jpg" alt="" id="BLOGGER_PHOTO_ID_5384062852773618114" border="0" /&gt;&lt;/a&gt;Just throwing this one up. &lt;span style="font-style: italic;"&gt;Tango with Cows&lt;/span&gt; by Wassily Kamensky. Definitely my favorite image from the Drucker reading on concrete poetry.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-4862028621646516471?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/4862028621646516471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/just-throwing-this-one-up.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/4862028621646516471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/4862028621646516471'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/just-throwing-this-one-up.html' title=''/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_wUr3P12-1_I/SrgIo3vyocI/AAAAAAAAABI/eB_CgZkT1_k/s72-c/TangoWithCows.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-7618355293348729273</id><published>2009-09-16T10:50:00.000-07:00</published><updated>2009-09-16T11:02:05.281-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='typography'/><category scheme='http://www.blogger.com/atom/ns#' term='cart345'/><category scheme='http://www.blogger.com/atom/ns#' term='Pretty Jesus'/><category scheme='http://www.blogger.com/atom/ns#' term='monochrome'/><category scheme='http://www.blogger.com/atom/ns#' term='helvetica'/><title type='text'>Pretty Jesus</title><content type='html'>I've decided to change the poem I'm going to use for db 1.4, but I thought I'd post this little excerpt from my image for 'Pretty Jesus'. I like the way it looks, but don't feel like it fits the text.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_wUr3P12-1_I/SrEmf-lnhNI/AAAAAAAAAAc/DBafGG_FsUo/s1600-h/Pretty+Jesus.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 128px;" src="http://2.bp.blogspot.com/_wUr3P12-1_I/SrEmf-lnhNI/AAAAAAAAAAc/DBafGG_FsUo/s400/Pretty+Jesus.jpg" alt="" id="BLOGGER_PHOTO_ID_5382125360503030994" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-7618355293348729273?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/7618355293348729273/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/pretty-jesus.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7618355293348729273'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/7618355293348729273'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/pretty-jesus.html' title='Pretty Jesus'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_wUr3P12-1_I/SrEmf-lnhNI/AAAAAAAAAAc/DBafGG_FsUo/s72-c/Pretty+Jesus.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7670369293204487684.post-2311776804291987019</id><published>2009-09-15T20:28:00.000-07:00</published><updated>2009-09-15T20:42:32.453-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='typography'/><category scheme='http://www.blogger.com/atom/ns#' term='concordia'/><category scheme='http://www.blogger.com/atom/ns#' term='dimensional'/><category scheme='http://www.blogger.com/atom/ns#' term='cart 345'/><title type='text'>Twisted, folded, and pleated letterforms</title><content type='html'>So it's the start of week 2 and I'm just getting this blog started. Woops.&lt;br /&gt;&lt;br /&gt;anyway&lt;br /&gt;&lt;br /&gt;I had a lot of fun putting together this image based on a line (only part of a line really) from 'Dimensional Typography'&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_wUr3P12-1_I/SrBdU9xbHrI/AAAAAAAAAAU/UMi8Bs3yrZM/s1600-h/Reading+1.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 300px; height: 400px;" src="http://1.bp.blogspot.com/_wUr3P12-1_I/SrBdU9xbHrI/AAAAAAAAAAU/UMi8Bs3yrZM/s400/Reading+1.jpg" alt="" id="BLOGGER_PHOTO_ID_5381904169468370610" border="0" /&gt;&lt;/a&gt;I'm not totally happy with the spacing in 'folded' but I wanted the 'I' and 'L' and the three 'ED's to line up, and that was the only way to do it.&lt;br /&gt;&lt;br /&gt;More to come soon!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7670369293204487684-2311776804291987019?l=gordon345.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://gordon345.blogspot.com/feeds/2311776804291987019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://gordon345.blogspot.com/2009/09/twisted-folded-and-pleated-letterforms.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/2311776804291987019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7670369293204487684/posts/default/2311776804291987019'/><link rel='alternate' type='text/html' href='http://gordon345.blogspot.com/2009/09/twisted-folded-and-pleated-letterforms.html' title='Twisted, folded, and pleated letterforms'/><author><name>Gordon</name><uri>http://www.blogger.com/profile/02275738214973782172</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_wUr3P12-1_I/SrF65Ja4WWI/AAAAAAAAAAo/yeLVlYoRD3I/S220/Bailey,Gordon.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_wUr3P12-1_I/SrBdU9xbHrI/AAAAAAAAAAU/UMi8Bs3yrZM/s72-c/Reading+1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
