duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| <html> | |
| <head> | |
| <style> | |
| * { | |
| font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <table cellpadding="0" cellspacing="0" class="email-wrapper" style="padding-top:32px;background-color:#ffffff;"><tbody> |
| import numpy as np | |
| import pandas as pd | |
| from pandas_datareader import data as web | |
| from sklearn import linear_model | |
| class ScikitBacktest(object): | |
| def __init__(self,sys): | |
| self.lags = 5 | |
| self.symbol = sys | |
| self.get_data() |
| #!/usr/bin/env python | |
| # Quick script to check your Dell asset's warranty status | |
| # Just drop your service tag as parameters for the script and go. | |
| import sys | |
| import requests | |
| APIKEY = 'd676cf6e1e0ceb8fd14e8cb69acd812d' | |
| URL = 'https://api.dell.com/support/v2/assetinfo/warranty/tags.json?svctags={0}&apikey=' + APIKEY |
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| .navbar | |
| .caret | |
| .label | |
| .table | |
| .img-responsive | |
| .img-rounded | |
| .img-thumbnail | |
| .img-circle | |
| .sr-only | |
| .lead |
| echo 'kern.maxfiles=20480' | sudo tee -a /etc/sysctl.conf | |
| echo -e 'limit maxfiles 8192 20480\nlimit maxproc 1000 2000' | sudo tee -a /etc/launchd.conf | |
| echo 'ulimit -n 4096' | sudo tee -a /etc/profile |
| #!/usr/bin/env python | |
| import sys | |
| import time | |
| import signal | |
| from subprocess import Popen, PIPE | |
| dd = Popen(['dd'] + sys.argv[1:], stderr=PIPE) | |
| while dd.poll() is None: | |
| time.sleep(.3) | |
| dd.send_signal(signal.SIGUSR1) |