This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Industry | ||
---|---|---|
Accounting | ||
Airlines/Aviation | ||
Alternative Dispute Resolution | ||
Alternative Medicine | ||
Animation | ||
Apparel/Fashion | ||
Architecture/Planning | ||
Arts/Crafts | ||
Automotive |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"elementType": "labels", | |
"stylers": [ | |
{ | |
"visibility": "off" | |
} | |
] | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Content-Transfer-Encoding: quoted-printable | |
Content-Type: text/html; | |
charset=us-ascii | |
Message-Id: <CB9F44F8-11B4-481D-84C5-750FEBD33F7F> | |
Mime-Version: 1.0 (Mac OS X Mail 10.3 \(3273\)) | |
<div style="font-family: sans-serif; font-size: 13px;"> | |
<div style="display:inline-block; border-right: solid 2px #00abed;"> | |
<img src="https://en.gravatar.com/userimage/43345048/63a8b306bae1217e67c9330b86c031c5.png" style="height: 50px; border-radius: 50px; margin: 12px; border: solid 2px #00abed;"> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div style="font-family: sans-serif; font-size: 13px;"> | |
<div style="display:inline-block; border-right: solid 1px #00abed;"> | |
<img src="https://en.gravatar.com/userimage/43345048/63a8b306bae1217e67c9330b86c031c5.png" style="height: 50px; border-radius: 50px; margin: 12px;"></img> | |
</div> | |
<div style="display:inline-block; padding: 10px;"> | |
<div><b style="color: #646464;">Gabriel Lupu</b><br></div> | |
<div style="color: #646464; margin-top: 3px;">Senior Software Engineer <span style="color: #00abed;"> | </span> Web Technologies Expert</span> | |
<div style="color: #909090; margin-top: 3px;">0040-721-424-610 <span style="color: #00abed;"> | </span> Skype: lupugabriel11</span> | |
<div style="margin-top: 5px;"> | |
<a href="https://www.linkedin.com/in/lupugabriel/"><img src="http://xink.io/wp-content/themes/Xink/images/icons/color/32/linkedin_003.png" height="20"/></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Photoshop Script to Create iPhone Icons from iTunesArtwork | |
// | |
// WARNING!!! In the rare case that there are name collisions, this script will | |
// overwrite (delete perminently) files in the same folder in which the selected | |
// iTunesArtwork file is located. Therefore, to be safe, before running the | |
// script, it's best to make sure the selected iTuensArtwork file is the only | |
// file in its containing folder. | |
// | |
// Copyright (c) 2010 Matt Di Pasquale | |
// Added tweaks Copyright (c) 2012 by Josh Jones http://www.appsbynight.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Match all ocurences of data uri backgrounds in css and group them if they are dupe | |
* If background property contains both data-uri and other background properties, they are sparated | |
*/ | |
process: function(content) { | |
function getMatches(string, regex, index) { | |
index = index || 1; // default to the first capturing group | |
var matches = []; | |
var match; | |
do { |