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 / index.html
Created April 8, 2020 18:20 — forked from gaearon/index.html
Add React in One Minute
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Add React in One Minute</title>
</head>
<body>
<h2>Add React in One Minute</h2>
<p>This page demonstrates using React with no build tooling.</p>
@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.
@danielramosbh74
danielramosbh74 / Teste - Hello World - XML - 1o Google Gadget
Created May 8, 2015 17:58
Teste - Hello World em XML - 1o. Google Gadget
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="hello world example" />
<Content type="html">
<![CDATA[
Hello, world!
]]>
</Content>
</Module>