Skip to content

Instantly share code, notes, and snippets.

View wakoliVotes's full-sized avatar
"FreeSpirit"

Votes Wakoli wakoliVotes

"FreeSpirit"
View GitHub Profile
@wakoliVotes
wakoliVotes / FibonacciSequence.py
Last active February 14, 2022 06:06
Python Function to Display Fibonacci Sequence given specific number of item counts
# Function to create Fibonacci Sequence given that the user defines number of values
# First, use the "def" keyword to define the function
def fibonacciSequence():
# Next, asking users to state the proportion or number of sequence terms to generate
numberOfTerms = int(input("Hi, enter number of terms to for the Sequence: "))
# Defining the first two terms that are mandatory
@adrianhajdin
adrianhajdin / Transactions.sol
Last active May 7, 2024 14:14
Build and Deploy a Modern Web 3.0 Blockchain App | Solidity, Smart Contracts
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract Transactions {
uint256 transactionCount;
event Transfer(address from, address receiver, uint amount, string message, uint256 timestamp, string account, string keyword);