Skip to content

Instantly share code, notes, and snippets.

View theowlsden's full-sized avatar
🤓

Shaquil Maria theowlsden

🤓
  • Curaçao
View GitHub Profile

Commands

Commands Description
$ cd <directory> change directory
$ ls list items of current directory
$ clear clean terminal window
$ pwd show working directory
$ touch <file-name> create new file
$ cp <file-name> <Directory>/<file-name> copy file to a directory
$ mv move file to a directory
@theowlsden
theowlsden / project-proposal-template.md
Last active June 2, 2021 14:22 — forked from technoglot/project-proposal-template.md
Project proposal template that you can use to write a concise project proposal and keep your ideas documented and organised.

Project Proposal Template/Boilerplate

Project Name/Title

Name of the project.

Date 

Date and time of creation.

Last Updated On

Date and time when the document was last updated.

@theowlsden
theowlsden / Annonymous.sol
Created May 18, 2019 00:08
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.7+commit.6da8b019.js&optimize=false&gist=
pragma solidity ^0.5.7;
contract Hashit{
string public password;
bytes32 public hashedpassword;
function hashItforMe(string memory _password) public{
password = _password;
hashedpassword = sha256(bytes(_password));
}
}
pragma solidity ^0.5.7;

contract Randomness{
    mapping(uint => ticket) public tickets;
    
    struct ticket{
        uint id;
        address buyer;
 bytes32 hashed;

Basic Commands --

Configure Git

$ git config --global user.name 'username'
$ git config --global user.email 'email'

Create Repository

@theowlsden
theowlsden / markdown.md
Last active May 8, 2019 18:05
Markdown Cheat Sheet

Syntax

-Headings

heading 1

heading 2

heading 3

heading 4

heading 5
heading 6