my name is michael ciccarelli and i'm a web designer & developer out of buffalo, ny. currently available for freelance and other opportunities.

Archive for 2010

CiaoHairSalon.com

| no comments

work

CiaoHairSalon.com is a Niagara Falls based Full-Service Hair Salon that specializes in Hair Care, Waxing and Permanent Makeup.

myrockbar.com

| no comments

work

Rock Bar is a friend of mine’s bar located in Niagara Wheatfield, NY (outside buffalo). We just wanted to provide a calendar of upcoming events, promotional material and a schedule for the live band performances. We also wanted to set up a contact form for band sign-ups.

Back to Vegas

| no comments

sidenote

A few weeks ago I posted about Moving to NYC to take on a new job and city. What I didn’t mention was an offer I got to remain in vegas a few days before leaving. The contract would pay more then the position i had waiting for me in NY but I still decided to give the job I’ve already accepted at WBR a fair chance. Fortunately for me the Vegas offer remained on the table while I tested the waters in NY.

I lasted only 2 weeks in the city, mainly because the job wasn’t what I expected at all but also because I was having no luck finding an apartment. I was really hoping to get into a team environment that would give me an outlet to learn and collaborate in real life, everyday with people that share my passion and interest in web design. It wasn’t long before I learned i was 1 or a 2 person team, and the other member was another amateur web designer around my age…a nice guy but it just all wasn’t the “team environment” I expected so I bailed.

Anyways now I’m back in Vegas, living in these sick high-rises right on the strip (panorama) per my new contract..I also got a new car. I’m happy with my decision, I would have likely regretted not taking this opportunity for the rest of my life and after the 3 years I could always try NYC again.

Moving to NYC

| 3 comments

sidenote

I’ve been living in Las Vegas about 2 years now and I can’t really complain, it’s a great city, nice weather and plenty to do. I just kind of want a change of my current lifestyle, which has become rather lazy and and unproductive. I’m going to try living in NYC where everyone is on the go and give myself some more opportunities to network with people with less distractions.

I took a Full-Time position in the web development team at WBR and continue to freelance on the side. I enjoy freelancing and the freedom it provides but all that aside it’s never been great money unless you really are willing to commit and apply yourself by putting in countless hours of work, making new clients/connections and finding as much work as you can handle.

I’m pretty excited about the position I’ll be filling at WBR. Basically the company coordinates events/conferences all over the world for many different industries. Each one of these events needs a website and each website has a a 3-stage cycle including an annual redesign. So given the amount of events they already host there should be plenty of website design work for me during my time here. I’m happy with the starting salary they offered me and the job comes with lot’s of benefits, which is something I haven’t had while freelancing.

I think all in all it’s going to be a good change, waking up each morning hoping a train into the office to work until 5 then I can leave my work at the office and not always think about work. That is what I would end up doing while freelancing, never not thinking about work or rarely not on my computer when at home. Even though I’ll still continue to work on personal projects of mine and on some freelance work I imagine it will be in a much different state of mind, since it’s just side work and not my main source of income.

The office I’ll be working out of is located on 5th Avenue right around 45th St. which is midtown east Manhattan. I’m looking for apartments in manhattan but until I find something permanent I’ll most likely take a roommate situation temporarily, because I need to get out there by next week. I’ll also be only a few hour drive away from home so it will be nice to be able to visit more with my friends/family in Niagara Falls.

Alternate Post Styling

| no comments

article

On the homepage of a WordPress site I was working on, I wanted to display the most recent post completely (not just the excerpt) while the next 9 showing the excerpt only. I also wanted to include a post image and other additional meta data for better usability and also to make the latest article stand out from the others.

My initial approach was to use the is_home() conditional tag from the WordPress Codex. Problem with this method was whenever you browsed through the previous 10 entries using the navigation links on the home page the next 10 articles would be displayed in the same manor as the first 10; The top article would show as a full post while the next 9 would show excerpt only, even tho the top article is not always the latest article published.

So what I wanted to achieve was, when a user lands on my homepage they would see the latest article’s full content and in reverse chronological order and 9 more posts showing the excerpt only. If the user clicked the navigation links (previous 10 entries) I wanted the next 10 entries to show their excerpt’s only without a full post at the top.

After thinking about it for a couple minutes there was a simple solution by adding a simple counter to my while loop and evaluating what number post (of 10) was being returned and returning 2 different results.

If the count is at 0 (1st time through the loop) and we are on the the homepage then return the_content rather then just the_excerpt:


<?php while (have_posts()) : the_post(); ?>
    <?php static $ctr = 0;
        if ($ctr == "5" && is_home()) { break; }
  else { ?>
  <div class="post">
      <h4><a href="<?php the_permalink(); ?>" title="Permalink to &quot;<?php the_title(); ?>&quot;"><?php the_title(); ?></a></h4>
      <p class="meta"><?php the_time('F jS, Y') ?> | <?php the_category(', ') ?><span class="alignright bubble"><?php comments_popup_link('0', '1', '%'); ?></span></p>
      <div class="entry">
                <?php if ($ctr == "0" && is_home() && !is_paged()) { the_content("Continue Reading..."); }  else if { ?>
          <?php the_excerpt('Read the rest of this entry &raquo;'); } ?>
            </div>
        </div>
    <?php $ctr++; } ?>
<?php endwhile; ?>

This is a very basic example of what you can do with this, you can also use this to display the number of posts to display within your loop, rather than the default “10″, but be creative and and experiment with this to make your latest WordPress post stand out from the previous entries anywhere you might be listing your posts.

Gambling Themes

| no comments

work

GamblingThemes.com is a WordPress Theme Market that I recently started as a personal project. I’ve been working with poker affiliates, and writing poker blogs for quite some time now, so I figured I’d combine the two things I spend most of my life doing and that’s thinking about poker and working in WordPress. Check out: www.gamblingthemes.com