This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name MercadoLibre: Comparar precios de mis compras | |
// @namespace mercadolibre-precios-de-mis-compras | |
// @version 1.5.1 | |
// @description In the MercadoLibre purchases list, display the price when the product was purchased and the current price. | |
// @author Martín Gaítan and ChatGPT | |
// @match https://myaccount.mercadolibre.com.ar/my_purchases/list* | |
// @grant GM_xmlhttpRequest | |
// @connect mercadolibre.com.ar | |
// @connect mercadoshops.com.ar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tested with nixos-minimal-18.03pre130932.cc4677c36ee-x86_64-linux.iso | |
# Manually mounted /mnt (NixOS root), /mnt/boot (mkfs.ext4 Grub partition), /mnt/boot/efi (mkfs.vfat for EFI boot vars) | |
[root@nixos:~]# cat /mnt/etc/nixos/hardware-configuration.nix | |
# Do not modify this file! It was generated by ‘nixos-generate-config’ | |
# and may be overwritten by future invocations. Please make changes | |
# to /etc/nixos/configuration.nix instead. | |
{ config, lib, pkgs, ... }: | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |