This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Arch Linux Mirror - Teknopark Istanbul</title> | |
| <style> | |
| body { | |
| font-family: 'Roboto', Arial, sans-serif; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import tkinter as tk | |
| from tkinter import simpledialog | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from matplotlib.widgets import Button, TextBox | |
| import argparse | |
| def simulate(rows, balls): | |
| return np.random.binomial(rows, 0.5, balls) |
OlderNewer