Skip to content

Instantly share code, notes, and snippets.

View jesusmartinoza's full-sized avatar
🕺
Working

Jesús Alberto Martínez Mendoza jesusmartinoza

🕺
Working
View GitHub Profile
@jesusmartinoza
jesusmartinoza / scrapper.py
Created October 17, 2019 05:06
Simple Web Scrapper using Selenium and Beautiful Soup. Example, download Pokemon sprites
from selenium import webdriver
from bs4 import BeautifulSoup
import urllib.request
import os
import requests
driver = webdriver.Chrome("./chromedriver")
# Set the URL you want to webscrap from
# Example website with tons of Pokemon Sprites
@jesusmartinoza
jesusmartinoza / MPI. Sigma
Created March 26, 2018 20:12
Sum of every element of an array using MPI
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#include "mpi.h"
#define N 100
void generateNumbers(int* arr);
@jesusmartinoza
jesusmartinoza / RubberPage.ux
Last active December 4, 2017 21:23
Fusetools rubber band image scrolling
<Panel>
<ScrollView>
<ScrollingAnimation From="0" To="-1000">
<Scale Target="contentImage" Factor="4" />
</ScrollingAnimation>
<Panel>
<StackPanel Margin="0,250,0,0" Padding="0,30,0,0" Background="#EFF0F1">
<!-- CONTENT HERE -->
</StackPanel>
</Panel>