Merge pull request #3 from olinpin/jack-testing
Added Tweet_Structure resource and made changes to code.js
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
sports1.txt
|
sports1.txt
|
||||||
*/__pycache__/*
|
*/__pycache__/*
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
.vs
|
||||||
|
|||||||
3
.vs/ProjectSettings.json
Normal file
3
.vs/ProjectSettings.json
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"CurrentProjectSetting": null
|
||||||
|
}
|
||||||
8
.vs/VSWorkspaceState.json
Normal file
8
.vs/VSWorkspaceState.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"ExpandedNodes": [
|
||||||
|
"",
|
||||||
|
"\\dashboard_static"
|
||||||
|
],
|
||||||
|
"SelectedNode": "\\devjan.py",
|
||||||
|
"PreviewInSolutionExplorer": false
|
||||||
|
}
|
||||||
BIN
.vs/slnx.sqlite
Normal file
BIN
.vs/slnx.sqlite
Normal file
Binary file not shown.
1025
.vs/twitter-project/config/applicationhost.config
Normal file
1025
.vs/twitter-project/config/applicationhost.config
Normal file
File diff suppressed because it is too large
Load Diff
BIN
.vs/twitter-project/v16/.suo
Normal file
BIN
.vs/twitter-project/v16/.suo
Normal file
Binary file not shown.
BIN
__pycache__/dashboard.cpython-310.pyc
Normal file
BIN
__pycache__/dashboard.cpython-310.pyc
Normal file
Binary file not shown.
@@ -20,4 +20,10 @@ $(".sport").on("click", function() {
|
|||||||
|
|
||||||
function getCSSVariable(name) {
|
function getCSSVariable(name) {
|
||||||
return getComputedStyle(root).getPropertyValue(name)
|
return getComputedStyle(root).getPropertyValue(name)
|
||||||
|
}
|
||||||
|
|
||||||
|
function tweetCell(tweet, parent) {
|
||||||
|
var cell = document.createElement("div")
|
||||||
|
cell.innerHTML =
|
||||||
|
"<div>"
|
||||||
}
|
}
|
||||||
BIN
eca/__pycache__/__init__.cpython-310.pyc
Normal file
BIN
eca/__pycache__/__init__.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/arff.cpython-310.pyc
Normal file
BIN
eca/__pycache__/arff.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/generators.cpython-310.pyc
Normal file
BIN
eca/__pycache__/generators.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/http.cpython-310.pyc
Normal file
BIN
eca/__pycache__/http.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/httpd.cpython-310.pyc
Normal file
BIN
eca/__pycache__/httpd.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/pubsub.cpython-310.pyc
Normal file
BIN
eca/__pycache__/pubsub.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/sessions.cpython-310.pyc
Normal file
BIN
eca/__pycache__/sessions.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/sse.cpython-310.pyc
Normal file
BIN
eca/__pycache__/sse.cpython-310.pyc
Normal file
Binary file not shown.
BIN
eca/__pycache__/util.cpython-310.pyc
Normal file
BIN
eca/__pycache__/util.cpython-310.pyc
Normal file
Binary file not shown.
20
resources/tweet_structure
Normal file
20
resources/tweet_structure
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
created_at,
|
||||||
|
text,
|
||||||
|
source,
|
||||||
|
user:{
|
||||||
|
name,
|
||||||
|
screen_name,
|
||||||
|
url
|
||||||
|
}
|
||||||
|
quote_count,
|
||||||
|
reply_count,
|
||||||
|
retweet_count,
|
||||||
|
favorite_count,
|
||||||
|
entities:{
|
||||||
|
hashtags,
|
||||||
|
urls,
|
||||||
|
user_mentions,
|
||||||
|
symbols
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user