Skip to content

Instantly share code, notes, and snippets.

View Arquetipo28's full-sized avatar
🤓
Working

German Reynaga Araiza Arquetipo28

🤓
Working
View GitHub Profile
<!DOCTYPE html lang="es">
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Side Burguer Menu</title>
<!-- We are importing our principal CSS file from assets directory -->
<link rel="stylesheet" href="assets/main.css">
<!-- This lines import external resources (JQUERY and FONT-AWESOME) -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
@Arquetipo28
Arquetipo28 / main.css
Created October 9, 2019 08:16
side-burguer-menu
body {
overflow: hidden;
margin: 0;
}
.side-menu {
position: absolute;
top: 0;
bottom: 0;
left: -300px;
const puppeteer = require('puppeteer');
async function posts () {
const browser = await puppeteer.launch({ headless: true });
const page = await browser.newPage();
await page.goto('https://www.milenio.com/ultima-hora');
await page.waitForSelector("[class='content']");
let wallData = await page.evaluate(e => {
window.scrollTo(0, 500);
// Get all containers with the class equal to lr-row-news and create an array from them
@Arquetipo28
Arquetipo28 / picking_destinations_test.csv
Created May 20, 2022 17:37
picking_destinations_test.csv
name warehouse_id
A 1
B 2
C 3
D 4
@Arquetipo28
Arquetipo28 / index.html
Last active December 21, 2022 19:42
Qrvey Configuration
<!DOCTYPE htlm>
<html lang="en">
<body>
<qrvey-end-user settings="EUsetting"></qrvey-end-user>
<script type="text/javascript" src="https://d2be0q12jo392d.cloudfront.net/widgets-launcher/app.js"></script>
<script src="https://cdn.qrvey.com/end-user-run/runEndUser_v4.js"></script>
</body>
</html>