python convert_wpt_cup.py poitiers_vfr.csv --name LFBI
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| name = "PolarCurve" | |
| license = "MIT" | |
| authors = ["Sébastien Celles <[email protected]>"] | |
| version = "0.0.1" | |
| [deps] | |
| CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" | |
| DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | |
| Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | |
| Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45" |
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
| Verifying my Blockstack ID is secured with the address 1NQUNhtmNySVkxQY6pSoe9brezGLdg5V3o https://explorer.blockstack.org/address/1NQUNhtmNySVkxQY6pSoe9brezGLdg5V3o |
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
| ,_---~~~~~----._ | |
| _,,_,*^____ _____``*g*\"*, | |
| / __/ /' ^. / \ ^@q f | |
| [ @f | @)) | | @)) l 0 _/ | |
| \`/ \~____ / __ \_____/ \ | |
| | _l__l_ I | |
| } [______] I | |
| ] | | | | | |
| ] ~ ~ | | |
| | | |
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
| import os | |
| import json | |
| import pandas as pd | |
| def main(): | |
| print("Summary omercy!") | |
| lst = [] | |
| for root, dirs, files in os.walk('.', topdown=False): | |
| for name in files: |
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
| ''' | |
| O'Meirrcy !!!! Download free ebooks from O'Reilly.w | |
| Usage: | |
| >pip install requests | |
| >pip install bs4 | |
| >mkdir omercy | |
| >cd omercy | |
| >curl ... omercy.py | |
| >python omercy.py |
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
| import click | |
| import re | |
| from collections import OrderedDict | |
| def format_email(email, name): | |
| if name is None: | |
| return "<%s>" % email | |
| else: | |
| return "%s <%s>" % (name, email) |
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
| #define led_pin 11 | |
| #define but_pin 2 | |
| class Led { | |
| public: | |
| Led(int pin, int state); | |
| void settings(); | |
| void on(); | |
| void off(); | |
| void toggle(); |