I hereby claim:
- I am carloscarvallo on github.
- I am carlosdim (https://keybase.io/carlosdim) on keybase.
- I have a public key ASD4L1ganhZ35ycpZn8WFJ7BT7RC92qwjzH0f-96-AIiugo
To claim this, I am signing this object:
| function calculate(h, m) { | |
| let minuteDegree = m * 6; | |
| let hourDegree = h * 30 + (30 * m) / 60; | |
| return Math.abs(hourDegree - minuteDegree); | |
| } |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.7.0 <0.9.0; | |
| contract CrowdFunding { | |
| string public id; | |
| string public name; | |
| string public description; | |
| address payable public author; | |
| string public state = "Opened"; |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.7.0 <0.9.0; | |
| contract CrowdFunding { | |
| string public id; | |
| string public name; | |
| string public description; | |
| address payable public author; | |
| string public state = 'Opened'; |
| // SPDX-License-Identifier: MIT | |
| pragma solidity >=0.7.0 <0.9.0; | |
| contract Crowdfunding { | |
| uint public idNumber; | |
| bool public funded = false; | |
| address payable public wallet; | |
| string public projectName; |
I hereby claim:
To claim this, I am signing this object:
| /Users/username/CoenraadS.bracket-pair-colorizer-2-unresponsive.cpuprofile.txt | |
| { | |
| "nodes": [ | |
| { | |
| "id": 1, | |
| "callFrame": { | |
| "functionName": "(root)", | |
| "scriptId": "0", | |
| "url": "", |
| /* | |
| * Recursive script example using lodash 4.x to transform all camel case occurrences to snake case | |
| * [email protected] | |
| */ | |
| //==================================================================================================================== | |
| // script | |
| //==================================================================================================================== | |
| var regex = /([a-z])([A-Z])/g |
| (define (square x) (* x x)) | |
| (define (sum-of-squares x y) | |
| (+ (square x) (square y))) | |
| (sum-of-squares 3 4) |
| (define pi 3.14159) | |
| (define radius 10) | |
| (* pi (* radius radius)) |
| #!/bin/bash | |
| TEKOPURU_HOME=/opt/tekopuru | |
| TEKOPURU_DEB=/var/packages | |
| TEKOPURU_TMP=/tmp/tekopuru-packages | |
| if [ $# -ne 1 ]; then | |
| echo "Uso: $0 <nombre-del-paquete>" | |
| echo "Ejemplo: $0 tekopuru-eclipse-3.5" | |
| echo |