/
- root directory/home
- user home directory ( ~/ )/bin
- essential binaries for the operating system (ls, vi, cd, etc.)/sbin
- essential binaries for sudo user (mount, mkswap, deluser/lib
- shared code between binaries/usr
/local
/bin
- locally compiled binaries
Created by: Stamati Morellas (morel137@umn.edu)
Created for: The RADLAB Team
- Overview
- Git Terminology
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
01001001 00100111 01101101 00100000 01100111 01101100 01100001 01100100 00100000 01111001 01101111 01110101 00100000 01110111 01100101 01110010 01100101 00100000 01100001 01100010 01101100 01100101 00100000 01110100 01101111 00100000 01100100 01100101 01100011 01101001 01110000 01101000 01100101 01110010 00100000 01110100 01101000 01101001 01110011 00100000 00111011 00101001 01001001 01100110 00100000 01111001 01101111 01110101 00100111 01110010 01100101 00100000 01110010 01100101 01100001 01100100 01101001 01101110 01100111 00100000 01110100 01101000 01101001 01110011 00101100 00100000 01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01101000 01100001 01110110 01100101 00100000 01100001 00100000 01100111 01110010 01100101 01100001 01110100 00100000 01100100 01100001 01111001 00100000 00111010 00101001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Eclipse | |
.classpath | |
.project | |
.settings/ | |
# Intellij | |
.idea/ | |
*.iml | |
*.iws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Basic smart contract layout using Ethereum's Solidity | |
*/ | |
pragma solidity ^0.4.0; // instructions for compiler on how to treat source code | |
contract Storage { | |
uint data; // 256-bit unsigned int state variable | |
function set(uint x) public { // modify value of state variable |