Merge pull request #3 from olinpin/jack-testing

Added Tweet_Structure resource and made changes to code.js
This commit is contained in:
2022-11-01 12:15:58 +01:00
committed by GitHub
18 changed files with 1064 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
sports1.txt
*/__pycache__/*
__pycache__/
.vs

3
.vs/ProjectSettings.json Normal file
View File

@@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

View File

@@ -0,0 +1,8 @@
{
"ExpandedNodes": [
"",
"\\dashboard_static"
],
"SelectedNode": "\\devjan.py",
"PreviewInSolutionExplorer": false
}

BIN
.vs/slnx.sqlite Normal file
View File

Binary file not shown.

View File

File diff suppressed because it is too large Load Diff

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -21,3 +21,9 @@ $(".sport").on("click", function() {
function getCSSVariable(name) {
return getComputedStyle(root).getPropertyValue(name)
}
function tweetCell(tweet, parent) {
var cell = document.createElement("div")
cell.innerHTML =
"<div>"
}

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

20
resources/tweet_structure Normal file
View 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
}
}