Skip to content

Instantly share code, notes, and snippets.

View emadkhan's full-sized avatar

Emad Khan emadkhan

View GitHub Profile
@emadkhan
emadkhan / test.py
Created September 17, 2024 20:34
Test Hello World
print("hello world")
Contributor License Agreement ("Agreement")
This Contributor License Agreement ("Agreement") is agreed to by the party signing below ("Contributor") and the owners ("Project Owner") of the Pedigree BJJ organization, which hosts its projects at https://github.com/pedigreebjj. This Agreement governs the legal terms under which the Contributor provides contributions to any current and future repositories under the Project Owner's GitHub organization.
1. Definitions
"Contribution" refers to any source code, object code, patch, tool, sample, graphic, specification, manual, documentation, or any other material posted or submitted by Contributor to any project managed by the Project Owner.
"Submitted" means any form of electronic, verbal, or written communication sent to the Project Owner or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Project Owner for the purpose of d
package com.flextrade.simulation;
public class DaySimulation {
private static final double INITIAL_STOCK_PRICE = 100;
private final int numTransactions;
private final double volatility;
private final double marketTendency;
/**
@emadkhan
emadkhan / anagram.py
Created May 25, 2014 13:29
Anagram detection program
count_track_1 = {
'a': 0,
'b': 0,
'c': 0,
'd': 0,
'e': 0,
'f': 0,
'g': 0,
'h': 0,
'i': 0,