Julien Melissas

Julien Melissas


This is my blog.


I can’t promise anything, but I hope to write in here about Code, Music, Food, Cars, Life, and other stuff. Enjoy!

Navigation
CategoryCode
Featured

Code

Leaflet JS/Mapbox JS Screencast

Posted on June 30th, 2015.

Learn about some map stuff. I know I haven’t posted in a while, cause I’ve been really busy learning Ember JS! That said, I totally forgot to post this when I put it up and figured I probably should because people are actually watching it. I co-gave a talk on Leaflet.js/Mapbox.js for the WNC Web Technology Network a few...

Featured

Code

Slides from WordCamp Atlanta 2015

Posted on March 30th, 2015.

I spoke at WordCamp Atlanta 2015 on the Sage starter theme. Here are the slides.

Featured

Code

Animated “x” icon for the Bootstrap navbar-toggle

Posted on March 3rd, 2015.

There are lots of posts online about that trendy (and awesome) transition from the hamburger icon (when the menu is collapsed) to that “x” (when the mobile menu has been expanded). I'm going to show you how to do it in Bootstrap.

Featured

Code

Simple Bootstrap Shortcodes Plugin

Posted on November 22nd, 2014.

For any of you Roots developers out there, or really anyone who has a WordPress theme that uses Bootstrap 3, this little plugin that I created might be helpful.

Featured

Code

Slides from WordCamp Raleigh 2014

Posted on November 8th, 2014.

Hope you enjoyed the presentation at #wcraleigh. I covered the Roots starter theme in a talk titled "Roots: The starter theme that will make you a better developer".

Featured

Code

Setting the alt attribute from an ACF image object

Posted on August 24th, 2014.

You want to make sure your site always has an alt attribute for every single IMG tag for usability reasons, right? Yes. The answer to that question is yes. This is how to get one with ACF, without having to fill in the alt field for every single media object.

Featured

Code

No Gutter Column Trick for Bootstrap

Posted on August 7th, 2014.

Recently I had a need to have a default grid in Bootstrap, but also on the homepage I needed to have 4 boxes that butted right up against each other. I came up with a handy .no-gutters class, which has some pretty basic CSS, that you apply to your .row tag holding your columns. Regular Bootstrap version below (with kittens!): No gutters:...

Featured

Code

My slides from WordCamp Asheville 2014

Posted on June 1st, 2014.

Hey all! Hope you enjoyed my presentation at #wcavl. For those who don't know - I spoke about "Building better websites through Collaboration, Communication, and Consistency."

Featured

Code

Preparing for WordCamp

Posted on May 30th, 2014.

WordCamp is officially underway! Sitting here teaching the newbs at our PreCamp really got me thinking – this is kickass. The organizers I’ve worked with have been awesome. We did something that not only sold out, but it’s running so smooth, and we’re going to have a really good time!   My Talk…...

Featured

Code

ACF’s get_fields();

Posted on May 22nd, 2014.

Sometimes Advanced Custom Field’s get_field(); and the_field();functions are enough for pages with a few custom fields, but for pages with lots more, or with really complex custom fields (like those using a repeater or flexible image field), you’ve got to use something with a little more firepower (and organization). Let’s talk about ACF...