Skip to content

Instantly share code, notes, and snippets.

View osnipezzini's full-sized avatar
🏠
Working from home

Osni Pezzini Junior osnipezzini

🏠
Working from home
  • SOTech Sistemas
  • Blumenau
View GitHub Profile
@osnipezzini
osnipezzini / Converge-F670L.md
Created October 22, 2024 23:01 — forked from marfillaster/Converge-F670L.md
Converge F670L Bridge mode
  1. Go to Network - WAN - WAN Connection WAN Connection
  2. Right click Type Route dropdown select and click "Inspect" in the context menu.
    In console, run the code below:
    document.getElementById('Frm_mode').options[document.getElementById('Frm_mode').options.selectedIndex].setAttribute('value', 'BRIDGE');
    Change_mode();
    
    output2
  3. Input New Connection Name. Example: Bridge. Click Create.
@osnipezzini
osnipezzini / debootstrap-autosystem.md
Created December 17, 2019 11:18 — forked from tavinus/debootstrap-autosystem.md
Rodar Autosystem em AMD64 e ARM

Para rodar o Autosystem em sistemas não suportados.
Exemplos: Linux 64 bits, Raspberry Pi.

debootstrap em AMD64

Testado em

  • Linux Mint 18.3 x86_64

1 - Máquina Hospedeira 64 bits

Pegar pacotes

sudo apt update
@osnipezzini
osnipezzini / as_deb_install.sh
Created December 16, 2019 20:27 — forked from tavinus/as_deb_install.sh
Instalar Linx Autosystem Debian, Mint, Ubuntu (via Repo Fatux)
#!/bin/bash
####################################################################################################
##
## Instalador do pacote do Autosystem para Debian, Mint e Ubuntu
## as_deb_install.sh
##
## One-liner:
## wget 'https://gist.githubusercontent.com/tavinus/146bdce3695cae9cfec02b534c2ff30f/raw/as_deb_install.sh' && sudo chmod +x as_deb_install.sh && sudo ./as_deb_install.sh
##
@osnipezzini
osnipezzini / key-generator.py
Created February 26, 2019 04:28 — forked from howCodeORG/key-generator.py
howCode's simple key generation script in Python.
import random
class Key:
def __init__(self, key=''):
if key == '':
self.key= self.generate()
else:
self.key = key.lower()