This text is italic
This file contains 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
<?php | |
/** | |
* GravityView doesn't trigger the `gform_after_submission` action when editing entries. This does that, | |
* but ONLY FOR FORM #20. | |
* | |
* @param array $form | |
* @param int $entry_id ID of the entry being updated | |
* @param GravityView_Edit_Entry_Render $object | |
* |
address: Microsoft Chicago offices 200 E. Randolph Chicago, IL 60601
- Create repo from template: https://github.com/github/codespaces-nextjs
- Grab openai apikey: https://platform.openai.com/overview
- Install dependencies:
npm i express openai dotenv @material-ui/core @material-ui/icons
- install dev dependencies:
This file contains 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 csv | |
with open('ruby-study-guide.tsv', 'r') as tsvfile: | |
reader = csv.reader(tsvfile, delimiter='\t') | |
with open('ruby-study-guide.csv', 'w') as csvfile: | |
writer = csv.writer(csvfile) | |
for row in reader: | |
writer.writerow(row) |