Skip to content

Instantly share code, notes, and snippets.

View stamatim's full-sized avatar
🚀
Creating

Stamati stamatim

🚀
Creating
  • USA
View GitHub Profile
@stamatim
stamatim / linux-dirs.md
Last active February 12, 2021 16:42
Linux directories explained

Linux File Structure - Explained

  • / - 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

A Guide To Working With Github

Created by: Stamati Morellas (morel137@umn.edu)

Created for: The RADLAB Team


Table of Contents

  1. Overview
  • Git Terminology
@stamatim
stamatim / ???.txt
Created July 16, 2020 14:57
A secret message for you to decipher ;)
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
@stamatim
stamatim / .gitignore
Created May 2, 2020 21:48
A gitignore file for a Java (Maven) project in IntelliJ IDEA and Eclipse
# Eclipse
.classpath
.project
.settings/
# Intellij
.idea/
*.iml
*.iws
/*
* 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