Skip to content

Instantly share code, notes, and snippets.

View mcne65's full-sized avatar

S M. Lingelser mcne65

View GitHub Profile
pragma solidity ^0.5.0;
contract Base {
uint public num;
address public sender;
function setNum(uint _num) public {
num = _num;
sender = msg.sender;
}
pragma solidity ^0.5.0;
contract Base {
uint public num;
address public sender;
function setNum(uint _num) public {
num = _num;
sender = msg.sender;
}
@mcne65
mcne65 / BaseCaller.sol
Created December 29, 2019 01:34 — forked from critesjosh/BaseCaller.sol
Inter-contract execution in Solidity
pragma solidity ^0.5.0;
contract Base {
uint x;
constructor() public {
x = 10;
}
@mcne65
mcne65 / BaseCaller.sol
Created December 29, 2019 01:34 — forked from critesjosh/BaseCaller.sol
Inter-contract execution in Solidity
pragma solidity ^0.5.0;
contract Base {
uint x;
constructor() public {
x = 10;
}
@mcne65
mcne65 / BaseCaller.sol
Created December 29, 2019 01:34 — forked from critesjosh/BaseCaller.sol
Inter-contract execution in Solidity
pragma solidity ^0.5.0;
contract Base {
uint x;
constructor() public {
x = 10;
}
@mcne65
mcne65 / SimpleStorage.json
Created December 28, 2019 14:08 — forked from ConsenSys-Academy/SimpleStorage.json
A Solidity SimpleStorage contract
[
{
"constant": false,
"inputs": [
{
"internalType": "uint256",
"name": "x",
"type": "uint256"
}
],
@mcne65
mcne65 / SimpleStorage.json
Created December 28, 2019 14:08 — forked from ConsenSys-Academy/SimpleStorage.json
A Solidity SimpleStorage contract
[
{
"constant": false,
"inputs": [
{
"internalType": "uint256",
"name": "x",
"type": "uint256"
}
],

[UNOFFICIAL] General Assembly Melbourne: Web Development Immersive - Additional Reading

Work in progress.

Recommended resources and links related to topics covered during my iteration of GA's Web Development Immersive.

Initially intended to be a sorted list of all the resources posted by my cohort plus some more for revision purposes but hopefully it'll be useful to anyone else interested in the field regardless of their background.

General

[UNOFFICIAL] General Assembly Melbourne: Web Development Immersive - Additional Reading

Work in progress.

Recommended resources and links related to topics covered during my iteration of GA's Web Development Immersive.

Initially intended to be a sorted list of all the resources posted by my cohort plus some more for revision purposes but hopefully it'll be useful to anyone else interested in the field regardless of their background.

General