Ideas
Constructing an ideal job
by tw2113 on May.25, 2011, under Ideas
This was originally drafted in spring/summer 2010. I just never got around to posting it. The job mentioned is two employers ago.
Constructing an ideal cubicle life with things taken for granted
It is a guarantee that the majority of society will work at least one job, in their lifetime, that is far from ideal. For those less fortunate, they may never escape the cycle. It is during our time stuck in jobs we don’t enjoy too much, that we are able to reflect and determine what qualities and aspects that we’d like in a job to make it more enjoyable.
(continue reading…)Handwritten Tweets. Express more
by tw2113 on Jul.19, 2010, under Ideas
I do not know exactly when it clicked in my mind or what sparked it all, but as I was sitting at my day job, the idea of writing out tweets by hand came to me. I sat there rolling it around in my head and it came to me that people would be able to write beyond twitter’s 140 character limit with variable readability depending on clear legible writing. With the wide proliferation of cell phones containing built in cameras, as well as many photo services being tied to twitter already, there is an extremely low entry requirement for handwritten tweets.
Just a simple twitter/identica shortcode
by tw2113 on Apr.22, 2010, under Freedom, Ideas, Passions
I realized that I will likely reference many twitter people in posts and I think it is common courtesy to link to their profile so that you can go check them out if you want. However, I also want to be lazy and not have to type out their full twitter url all the time. Thus I decided that a shortcode would be nice and efficient.
With the following code,
<?php
function twitter_shortcode( $atts, $content = null ) {
return '<a href="http://twitter.com/' . $content . '" title="' . $content . '\'s Twitter Profile">' . $content . '</a>';
}
add_shortcode('twitter', 'twitter_shortcode');
?>
I can wrap a username in [twitter] [/twitter] and have it output the full link, like this (Twitter)
Edit
I have since realized that this is perfectly capable of working with identi.ca as well. For wordpress users of Identi.ca, copy/paste the following code into your functions.php file. It will work the exact same way regarding wrapping the user ID
<?php
function identica_shortcode( $atts, $content = null ) {
return '<a href="http://identi.ca/' . $content . '" title="' . $content . '\'s Identi.ca Profile">' . $content . '</a>';
}
add_shortcode('identica', 'identica_shortcode');
?>
Like so: (Identica)
Too Much free time to think and the things I come up with to work on.
by tw2113 on Apr.17, 2010, under Ideas, Web Design-Development
I have too much free time to sit and think. I will never be able to deny that with my current job as a front desk officer at a major bank. I can sit there for an entire shift and plot anything I want, in between the actual work. This time causes a lot of projects to be conceived and ideas for them to be considered. Some projects are meant to help launch myself in this crazy graphic/web design world. Others are done because, damn it, I can! Let me tell you about some of them.
(continue reading…)It’s a relaunch…sort of
by tw2113 on Nov.29, 2009, under Adventures, Ideas
I took down the website so that I could implement WordPress as my CMS, that can be claimed as done. However, I missed the ability to blog, so I downloaded a theme and re-enabled everything.
However, as I am a firm believer in manning up in your own field, and I hope that this theme is not a permanent one, and that I implement my own work in the near future. I know I certainly have ambitious and big plans for Michaelbox.net and I am still in the beginning of it all.
Anyways, now I am back in some form and hopefully you’ll hear from me a bit more often about all your favorite graphic design, web design, and free software bits.



