I am currently working on a document using the deedy-resume template
http://www.latextemplates.com/template/deedy-resume-cv
in LaTeX and I have two issues which result in a dilemma and I can't resolve it.
I am using the package fontawesome to embed icons within text and pgfplots to create charts.
Issue #1:
When I complile the document with XeLaTeX, the scaling of the fontawesome icons differs between viewers (Adobe Reader, Evince, etc.)

Solution: Use LuaLaTeX - no scaling probelms
Issue #2:
When I compile the document with LuaLaTeX the paremeter
x axis line style={opacity=0},
to hide margin lines but keep axis labels is ineffective within the tikzpicture - axis enviroment. It works fine with XeLaTeX, though.

Relevant LaTeX snippets:
\documentclass[lettera4paper]{deedy-resume}
\usepackage{fontspec}
\usepackage{fontawesome}
\usepackage{pgfplots}
\begin{document}
\section{Icons}
\begin{tabular}{lll}
\faSmile{} Smile :) & \faHospital{} Hospital & plain text
\end{tabular}
\section{Bar chart}
\definecolor{color1}{HTML}{666666}
\begin{tikzpicture}
\begin{axis}[
xbar,
x axis line style={opacity=0},
enlargelimits=0.1,
major tick style={draw=none},
legend style={draw=none},
xmin=0,
symbolic x coords={0,1,2,3,4,5,6},
symbolic y coords={A,B,C,D,E,F},
xtick={0,1,2,3,4,5,6},
ytick={A,B,C,D,E,F},
bar width=0.7em,
xmajorgrids,
major grid style=white,
axis on top,
cycle list={fill=color1, draw=none},
]
\addplot coordinates {(6,A) (5,B) (3,C) (4,D) (3,E) (1,F)};
\end{axis}
\end{tikzpicture}
\end{document}



x axis line style={linewidth=0pt}orx axis line style=={white}etc. – Apr 21 '15 at 14:50x axis line style={linewidth=0pt}andx axis line style=={white}won't work for me because of the deedy-resume template. – Patryk Apr 22 '15 at 12:29