Skip to content

Instantly share code, notes, and snippets.

View danielramosbh74's full-sized avatar
✔️
"Persistence is the path to success". Charles Chaplin

Daniel Ramos de Carvalho danielramosbh74

✔️
"Persistence is the path to success". Charles Chaplin
View GitHub Profile
@danielramosbh74
danielramosbh74 / mmc.js
Created February 27, 2024 19:18 — forked from rhogeranacleto/mmc.js
Calculo de Mínimo Múltiplo Comum em Javascript / Calculation of Common Minimum in Javascript
function divisibleAll(numbers, multiple) {
for (let i = 0; i < numbers.length; i++) {
if (multiple % numbers[i] !== 0) {
return false;
}
}
@danielramosbh74
danielramosbh74 / safesign.md
Created December 18, 2018 13:54 — forked from jonasmalacofilho/safesign.md
Instalando o SafeSign Crypto USB Token no Firefox/Linux

Instalando o SafeSign Crypto USB Token no Firefox/Linux

Hardware: Giesecke & Devrient SafeSign Crypto USB Token

Sistema operacional: Ubuntu 14.04 LTS AMD 64

  1. Dependências: libccid, pcscd e libpcsclite1. Adicionalmente, é interessante instalar o pacote pcsc-tools e executar pcsc_scan para verificar a visibilidade do token.