I hereby claim:
- I am vdavez on github.
- I am vdavez (https://keybase.io/vdavez) on keybase.
- I have a public key whose fingerprint is 13EF 9DA8 FD9D 098C 2FCA E038 E6EC C235 4FED 252A
To claim this, I am signing this object:
| [ | |
| { | |
| "code": 111110, | |
| "description": "Soybean Farming", | |
| "sector": { | |
| "id": 11, | |
| "description": "Agriculture, Forestry, Fishing and Hunting" | |
| }, | |
| "subsector": { | |
| "id": 111, |
| import aiohttp | |
| import asyncio | |
| import polars as pl | |
| import tempfile | |
| async def convert_csv_to_parquet(url: str, output_file: str): | |
| """ | |
| A script that rapidly streams a CSV url to a parquet file | |
| Args: |
| #!/usr/bin/env python | |
| # vim:fileencoding=utf-8 | |
| from calibre.web.feeds.recipes import BasicNewsRecipe | |
| class WPR(BasicNewsRecipe): | |
| title = 'Wisconsin Public Radio' | |
| author = 'V David Zvenyach' | |
| description = 'Daily news from the Wisconsin Public Radio' | |
| no_stylesheets = True | |
| compress_news_images = True |
| test |
| -- Handles hugo-book's `hint` shortcode and converts into a blockquote | |
| incomment = false | |
| function Para(el) | |
| if el.content[1].text == "{{<" and el.content[3].text == "hint" and el.content[7].text == ">}}"then | |
| incomment = true | |
| hint_type = el.content[5].text | |
| return pandoc.Para(pandoc.Str()) | |
| elseif el.content[1].text == "{{<" and el.content[3].text == "/hint" and el.content[5].text == ">}}" then |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Creates a d3 Sparkline | |
| * | |
| * @param {str} elem the element's id | |
| * @param {Object} data {"fips_id":float} | |
| * @param {Object} dims a dictionary with width, height, and a | |
| * margin dictionary with margin.left, margin.right, | |
| * margin.top, and margin.bottom | |
| * @param {Object} opts a dictionary with options | |
| * |
| <!-- Load d3.js --> | |
| <head> | |
| <script src="https://d3js.org/d3.v4.js"></script> | |
| </head> | |
| <body> | |
| <!-- Create a div where the graph will take place --> | |
| <div id="sparkline"></div> | |
| <script src="./sparklines.js"></script> |
| license: bsd-3-clause |