We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
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
status_id,created_year,created_month,created_day,text,source,favorite_count,retweet_count,is_quote,is_retweet | |
1273727067792834560,2020,6,18,"You can fool anyone but not a programmer! | |
#AI #MachineLearning #100DaysOfCode #100DaysOfMLCode #BigData #RStats #Python #coding #DataScience https://t.co/ffSahTrQhZ",Twitter Web App,0,6,FALSE,TRUE | |
1273721906181660675,2020,6,18,"Mistakes I did early on in my #DataScience career | |
🔹watching too many tutorials | |
🔹not writing enough code | |
🔹not considering the (business) value of my analysis enough |
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 3.
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
status_id,created_year,created_month,created_day,text,source,favorite_count,retweet_count,is_quote,is_retweet | |
1273727067792834560,2020,6,18,"You can fool anyone but not a programmer! | |
#AI #MachineLearning #100DaysOfCode #100DaysOfMLCode #BigData #RStats #Python #coding #DataScience https://t.co/ffSahTrQhZ",Twitter Web App,0,6,FALSE,TRUE | |
1273721906181660675,2020,6,18,"Mistakes I did early on in my #DataScience career | |
🔹watching too many tutorials | |
🔹not writing enough code | |
🔹not considering the (business) value of my analysis enough |
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
This is just a test |
The p5js.org website is a great resource. The basic documentation gives examples of all of the built-in functions: https://p5js.org/reference/
The examples section shows in-code examples of many cool concepts: https://p5js.org/examples/
The "learn" section provides some tutorials, but they still have a way to go: https://p5js.org/learn/
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
# timer prompt, add to ~/.bashrc (tested in bash only thus far) | |
function timer_start { | |
timer=${timer:-$SECONDS} | |
} | |
function timer_stop { | |
i=$(($SECONDS - $timer)) | |
((sec=i%60, i/=60, min=i%60, hrs=i/60)) | |
timer_show=$(printf "%d:%02d:%02d" $hrs $min $sec) | |
unset timer |
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 python | |
from Tkinter import * | |
import tkFileDialog | |
class MyGUI: | |
def __init__(self): | |
## Make the main window | |
self.root_window = Tk() | |
## Add a button to the main window and "grid" it |
NewerOlder