I hereby claim:
- I am sulejman on github.
- I am sulejman (https://keybase.io/sulejman) on keybase.
- I have a public key ASB5zRA2BewkkzwEBo897AVuPRAFfEvfnMzkFt0SaEogdAo
To claim this, I am signing this object:
doAllYear <- function(weather){ | |
for (i in 1:12 ){ | |
month <- getDataForMonth(weather, i) | |
krigeAndPlot(month) | |
} | |
print("JOB DONE") | |
} |
pragma solidity ^0.4.11; | |
/// @title Voting with delegation. | |
contract Ballot { | |
struct Voter { | |
uint weight; // weight is accumulated by delegation | |
bool voted; // if true, that person already voted | |
address delegate; // person delegated to | |
uint vote; // index of the voted proposal |
#!/bin/sh | |
sudo apt-get install git -y | |
sudo add-apt-repository -y ppa:ethereum/ethereum | |
sudo apt-get update | |
sudo apt-get install ethereum -y | |
sudo apt-get install nodejs -y | |
sudo apt-get install npm -y | |
sudo npm install -g n | |
sudo n latest |
0x687A3e732D5e3cA30A268f47Cc63657fD243109d |
I hereby claim:
To claim this, I am signing this object:
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.4.22 <0.9.0; | |
library console { | |
address constant CONSOLE_ADDRESS = | |
0x000000000000000000636F6e736F6c652e6c6f67; | |
function _sendLogPayloadImplementation(bytes memory payload) internal view { | |
address consoleAddress = CONSOLE_ADDRESS; | |
/// @solidity memory-safe-assembly |