Skip to content

Instantly share code, notes, and snippets.

@gabriellupu
gabriellupu / Industries.csv
Created June 13, 2019 12:49 — forked from mbejda/Industries.csv
Compiled list of industries.
Industry
Accounting
Airlines/Aviation
Alternative Dispute Resolution
Alternative Medicine
Animation
Apparel/Fashion
Architecture/Planning
Arts/Crafts
Automotive
@gabriellupu
gabriellupu / google_maps_style_for_print.json
Created February 7, 2018 15:00
Style for google maps, suitable for printing city map
[
{
"elementType": "labels",
"stylers": [
{
"visibility": "off"
}
]
},
{
@gabriellupu
gabriellupu / signature.mailsignature
Created October 13, 2017 13:16
OSX Mail - HTML Signature
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>
@gabriellupu
gabriellupu / mail_signature.html
Created June 13, 2017 05:18
My Email Signature
<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>
@gabriellupu
gabriellupu / Create iOS Icons.jsx
Last active January 9, 2017 03:16 — forked from twonjosh/Create iOS Icons.jsx
Photoshop Script to Create iOS Icons from a source image
// 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
@gabriellupu
gabriellupu / gist:a7e2312480ffd93b971b
Created January 21, 2015 12:33
Nodejs - dublicate background data URI in CSS - identify and group
/**
* 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 {