Skip to content

Instantly share code, notes, and snippets.

View Villelmo's full-sized avatar
🛰️
Orbiting

William Torrez Villelmo

🛰️
Orbiting
View GitHub Profile
@Villelmo
Villelmo / Facebook.html
Last active March 20, 2022 02:32
Facebook profile
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<html id="facebook" class="_9dls __fb-dark-mode" dir="ltr" lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><link data-default-icon="https://static.xx.fbcdn.net/rsrc.php/yD/r/d4ZIVX-5C-b.ico" data-badged-icon="https://static.xx.fbcdn.net/rsrc.php/ye/r/Ta8_J_nYekI.ico" rel="shortcut icon" href="https://static.xx.fbcdn.net/rsrc.php/yD/r/d4ZIVX-5C-b.ico"><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=2,shrink-to-fit=no"><link rel="manifest" id="MANIFEST_LINK" href="https://www.facebook.com/data/manifest/" crossorigin="use-credentials"><meta name="color-scheme" content="dark"><meta name="theme-color" content="#242526"><style nonce="">:root{--fds-black:#000000;--fds-black-alpha-05:rgba(0, 0, 0, 0.05);--fds-black-alpha-10:rgba(0, 0, 0, 0.1);--fds-black-alpha-15:rgba(0, 0, 0, 0.15);--fds-black-alpha-20:rgba(0, 0, 0, 0.2);--fds-black-alpha-30:rgba(0, 0, 0, 0.3);--fds-black-alpha-40:rgba(0, 0, 0, 0.4);--fds-black-alpha-50:rgba(0, 0, 0,
@Villelmo
Villelmo / revenus disponibles france metropolitaine - deciles.ipynb
Created March 19, 2022 13:33 — forked from adipasquale/revenus disponibles france metropolitaine - deciles.ipynb
iPython Notebook revenus disponibles France Métropolitaine - deciles
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Villelmo
Villelmo / adjacentElements.c
Last active March 15, 2018 00:36
Given an array of integers, find the pair of adjacent elements that has the largest product and return that product.
// Definition for arrays:
//typedef struct arr_integer{
// int size;
// int arr*;
// } inputArray;
// arr_##name alloc_arr_##name(int len) {
// arr_##name a = {len, len > 0 ? malloc(sizeof(type) * len) : NULL};
// return a;
// }