feed   myspace   facebook   last.fm   send an email   twitter   tumblr   send a message via aim to graykicksass

Posts tagged ‘framework’

First monday to ever feel like friday.

Yes, today in Seattle felt like Friday.

Warm good weather, bus didn’t smell like shit. Cool stuff mann!

Something ontopic of this blog:

I’ve converted my framework to something based on MVC (yehno, model, viewer, controller), at the moment, it’s all custom written. Goodstuff.

TapShirt — What’s done

TapShirt.org now has a domain, is setup with hosting / store structure.

Newest core framework is installed on it, but we still need a layout :/. Building shirt search engine / product aggregator work is really just starting. Listing products will probably take a couple days to do, then there’s product display, shopping cart, etc. So lots of work to be done on it.

Interested in joining the small team working on it? Drop me a line at graham.stachowiak (at) gmail.com .

Updates on TapShirt, imgBox and Axcid!

Well, some people may think I am starting a lot of projects. But the good news is I have people to help and the more projects the better the chance a couple will turn up the cash flow! As for TapShirt, a layout design is in the works. The EGO Framework is being created to drive these sites and work will go full steam ahead on that when new laptop arrives. imgBox will be completely rewritten using the EGO Framework.

Axcid Updates deserve a second paragraph, as that’s a big project. After some refinement to the Mac version of the software & the Windows version we will be slowly proceeding into public release of our Lite version. Beginning marketing plans, and completion of the full version of the software, ‘Axcid – Social Music Sharing’.

Very basic php server..

But it works, unlike a lot I’ve seen, I wrote up a basic client for it:

http://graymatter.hostkiwi.co.uk/php-client/

and you can register at: http://graymatter.hostkiwi.co.uk/php_framework/testsite/register.php
It checks if it’s up on the client page :p.  This was all coded between like, 2:50 this morning and now so don’t expect a ton. Might release server source later on imcedev or something..

The ego framework.

There’s a long story behind this and in the coming days, all will be explained.

But I now present to you the code of a page using the ego framework, when we get it all finished properly it will be awesome:

The internet before ego:
<html>
<head>
<title>The ugly page</title>
</head>
<body>
<h1>The Ugly Page</h1><br />
<div id="bla">This page sucks, loads links normally, and doesn't come out of the browser looking good. Why would a market-demographic like a teenager or somebody want to look at this page? Unless your a coder and it's full of awesome content, you don't.</div>
</body>
</html>

The internet after ego:
<?php
    include('ego_framework.php');
    $ego = new ego();
    $ego->__init();
?>
<html>
<head>
<title>The new hot page</title>
</head>
<body>
<?php echo $ego->WriteHeadBar(); ?>
<h1>The HOT Page</h1><br />
<div id="bla">This page doesn't suck because it used the 'Ego' framework, it looks nice and is auto stylized with the 'ego' template. And don't worry about CSS classes ego's JS system will take care of that.<a href="two.php" type="ajax">Click here</a></div>
<?php echo $ego->WriteFooterBar(); ?>
<div id="extra-footer">And here ego's JS system will automatically stylize this bit. For copyrights and shit</div>
</body>
</html>
two.php:
<div id="bla">This content will be dynamically loaded and replaced! All with a simple link</div>

It’s awesome, make pages look good and enter a network of sites. And use OpenLogin’s existing framework(<< secret) at the same time. Cool.

More news on this and it’s big parent project in a couple days. Expect blog about sushi later.