Well I am almost finished with my commercial website development site. You can go to it @ seacloud9.com / brendonsmith.com. I will be offering a variety of services. I still need to communicate with a lawyer and have a contract created but in short I plan on offering website development skills to a few select clients. I have split my portfolio into an interactive site and a commercial site. The interactive site will be used to display some of my experimental work silverlight / flash the commercial site is clear cut and dry. I have not completed my new interactive website but I have officially deprecated my old interactive website. I will also make it a habit to publish more code examples and I will do more C#/AS3 comparisons. I find it fun to work with both languages! You can go to the interactive sites by going to seacloud9.org. This site is not currently compatible with OSX/Linux Safari. I am working on enabling to work on Apple/Linux and will do that soon. I have also been playing around with Processing it is an amazingly effective programming language to create random artistic endeavors. Here are a few random sketches.
int x = 100;
int y = 600;
int r = 80;
int n = 10;
int rs = 1200;
void setup(){
size(325, 200);
noStroke();
smooth();
noLoop();
randomSeed(rs);
}
void draw(){
background(255);
drawCircle(x,y,r,n);
}
color[] shadeTable;
void setShades(color c){
shadeTable = new color[256];
for ( int i = 0; i < 255; i++)
shadeTable [i] = color((int)(104),(int)(179),(int)(246));
}
void drawCircle(float x, float y, float radius, int num){
setShades(color(255,0,0));
float value = 126 * num / random(6.0);
for ( int i = 0; i < 255; i++){
fill (shadeTable[i], value);
}
x = random(x);
y = random(y);
ellipse(x, y, radius*2, radius*2);
if (num > 1){
num = num -1;
int branches = int(random(2,6));
for (int i = 0; i < branches; i++){
float a = random(0, TWO_PI);
float newx = random(x + cos(a) * random(100.0) * num);
float newy = y + sin(a) * random(6.0) * num;
drawCircle(newx, newy, radius/2, num);
}
}
}
I also recently picked up a book on haXe and I will be posting some haXe examples soon. My first impression of haXe is very positive I really like the idea of being able to target different platforms. I have also noticed a considerable amount of people squawking about HTML5 here are my thoughts HTML5 will be cool it will also be challenging to create websites that are crossbrowser compatible because as we know not every browser is created equally. I am all for being able too do more with Javascript and HTML5 I think it will be great. Some people have also been saying HTML5 will eliminate the RIA area of JavaFX/Silverlight/Flash although I highly doubt that. Here are some interesting links on HTML5/JavaScript:
myUniveRSS is social RSS feed reader. It takes user feeds and renders them in three dimensional space. The user also has two slide controls. The horizontal scroll bar at the bottom of the screen allows the user to spin the world axis. The vertical slider allows you to move the view forward. This shifts the user view to see the floating RSS posts in three dimensional space the user can click on a globe. When the user clicks on the globe they will move or fly through the space to the object and the objects squares up with the view window. This allows the user to read the feed post. The feed post displays a brief description of the entire post if the user wishes to read the post in it’s entirety they can click on the title and this will open the web page of the post for the user in a new browser window or tab. Users are allowed to enter or add feeds to the feed reader. When the user adds a feed this populates the users drop down menu. They input a feed and then it populates the drop down menu. Now anytime that user views their feed reader they will be able to use the menu to view their feed in this space. This application was built using Flash and Papervision3d. This application is currently in it’s alpha phase. I will have some features to add.
I am also looking at ways I can improve the readability of the text.
Trigger a loader when the user selects an item from the dropdown menu.
I will be adding a mouse following user view this will make the window easier to navigate and more natural.
I will eventually allow users to customize their feed views.
This application also needs an about section that I will put together soon.
I will also be porting this application to Wordpress in the near future.
By completing this project is only the first of what will be many. I am also developing a 3D flash wall where users will be able to display their Photos on Facebook, Flickr, and Picasa(kinda like this). I am also currently working on an Online game as well. I have also been playing around with haXe came across this and I am looking forward to creating iPhone applications with it!
Yes he is a new addition to the family. He gets along with all are pets and likes to lay around when he is not chasing Cosmo around and Cosmo looks after him to make sure he doesn’t get it in too many scuffles with the Kion(Or Kitty Lion). Chassey is a very laid back puppy that loves to cuddle all day long. We also hosted some couch surfers from Boston that are biking coast to coast on account they just graduated! Amelia and Roxana were a pleasure to host. I am looking forward too seeing their photographs of their odyssey travelog online.
Technologically agnostic and liking it. When it comes to new technologies many come and go so it can be a challenge to see which ones really take root. People love to talk about open source technology and I myself love open technology because it encourages developers like myself to play with whatever I want and experiment with it and see what kind of results I get. People can be extremely opinionated on this subject in particular and it gets to be like discussing religion or politics. In short no one really wins there are great technology offerings on both sides! I believe if you treat these opinions as religion you will lose. What is important to me? Have fun become a better programmer by experimenting with all the different stacks that are offered. You always win if you don’t really care and can honestly recognize which particular stack is well suited for the job and back it up with undeniable facts. It is also important to notice your crowd. With that being said please take it from me any opportunity you have to learn something new is always a good opportunity! Never be afraid of failure. Lately I have been working on relatively simple generative code examples and I have been working on porting these examples to Silverlight, Flash, and Processing. Why no reason it’s just fun. To be 100% honest when I saw silverlight 1 I absolutely hated it. Now I am getting a little more comfortable with it and love the fact I can use C# to program in for silverlight. This is not to say I have lost my intense love and fascination with flash and ActionScript because I never have or will. It is just the quest to learn experiment and know both technologies with confidence. I have been reading Kostas Terzidis’s book Algorithms for Visual Design and I found I love the book and what I learn in the book doesn’t just apply to Processing but all programming languages in general and it helps me to know how to problem solve relatively complex questions quickly! I have a high regard for Terzidis’s book it is an exceptional book in many ways it also happens to have a whole chapter devoted to writing image processing algorithms. I might try to port one to show you processing/hydra/c# pixel shader/pixel bender example. Anyway here is quick and dirty example of how you can use processing /silverlight/flash for mouse tracking apply it to scale, and rotate a rectangle. You will also apply a gradient programatically with processing /c#/actionscript3. This is just meant to be a ridiculously simple example. If you play with the same principles that are laid out in this example you could use it to build a rudimentary on-line drawing application. (of course in silverlight you could just use ink canvas but what is the fun in that?)
What are yahoo pipes and why should I care? Yahoo! Pipes is a web application from Yahoo! that provides a graphical user interface for building data mashups that aggregate web feeds, web pages, and other services, creating Web-based apps from various sources, and publishing those apps. The site works by letting users “pipe” information from different sources and then set up rules for how that content should be modified (e.g. filtering). A typical example is New York Times through Flickr, a pipe which takes The New York Times RSS feed and adds a photo from Flickr based on the keywords of each item. The site is currently in beta. – Wikipedia
Yahoo pipes is an excellent tool for remixing the web into the way your would prefer the web to be. You can use pipes to sort out information what kind of information? Just about anything that is out there and free. So this naturally can come in handy. For example maybe I want to find a video I can make a pipe to search multiple websites like college humor, metacafe, or youtube all at once. You could also create a pipe to find all the homes that are being foreclosed in a given area the uses are only limited to your own imagination. This information comes to the end user in a variety of formats like RSS, ATOM, or JSON. Yahoo Pipes is only one example of many MashUp tools currently available on the web. You can also create mashups from scratch using libraries like cURL etc..
In this tutorial I will show you how to create an RSS/JSON reader in both C# and actionscript 3 with Silverlight and Flex skins. Silverlight and Flash/Flex are both RIA technologies and this is a field that will be extremely useful as far as the future of web applications are concerned. These technologies allow developer to make desktop applications, mobile applications, and web applications so you can imagine how useful it truly is to be versed with utilizing these technologies. My reason for doing this tutorial is simple to have fun. One of the neat things that yahoo pipes allows you to do with Yahoo Pipes is sort the information based on criteria that is displayed on the query string so I also have one example where the user can search for a video etc.. by typing a query into the textbox and hitting search pretty easy. Both of the examples will be re-factored but all can be used with minor tweaking of the code and like I said I just wanted to have fun so you can feel free to download the exampls and do whatever you want with them. These are simple examples just to display how to use JSON w/ Yahoo Pipes. The C# code has references (using statements) that are not required. I simply haven’t had time to remove them I wanted to use Silverlight3 play with the 3D capabilities and themeing. I also need to place in a little regexp to clean up the search string that is sent to Yahoo Pipes for example a space would be %20 but hey you know I don’t want to give away everything now do I. Also the flex example will wreck if you click on too many tabs to begin with this is a known issue I plan on creating classes out of both that create the text area element and have getter and setter.
Taco ride last week was awesome perfect weather for a twenty mile bike ride. I had a blast but its not hard to when you have the perfect weather and good group of friends to go out with:) I have also been trying to take more photographs. I took a few panoramics out in California on Highway 1 and posted them to my Picasa Account I have also a huge back catalog of panoramic photographs I have taken and will soon go through. I have also been playing around with Processing and Context Free Art and I find them fun to play with. You can create some stunning work with them and they are proving to be fun tools. Context Free art is also based on C++ and it make me curious to play with the Alchemy toolkit and see if I can convert it to actionscript which would be awesome the only thing I am lacking these days is time. I could make good use out of more time. Seems to be my biggest block. I am looking forward to playing around with context free art more! You can create some cool imagery with it. It was also recently mentioned in Make Magazine.
Thoughts on Ruby on Rails. Well it is cool and it is pretty ridiculously easy to build web applications in. I have been working on a new project at work that is a complete re-write and I am very comfortable with C# so it makes it hard to want to dump that skill set and learn a new skill. I still have to code in both so that is good and sometimes I make myself create a project in a few languages to keep myself sharp. It has not been easy but I can proudly say I have taught myself a new and useful skill. I have spent an insane amount of time in the debugger but I is useful when it comes to figuring out someone else code without asking. I also feel I have hit good stride with OOP and to put it simply most of the time I can just program and I am feeling extremely confident in my skill set and at this point my only block is time itself. My favorite tool I think right now to develop Rails in is Netbeans although I also dabble with Aptana and have books on both eclipse and netbeans. Sometime I admit changing back in forth from environments can be difficult but I am getting better at adjusting to these changes! I am also comfortable now on developing with just about any opensource tool and find myself using SVN for personal projects now! I like alot of things about rails specifically how easy it is consume web services rest is built into Rails so it is easy to create and consume web services this also comes in handy when building RIA’s it is cinch to pass your information to Silverlight or Flash or whatever. ROR easily allows you to generate ATOM, RSS, and JSON in a matter of seconds so my thoughts are ROR rocks it is also easy to find resources and tools on the web need a quick code plugin? Go and look at AgileWebDevelopment.com want to check out opensource applications etc, go check out the GIT Hub. Rails is cool and easy for developers I am looking forward to creating more projects with Ruby on Rails!
Thoughts on the Flash Platform. We are at a crossroads and what you will see is the influx of web applications absolutely invading your home! What I mean to say is imagine this you go to the local grocery and because of RFID tags you have at home they will know and suggest what you may be out of and what you might like to buy? How will this happen you ask well actually it is quite simple because the store will have you history and you will have tagged items we will make your shopping simple. We will base your wants and needs off of your base settings and if they match we will up sell you based on what we would believe you would want and need probably based off of a sweet algorithm. So I don’t know if you noticed but flash or the Flash Platform is going to overcome home electronics, mobile, and gaming within the next two years! It is what we all wanted and worked for; for so many years the operating system will become more in the background trivial it will be all about the delivery and speed of small applications embedded in all sorts of places you never expected them to be in it is not far off the horizon! Adobe just sealed a deal to make the flash player avilable to every HDTV do you think that is significant? I do!
Not too mention flash is set to be a delivery platform for social network games not just on facebook but on the Wii. Nintendo has made a deal with Adobe for wiiware to support the flash player and this is also great news. I recently check coppercube out and it is proving to be an interesting application you can create flash player 9 applications or windows excuteables and it supports a wide array of 3d formats! I appears to me that someone at CopperCube must be a master at alchemy because it seems to me that this product had to use alchemy in some fashion. In all honesty I could not be more excited with where flash is headed because it is an excellent plugin that should be used on more devices and AS 3.0 is a mature language with lots of great libraries of code that make it easy to develop for!
I have been very busy for at work learning Ruby on Rails. I have even managed to create a cool facebook application using Ruby on Rails and AS3/Papervision3D feed reader I also utilized facebooker rails plugin. It is currently not open to the public but will be soon. I still have a few bugs to work out it is a little challenging when it comes to RSS/Crossdomain/XML/Flash/RubyOnRails all in one little facebook application. I have also recently ordered a book Flex on Rails! I do love the way rails handels REST and XML it is so easy to make applications that can spit out JSON and XML. With the facebook it is not exactly easy to share ones personal information (what I mean to say is their are limitations to the api and is secure and built this way on purpose to protect users) but I can see now how something like Ruby on Rails + AS3 could be used to generate some very cool social web games. I do think that the video game models of the past are limited and social networks will open new niches for social/video games that are revenue generated by advertising. When you think about most facebook applications they are relatively simple although I see more useful applications coming to social networks and I see social networks creating a webOS or webtop. I will be taking the same application and make it available for wordpress plugin as well. It is fun and challenging making facebook applications. I have also been busy working on my next portfolio which I have been working on for a considerable time. I am also releasing a commercial site aimed at getting myself some freelance contracts and jobs. In short I want to code widgets that people want for blogs, iphone/android applications, facebook and Open Social. I believe there will be a growing need for companies to place their content within other applications that people use not too mention the fact that these applications are adopted by users much more quickly than traditional applications. This is not to say that I will stop working on traditional applications. I will work on interactive web sites and branding sites for clients these web applications will be intuitive for the users to update and be primarily based off of open source stacks.
In other news I gave a presentation to the Lincoln .Net user group on Ruby on Rails it went well and I didn’t stutter too much. Although I did call esb, fsb in a slip (ha ha) In short we created a simple task list. You can find the notes and simple example application here.
I have also been looking at the new version of Silverlight3 and it does look pretty sweet they have a few pixel shaders and perspective 3D built in now. I am sure that silverlight3 will be an excellent skill to complement my C# skills. I hope the Moonlight Project can catch up to where silverlight3 is currently. I still don’t think silverlight3 will be as useful as Flex, I guess I just have a prejudice for the Flash Platform. I really love flash. I am also looking forward to Flash Catalyst a new product from adobe that will bridge Fireworks / Photoshop directly into Flex which will be great to say the least! I found a cool Netbeans plugin the Flexbean and I personally use Netbeans quite a bit on my Ubuntu box I find it extremely helpful when working with Ruby On Rails or whatever language for that matter.
Accelerated 3D Web via Khronos/Mozzilla 3D is coming to javascript which should be interesting no question about it javascript is very powerful just very frustrating to behave consistenly in multiple browsers. This should prove to be interesting and with ie8 now I wonder if ie8 will support it?
Does flash matter on mobile devices? Yes of course it does this is one feature the iPhone and Windows mobile Flash Lite is wonderful but we want the whole enchilada! Well it is coming to the Android Platform for sure! It will only be a matter of time before Silverlight follow suit. If you didn’t know Microsoft released an iPhone app PhotoSynth for those of you who don’t know photosynth connects multiple pictures of places and displays them in a kind of pseudo panoramic images that are very cool and one can’t help but think silverlight might not be far behind.
I have also purchased a book from O’Reilly Head First Design Patterns! The reason is simple not coming from an OOP background it has been challenging to teach myself OOP and now that I understand OOP it would be ideal for me to become familiar with design patterns not just MVC but multiple design patterns. I see this as helping myself out in future jobs. I will be able to look at most corporate applications and just get it (little less time dedicated to the debugger). This will help me see what their programmers are doing and know why they have programmed in the manner they have. This book also sheds lots of light on MVC that is used in many frameworks like pureMVC, CakePHP, and of course Rails. is so nice now that spring is finally here!
We are looking forward to going on Taco Ride. Well Lisa and I have decided to go back to Ireland this summer. So it should be a fun trip with lots of photos to share with you all.
I have been busy at work and in my spare time I have been working on redoing my portfolio. It is my goal to have a new version up soon and I will most likely be removing the old. Through this process I have increased my knowledge of flex and as3. I have been displaying a few alphas on my blog these will eventually all be rolled into the main application. So here is yet another alpha. I have created a Papervision3D RSS parser for Picasa. Please note on google code you can find a library for AS3 Picasa I choose not to use it because it did not suit my specific needs in this project. I found an extremely useful library of code that easily allows me to parse out MediaRSS one important thing to point out is because I used picasa not only did I have to parse out the MediaRSS but I had to use flash file reference to check when the images are loaded. Another tricky gotcha I found was the fact that Picasa will not allow you to embed pictures that are larger than 800 pixels wide in the flash player. It took me awhile to discover this the odd thing about this in particular is in FireFox it will load your images and render them but in Chrome, IE, and Safari you will see nothing. The previously mentioned MediaRSS parser will also come in handy when writing mashups that interact with youTube (also utilizes MediaRSS). I love Picasa and that is why I have chosen to create a 3D version of my Photo Albums. When you click here to see the photo album please note that I have not yet implemented a loader yet. You can scroll though the images by rolling your mouse wheel. Please be sure to keep in mind this is only an alpha.
This will eventually be incorporated into my new portfolio. So as you can see I have been very busy. I am also excited to utilize FlashCS4 I love the fact that adobe has released Pixel Bender. This will make creating filters a snap and you will be able to use them in After Effects, Photoshop, and Flash. Adobe has also been working on Flash Catalyst formerly Thermo. I am also excited to see a new application in the flash family. I believe this will enable designers to easily port their photoshop documents to Flex without having to write any code(which I am sure they will like). It will also be nice for developers because it is built to directly integrate into the Flex workflow. Another development worth mentioning is SWX has released an AS3 Version. So that completely rocks and it makes writing mashups for flash a snap:) I will be making some of these items flash components and selling them.
The future of web applications lies in the hands of rich internet application developers. The two main platforms of the future will be Adobe Flash/Flex/Air and Silverlight. This should be extremely apparent to most web developers now. Web applications have been evolving more and more to act like desktop applications. In web 2.0 we saw many applications that utilize AJAX. AJAX should be required for most if not all web applications today because people have come to expect interactions AJAX enables developers to create. The problem with AJAX lies in the fact that you have to create css, javascript, and xml and then have the browser execute it. This causes problems because different browsers execute the same code with a variety of results. The end result to the developer; well I think it was covered in Dante’s Inferno somewhere around the Ninth Circle of Hell. It isn’t a pleasant place to be making things work in multiple browsers sucks it’s very difficult it is doable but ads to your production costs. In comes our savior RIA’s why because they use plugins. Now you can actually develop an application and expect it to work in a specific manner every time you use it. Who would have thought? Adobe flash is by far the most developed RIA platform to date. Adobe has also made many strides to open source its code and share with the community. Today there are numerous tools that will allow you to build swf files.
Recently Adobe announced Alchemy they have been talking about it for years but it is now out on their labs site for download. So what is Alchemy it enables the developer to utilize any c/c++ code that is open source and automagically convert it into something more useful an SWC file that can be utilized in flash! So you can now execute the code in the Flash Player and this of course rocks. You have already seen people utilizing it and creating games with it like Doom in flash. I think is well worth looking at some of those old c/c++ projects over on sourceforge and experimenting with Alchemy.
Now to be fare they are not the only company to think of a solution like this. If you look at silverlight you will find that you can utilize the Dynamic Language Runtime(DLR) and this allows developers for the most part to pick and choose their favorite programming language and work with it like ruby, java, or php you get the idea. At first I must admit I really hated the idea of Silverlight but over the years and after studying the new release I am sold. I have been working on applications for a new version of my portfolio and I will be utilizing both Silverlight and Flash. One thing I might add about the dynamic language runtime is it is different from Alchemy. Why? The dynamic language runtime allows developers to utilize multiple languages in a project when it is done it is sent to the compiler and becomes bytecode. When you use alchemy you are using LLVM it actually converts the code into AVM2 bytecode. I would suggest reading Nicolas Cannasse’s blog it will give you a clearer perspective at what Alchemy actually is and what it means. I am anxious to see what Alchemy can do and as a result I have installed in on a virtual Ubuntu machine. One thing that is nice about the DLR is you can mix different languages into the same project you can also share the same variables across multiple languages while this may not be good for large projects and could generate unmanageable code I can see it coming in handy in a pinch. One thing I might add about silverlight is I believe that Microsoft is going to port lots of .Net to run in silverlight.
So what platform do you develop for? I say both. Everyone loves flash and flash will be on ARM devices soon. It already has Android and Windows Mobile devices. Adobe engineers will make it work! For now their seems to be no sign of Apple’s iPhone or iPodTouch devices utilizing flash which really sucks for the user but is evidently good for Steve Jobs. It seems apple is destined to make the same mistakes over and over again. What developers really want is to create something once and run it anywhere and everywhere. Silverlight will soon go mobile too and I would expect them to run into the same issues on apple devices which is a shame for the consumer I guess they will be able to sell more iTunes app this way though.
Thoughts on Alchemy it took sometime to install I had to change the default config file that Alchemy came with for Ubuntu it was looking for the syslinks for LLVM in the wrong spot in short just change the location in the config file than run it also make sure you have all your paths correct in .bashrc once you have these you should be good to go some of the information on the labs website is maybe a little difficult to interpret. I also found these links (Alchemy has arrived eventually! And Solution for nothing on Linux) and they helped solve my problems. If anyone want I can post my .bashrc and config just let me know.
Well I have been working on an RSS feed reader that is papervision3d based it is still nowhere near where I would like it to be. I have about a slew of other ideas on how to improve this project and I am just getting started that is why it is an alpha. I have a great deal of code refactoring to do so as a result I will not be sharing the code. I have thought about this project for sometime. I love papervision3d and I think out of all the as3 library’s out there for 3D code this is the weapon of choice for me. It has a so many features that it is impossible to list them all on this blog post. I have also been playing around with SWX and really looking forward to an as3 version of it. I am well aware of the flash.net Local connection library but with the latest version of the flash player and new security settings I have shied away from using it with as3 Papervision3d code. I have also been thinking about redoing this project using an earlier version of PV3D. The great white beta is awesome love it and I am not sure if my time is better spent working on an older version that may run as2 or working on improving Papervision3d itself. I have noticed it’s response to planes that are textured with dynamic text can be difficult for example if I amp up this feed reader to over 20 posts it crashes. I am looking forward to the opportunity of maybe finding some fixes for these problems myself. I discovered this issue while populating it with 40 blog posts to render at one time. The code runs an array that is populated with the xml using a for loop and push in as3 the reason why I did not combine the for loop xml and the actual creation of the posts is due to the bitmap error I am currently recieving in PV3D2. One way I could improve this code is to create an object that contains all the feed data and create a timer that slows down the actual execution of the code so that papervision3d has enough time to apply the textures to the planes. I would also like to add some special effects papervision3d allows you to wrap your displayobject3d’s with an effects layer that makes for some ridiculously cool effects. So please don’t take this as a finished product I have hear because it is not! I have also thought about creating a feed reader that has cubes with movie textures that are created to house all the text (as in all 40 posts). I could do this by dynamically creating the movies in an array of Movie Materials that are interactive this way I would not have to clog the PV3D side of the code. I may choose to go that route in the near future. It is fun to work on these projects and It helps keep my mind sharp. I throughly enjoy creating stuff and use these experiments both to help me on my new portfolio and my OOP skills in general. I find this stuff fun and exciting if you can believe that. I get a real kick out of doing something new! I will also be redoing this project in Silverlight using Kit3d. The reason for this is simple because I can. I don’t really believe in saying one technology is better than the other. I just really like to play with all technologies and want to learn something new. I guess I am technologically agnostic. I just want an end result one that can be viewed on any computer with the same result and that is usually difficult thanks to Microsoft technologies but they have been making strides to make silverlight play well on all computers and I like the ability to use C# as an option not to mention the DLR with Silverlight.
So what have I been up too? Well building a new computer for starts my AMD died and it was my Ubuntu box. Instead of going out there and purchasing a computer I have decided to put it together myself. I have 90% of the parts now. I should have it completed in the next 3 weeks. It will run Ubuntu/Vista on a dual boot 1.5 terabyte hard drive, Quad Core, 16gb RAM, in a shell that lights up and looks like HAL9000. I will also continue working on my flash experiments and polishing them I would like my new portfolio to resemble CompizFusion Ubuntu I will utilize as3 and silverlight2 to do this. I would like to create one version using Silverlight and the other in as3. I want them to be as similar as possible displaying both technologies and allowing the user to pick which version they would like to see. It is one of my more ambitious projects to date. Things at work are going well I love working on Salesgenie.com and I am fortunate to work with exceptionally bright and passionate people that I am constantly learning from! So my skills have been improving rapidly! I am also ready for winter to set in. I have a plethora of books to consume and numerous magazines piling up and begging my attention! This winter won’t all be technical jargon though I have to throw in some art and literature to be a full rounded person you know. Tomorrow at the Joslyn I am going to see Diego Rivera you know Frida’s husband and looking forward to it. On a side note I found this video on Youtube of Joshua Davis thought I was way cool really like his work!
I will also be working on improving my exceptionally simple generative art application. I have been thinking of numerous ways I can and will improve it in the near future. The feed reader in Papervision3d and the generative art application will eventually be apart of my new Portfolio once they are polished and as you can see they are both along ways from that. This stuff takes time and their never seems to be enough time in the day. Oh well I know the weather is getting cold and that gives me a good excuse to polish my work!