Skip to content

Instantly share code, notes, and snippets.

View netzulo's full-sized avatar

Netzulo netzulo

View GitHub Profile
@netzulo
netzulo / Hardhat contracts Verify with custom Block Explorer (blockscout).md
Last active June 1, 2023 23:22
Custom Verify and Block Explorer with hardhat (blockscout)

Hardhat and BlockScout (verify own contracts)

Espero que este tutorial sea de ayuda para mucha gente, ya que ni la IA consiguió en su momento ayudarme, espero que le ayude a mas personas aunque sea a través de un prompt La ley es el código!

Verificar Contratos con explorador de bloques personalizado

Se describe el proceso de configurar y verificar contratos utilizando Hardhat. Se destaca el uso de un explorador de bloques personalizado para realizar la verificación de los contratos.

Prerequisitos

@netzulo
netzulo / FIX_soundcard_raspberry_pi_1_2_3_zero_usb_microphone.md
Last active July 9, 2018 20:00
FIX soundcard raspberry PI 1,2,3,zero to get working USB microphone
@netzulo
netzulo / vim commands ( Spanish ).rst
Last active May 3, 2018 10:07
Just a spanish listed actions for VIM

Borrar texto

Caracteres

Para borrar un carácter, posicionar el cursor sobre el carácter a borrar y teclear x. El comando x tambien borra el espacio ocupado por el carácter. Para borrar el carácter anterior a la posicion del cursor pulsar X.

Palabras

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
@netzulo
netzulo / doc_selenium_api_jsonwireprotocol.md
Last active July 9, 2018 20:01
Selenium Documentation for web API ( JSONWirreProtocol )

Command Summary

HTTP Method Path Summary
GET /status Query the server's current status.
POST /session Create a new session.
GET /sessions Returns a list of the currently active sessions.
GET /session/:sessionId Retrieve the capabilities of the specified session.
DELETE /session/:sessionId Delete the session.
POST /session/:sessionId/timeouts Configure the amount of time that a particular type of operation can execute for before they are aborted and a
@netzulo
netzulo / howto_change_swap_on_raspberry_pi_1_2_3_zero.md
Last active July 9, 2018 20:02
RaspberryPi [1,2,zero,3]Increment size of SWAP ram

How to change swap partition from 99mb to 1024 mb ?

  • Put OFF swap partition
sudo dphys-swapfile swapoff
  • Edit this file
@netzulo
netzulo / index.html
Created October 11, 2016 11:43
Styling HTML Checkboxes
<div>
<input type="checkbox" name="checkbox-option" id="chk-opt-1" class="hide-checkbox" value="opt1" checked>
<label for="chk-opt-1">.com</label>
<input type="checkbox" name="checkbox-option" id="chk-opt-2" class="hide-checkbox" value="opt1" checked>
<label for="chk-opt-2">.org</label>
<input type="checkbox" name="checkbox-option" id="chk-opt-3" class="hide-checkbox" value="opt3" checked>
<label for="chk-opt-3">.net</label>
@netzulo
netzulo / Bot.java
Created March 18, 2016 18:41
Selenium CUSTOM DRIVER CONTROL
package ntz.drivers;
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;