podcast
verticalslice.tv – we can rebuild her!
0As mentioned in my mini-post recently, I am currently rebuilding the verticalslice.tv website with a view to converting it into an Internet TV portal, rather than the single show, blog-style it is currently sporting.
This gives me the chance to really play with CSS, PHP and (attempt) SQL in ways that I never have before. It’s not gonna be pretty and I may still end up in a huff at not being able to get the job done >.<
During the arduous task of designing and building the new site, I will be recording a sort of comedy diary-type affair titled “We Can Rebuild Her”, where I will chronicle my hap-hazard attempts to put the site together with almost no knowledge on what I’m doing! I plan on dragging you guys into the hell-hole nightmare fun with me!
After a bunch of screaming at the monitor as if I were lost in a creative tundra, I now have the basics of a layout for the index page… it needs a few items adding to it, such as the itunes, youtube and plex (yeah, I’m going to be publishing to plex once this is off the ground) logos to the blurb under the highlights carousel and the Latest section needs filling in.
I think it’s getting there as a design, still needs a bit doing to it but it’s certainly workable as a landing page. Eventually I’ll be carving out the show pages and getting the backend working… but this will do for now. I worry at the SQL component needed for that *shudder*
To turn the layout into HTML, I have built up a map using the <DIV> tag. Doing it this way allows me to see just where I can split the page up into logical units and where I can push certain aspects into being includes. It also means I’m not staring blankly at the layout crafted in Photoshop, confused as to where I need to start.
That’s everything for this short update, as I build up the HTML it is being uploaded to http://www.verticalslice.tv/revamp and, after some tweaks to the layout, I will be recording episode one of We Can Rebuild Her… the fun has begun
Videos from the archive – Press To Continue 2
0Video number 2 in the Press To Continue series, if you want me to restart production of them just let me know @alphaxion.
Videos from the archive – Press To Continue
0I thought I’d repost some of the various videos I have created over the years. This one got me an honorable mention in the 2010 Escapist Film Festival. Still think it should have won me a contract to produce them!
A little something planned
0I have a project coming up, something I’ve been putting off for a while now – only this time I plan on producing a series of podcasts covering said project.
What am I planning? The migration of my old win2k3 AD and Exchange 2k3 server with win7 based TVPC’s to a linux based solution running as virtual machines for the servers and physical linux desktops for the media PC’s.
Win2k3 and its exchange server are getting long in the tooth, technologies are passing it by and I’m no-longer a windows only household since I added a virtual Ubuntu machine, macbook and an iphone into the mix. I’d like to be able to sync mail and calendar natively without having to bodge support into my current servers.
The hope is to end up with a server infrastructure that can be migrated between physical machines without needing to reconfigure/reinstall all the time – and to be easier to introduce future technologies or replacement services while making good use of the computing power.
As my OS of choice, I’ll be using Ubuntu server 10.0.4 LTS for the virtual machine host and guests, with VMWare server providing the virtualisation. This means I’ll have a stable server environment until 2015. For the desktops, I’ll stick with Ubuntu desktop.
So, initially, the core services I hope to produce are:
- LDAP (to replace Active Directory’s user control)
- DHCP and DNS (Because I prefer the control of running my own, plus I find consumer routers tend to lock up if you give them DHCP duties)
- Email (Zimbra to allow the syncing of mail and calendars)
- PXE OS deployment (Currently use WDS to install all my windows machines, can get rid of burning CD’s and juggling ISO’s)
- Internal Patch Management (WSUS handles updates in windows fantastically, no more grabbing them all from the net)
- Dedicated web server to migrate this very site to (Various issues with its current deployment)
I’m contemplating throwing my own voip server into the mix, however my use of Skype has dropped to near nil anyway. We’ll see how things go. Also coming under the heading of “we’ll see” would be running my own network monitoring software and a house intranet, something I keep loving the thought of but never bothering to use once I deploy one >.<
As I mentioned, this project is something I plan on recording and releasing as a video podcast since I think the subject would be interesting to others.
Keep your eyes open for future developments!
The days nemesis has been vanquished!
0This might seem a bit lame to those who actually know what they’re doing, but I have been bashing my head against the wall trying to figure out how to grab and display more than one post in a category using the archive.php file.
I’m using the archive.php file instead of creating a specific category file because I want to keep the layout the same with the least amount of editing whenever I do need to make a change. Copy pasta maybe easy, but it soon gets tiresome and is needless extra hassle.
After some frantic “help!” posts on twitter (thank you @wpbeginner for responding!) and friendfeed plus a little searching of my own, all roads seemed to lead to this page in the wordpress codex.
Specifically, this solution:
<?php
$categoryvariable=$cat; // assign the variable as current category
$query= ‘cat=’ . $categoryvariable. ‘&orderby=date&order=ASC’; //concatenate the query
query_posts($query); //run the query
?>
Now, dumping this just before the while (have_posts()) : the_post(); line, ensuring you swap out ($query) with (‘showposts=10&cat=’.$cat) will give you what you want – upto 10 posts of the category selected by the user.
Sadly, this will break the displaying of your tags, which simply won’t do! Off to the drawing board again!
My starter for ten was to try creating my own bunch of if statements to alter the query based on whether it was a category or a tag just before my while statement. No good, broke the whole page instead of just a specific functionality. Then a lightbulb flickered inside.
There’s already an if statement determining what to do based on the users actions right at the top… why don’t I just sneak them into there? I’m cutting down on additional if statements and making the code cleaner. So, I bodged together the code and got the following:
<?php if (have_posts()) : ?>
<div class=”item entry”>
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
<?php /* If this is a category archive */ if (is_category()) { ?>
<h2 class=”pagetitle”><?php single_cat_title(); ?></h2>
<?php
$categoryvariable=$cat;
$query= ‘cat=’ . $categoryvariable. ‘&orderby=date&order=ASC’;
?>
<?php query_posts(‘showposts=10&cat=’.$cat); ?>
<?php /* If this is a tag archive */ } elseif( function_exists(‘is_tag’) ) { if(is_tag()){ ?>
<h2 class=”pagetitle”>Episodes mentioning <?php single_tag_title(); ?></h2>
<?php
$tagvariable=$tag;
$query= ‘tag=’ . $tagvariable. ‘&orderby=date&order=ASC’;
?>
<?php query_posts(‘showposts=10&tag=’.$tag); ?>
Hit refresh and began testing…. it works! No breaking, no spooling out the wrong info!
Check it yourself at http://dev.verticalslice.tv by clicking on “News” on the left and playing around.
Not bad for someone who only knows basic HTML and lacks any knowledge of how wordpress functions internally. Tho, as I said, it’s still prolly lame to those who actually know what they’re doing – but I’m not them, and this was my victory
If you know of a better way of doing this or if this opens the site up to a vulnerability, please let me know in the comments.
The goggles, they do nothing!
0Well, as the dust settles on moving from Leeds to Sheffield, my attention returns to working on Vertical Slice.
Not only did I finally crank out a new episode
But I’ve also been tweaking the new website over at dev.verticalslice.tv, not to mention filling it with all of the episodes produced so far. The plan is to migrate dev into being the new www and sliding the old tumblr based one into being a blog for the podcast.
Of course this means setting up a host for it, which I’ll get round to later on.
I’ve also split off the videos into its own account on youtube, this way I’ll be able to keep vertical slice content on its own and let me continue to upload utter trash without getting in the way.
Then there is the facebook presence.
So far, it had only been a group… A poorly visited group.
So, instead I have set up a fan page and hope to keep that updated and running instead of the languishing group. Of course, I could always do with extra fans – especially when you can secure a decent URL once you hit 100 fans.
So lets see how things are… there’s the website, eventually a blog, facebook fan page, twitter account, itunes listing, youtube account, miro feed.
Anything I’ve missed?
many a movings going on
0Many apologies for no episode of Vertical Slice last week, this was due to my constantly being on a train to Sheffield and chasing round and meeting people in order to secure a new flat there.
That, and the “studio” (read: living room) also looks like this right now:
I do have a spotlight episode that I have been editing on and off as well as plans to record a quick episode outside, provided it stops bloody well raining long enough…. that, and if I can find somewhere that won’t have me drowned out by the traffic!
Date of moving into the new place is the 20th, which means I’m gonna be without the net for a week or so (will… not… cope!!!).
However, once I’m back up and running in the new place (which has better acoustics than my current locations, so it’ll mean better sound!) I should be getting right back to schedule once again.
There have, also, been a few developments behind the scene that I can’t talk about right now… but it will mean a boost to the show if I manage to pull it off.
And finally, I do have plans to move away from using tumblr as the grunt behind verticalslice.tv but development of the new site is very slow as there is only me pratting around with it right now and I have *no idea* what I’m doing in PHP!
If you want to see how things are shaping up just clicky clicky, if you feel that you can help just drop me an email and I’ll be more than happy to work with you. You’d also get a copy of the eventual template to use as you wish, as long as you’re not selling it to others.
More evolution of the show
0Well, I’ve been playing around with Garageband – side note: now I know where some of the music in my fav podcasts come from! Was flicking thru the sample loops and going “OMG, that’s blahblahblah show!” every so often >.<
Anyway, main reason for this is to solve the problem of there being very little music in my show. Though, I do have a friend of my GF making some 8bit music for me, I thought I’d fill the gap until then and give Garageband a try.
First, a little disclosure: I’m shit with music. I enjoy listening to it, but I’m totally buggered when it comes to making it – not a damn clue. Which means whatever I make out of this app will likely be pure dross.
After about a couple of hours I finally end up with a 3min track that I will be using in the “Gadget Show Live” footage episode that I’ll be uploading a little bit later today.
If you want a little sneak peek or if you even want to use it in your own shows, just grab a copy here as you’re free to use this in whatever way you want, just as long as you slip a credit to me and/or a link to this site.
Preview [audio:http://www.alphaxion.com/podcasts/random_score_1.mp3]
Major overhaul of equipment
0The money finally came in… and quickly went out as I splurged on some much needed hardware and software.
First up was the single most needed item – a real camera!
Bye bye lil’ webcam at last!
In the end, instead of the 200 to 300 quid I wanted to spend; it turned into 450 as I stumped up for a Canon HF100 flash based HD camera. What made me break the limit? A mic input! This means I’ll be spending on a tie-clip mic tomorrow and hopefully retiring my samson c03u mic from general use in the shows.
In the most recent show I used the onboard mic from the camera in order to gauge the capabilities (sucky!) which is why I’ll be looking for some mics to plug into it and didn’t sync up separate audio from my samson because of the next purchase…
A macbook and a copy of final cut express 4.
Yes, Vertical Slice has gone dirty and is no longer produced 100% on windows.
And because I had a whole new video editing app to contend with, I didn’t lump syncing audio onto my shoulders too – as it turns out, the only things to give me trouble were the differences in chroma keying and garbage matte between Premiere and Final Cut. That and a little flap about where the videos were hiding on the memory card – it wasn’t an outright video file, imovie nabbed them easily tho after Final Cut claimed there wasn’t any devices to capture from >.<
Still, the result of a brand new camera and editing platform can be seen here below… well worth it I think!
Oh, and I’ll post pictures of the latest edition uber shiny to my network. (the screen is the only thing I find annoying about this macbook!)


more vertical slice updatery
2Work on Vertical Slice continues. I have an interview with The CodeMonkeys that is in editing right now.
There is now a domain for the place, sitting on it’s own at www.verticalslice.tv. It’s still powered by tumblr until I can afford hosting of my own and figure out how to power it. In addition to the new domain, I’ve begun uploading non-coolshite branded episodes to a blip.tv account in order to take advantage of their itunes distribution, which now means the show is in the podcast directory – linkie.
This takes the strain off of my home net connection and makes it far simpler to publish the episodes, especially since the RSS feed generating app I was using has decided to randomly no longer output anything when I export to xml :S
In a little extra thing from today, Louis Gray posted something he does in response to people reposting and/or blogging about the items he posts to his sites. It’s a good idea and one that I have also decided to do as well. So, whenever someone blogs about or links to Vertical Slice I’ll pop a link to it in the bookmarks and tag it with “verticalslice”.
Of course, in setting this up it made me realise that one of the reasons why I’m not getting many viewers of the show is because no-one is telling anyone about it! Well, apart from one.. cheers Keith
This isn’t for lack of asking either, I’ve mentioned it to so many sites I’ve lost count yet the result is always the same – I’m ignored. No-one wants to pay any attention, which makes me wonder why.
The one thought I keep returning to is that the show is crap and not worth anyones time, yet this is incongruous to the general reception it gets from those that see it (unless they’re lying to me in order to protect my feelings). Maybe it’s just I’m an odious person that no-one likes… a certain possibility.
Whatever the reason is, lemmie know. It’ll make things easier for me to either determine whether I should keep doing the show or just give up and do something else.
And if you do like the show – tell people about it! Spreading it to others is the only way I’ll be able to keep making them.