I hereby claim:
- I am jlcs-es on github.
- I am joseluiscanovas (https://keybase.io/joseluiscanovas) on keybase.
- I have a public key ASAujz695vOHg6_rvBJ3LTSud-YvRZk2n1n0bcf2ofnu5wo
To claim this, I am signing this object:
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.8.0 <0.9.0; | |
contract Ownable { | |
address owner; | |
constructor() { | |
owner = msg.sender; | |
} |
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.8.0 <0.9.0; | |
contract Ownable { | |
address payable owner; | |
constructor() { | |
owner = payable(msg.sender); | |
} |
const EuroTokenizado = artifacts.require("EuroTokenizado"); | |
const RegistroTrafico = artifacts.require("RegistroTrafico") | |
const Concesionario = artifacts.require("Concesionario") | |
module.exports = async function(deployer, network, accounts) { | |
const euro = accounts[0]; | |
const trafico = accounts[1]; | |
const concesionario = accounts[2]; | |
await deployer.deploy(EuroTokenizado, {from: euro}); |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.4; | |
contract Auction { | |
address payable public winner; | |
uint public mostSent; | |
/// The amount of Ether sent was not higher than | |
/// the currently highest amount. | |
error NotEnoughEther(); |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"crypto/hmac" | |
"crypto/sha256" | |
"encoding/base64" | |
"fmt" | |
"golang.org/x/crypto/scrypt" | |
"math/rand" | |
"os" |
#!/bin/bash | |
# Generate a CA root certificate | |
## $1: Subject Name, e.g. C=BE,O=GlobalSign,OU=Root CA,CN=GlobalSign Root CA | |
## $2 [optional]: PathLen, default: 1 | |
generate_CA_certificate() { | |
# gen key | |
openssl ecparam -name prime256v1 -genkey -out private-key.pem -noout | |
# req |
docker run -ti --rm --name bioperl -v ~/bioperl:/home/bioperl -w /home/bioperl bioperl/bioperl bash -c "\ | |
adduser --disabled-password --gecos '' bioperl --no-create-home --home /home/bioperl &&\ | |
adduser bioperl sudo &&\ | |
chown -R bioperl:bioperl /home/bioperl &&\ | |
echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers &&\ | |
su -m bioperl -c bash" |