Skip to content

Instantly share code, notes, and snippets.

View YerlinMatu's full-sized avatar
:atom:
Focusing

Yerlin Matu YerlinMatu

:atom:
Focusing
View GitHub Profile
@YerlinMatu
YerlinMatu / gaqlbp.markdown
Last active May 12, 2019 21:10
Pattern Strategy
async function addUser(){
let userData = {
name: "Andres 2",
lastName: "Sanabria",
birthdate: firebase.firestore.FieldValue.serverTimestamp(),
email: "email@gmail.com",
profession: "UX/UI Designer"
}
let newDocID = await firebase.firestore().collection("users").add(userData).then(doc => doc.id);
@YerlinMatu
YerlinMatu / index.html
Created February 9, 2019 23:59
TablePDF
<table id="my-table"><!-- ... --></table>
<script src="jspdf.min.js"></script>
<script src="jspdf.plugin.autotable.min.js"></script>
@YerlinMatu
YerlinMatu / index.html
Created January 7, 2019 20:54
Uber point
<div class="dot-wrapper">
<div class="dot"></div>
<div class="dot-bubble"></div>
</div>
<div id="map"></div>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script>
<script type="text/javascript">
@YerlinMatu
YerlinMatu / index.html
Created December 18, 2018 15:29
Select with Arrow
<select name="" id="" class="storefront-select">
<option value="Test">Test</option>
</select>