Skip to content

Instantly share code, notes, and snippets.

View saulofilho's full-sized avatar
🦕
learning...

Saulo Filho saulofilho

🦕
learning...
View GitHub Profile
@saulofilho
saulofilho / consolelogshopify.html
Last active June 1, 2022 18:11
Console.log(Shopify)
<script>console.log({{ product | json }});</script>
@saulofilho
saulofilho / MD_EXAMPLE.md
Last active December 7, 2021 17:35
Markdown Example

Markdown Example based on Dillinger

The Last Markdown Editor, Ever

N|Solid

Build Status

Dillinger is a cloud-enabled, mobile-ready, offline-storage compatible, AngularJS-powered HTML5 Markdown editor.

@saulofilho
saulofilho / scrapper.js
Created February 9, 2021 10:58
Scrapper with Puppeteer, NodeJS and MongoDB
const puppeteer = require('puppeteer');
const Product = require('./../app/models/Product');
const scrapper = () => {
(async () => {
const extractData = async () => {
const url = 'https://world.openfoodfacts.org/';
const page = await browser.newPage();