Skip to content

Instantly share code, notes, and snippets.

View jechague's full-sized avatar

José Echagüe jechague

View GitHub Profile
@jechague
jechague / GoogleMapsIconMarker.m
Created April 11, 2018 13:34 — forked from GuillaumeJasmin/GoogleMapsIconMarker.m
iOS GoogleMaps icon marker with image and text
// image
UIImageView *iconView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 30, 50)];
iconView.image = [UIImage imageNamed:@"my-icon-image"];
// text
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 35, 50)];
label.text = @"test";
[iconView addSubview:label];
// grab it
@jechague
jechague / Vagrat-cheatsheet-2.txt
Last active March 24, 2017 20:02 — forked from wpscholar/vagrant-cheat-sheet.md
Vagrant Cheat Sheet
https://www.cheatography.com/davbfr/cheat-sheets/vagrant-cheat-sheet/
@jechague
jechague / 0_reuse_code.js
Created November 12, 2016 15:28
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console