Skip to content

Instantly share code, notes, and snippets.

@cy-xu
cy-xu / fiboNumberList.py
Last active August 17, 2017 15:38
MAT Survey Fibonacci
def fiboNumberList(howMany):
startNumber = 1
nextNumber = 0
countNumber = 0
fiboList = []
if howMany%1 != 0 or howMany < 1:
print("Positive integer please!")
else:
while countNumber < howMany:
nextNumber = startNumber + nextNumber
@cy-xu
cy-xu / .bash_profile
Created September 21, 2017 07:55 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cy-xu
cy-xu / MAT201A Homework 2.ipynb
Created April 17, 2018 04:35
MAT-201A-Homework-2-CY-XU.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.