├── .gitattributes ├── .gitignore ├── LICENSE ├── OverlapAnalysis ├── BottedChannels │ ├── AnalyzeBottedChannels.py │ └── FindBottedChannels.py ├── RetrospectiveYTAnaysis.py ├── UpdateOverlaps.ipynb ├── YoutubeAnalyis.ipynb ├── YoutubeEdges.csv └── YoutubeNodes.csv ├── README.md ├── Web ├── android-chrome-192x192.png ├── apple-touch-icon.png ├── browserconfig.xml ├── config.json ├── css │ ├── style.css │ └── tablet.css ├── data.json ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── images │ ├── AtlasPreviewImage.png │ ├── CC.png │ ├── aboutimage.png │ ├── blank.gif │ ├── fancybox_loading.gif │ ├── fancybox_sprite.png │ ├── info.png │ ├── jisc-logo-small.png │ ├── loading_gif.gif │ ├── oii.png │ ├── oii_brand.png │ ├── oii_text.png │ ├── rainbow.png │ ├── sprite.png │ ├── xsprite.png │ ├── zoom_in.png │ ├── zoom_out.png │ └── zoom_reset.png ├── index.html ├── js │ ├── excanvas.js │ ├── fancybox │ │ ├── jquery.fancybox.css │ │ └── jquery.fancybox.pack.js │ ├── jquery │ │ └── jquery.min.js │ ├── main.js │ └── sigma │ │ ├── _sigma.min.js │ │ ├── parseGexf_fin.js │ │ ├── sigma.js │ │ ├── sigma.min.js │ │ ├── sigma.parseGexf.js │ │ └── sigma.parseJson.js ├── mstile-150x150.png ├── safari-pinned-tab.svg ├── site.webmanifest └── web.config └── YoutubeAPIScrape ├── CustomYTCommenters.py ├── YoutubeCommenters.py └── YoutubeS3Helper.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/LICENSE -------------------------------------------------------------------------------- /OverlapAnalysis/BottedChannels/AnalyzeBottedChannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/BottedChannels/AnalyzeBottedChannels.py -------------------------------------------------------------------------------- /OverlapAnalysis/BottedChannels/FindBottedChannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/BottedChannels/FindBottedChannels.py -------------------------------------------------------------------------------- /OverlapAnalysis/RetrospectiveYTAnaysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/RetrospectiveYTAnaysis.py -------------------------------------------------------------------------------- /OverlapAnalysis/UpdateOverlaps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/UpdateOverlaps.ipynb -------------------------------------------------------------------------------- /OverlapAnalysis/YoutubeAnalyis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/YoutubeAnalyis.ipynb -------------------------------------------------------------------------------- /OverlapAnalysis/YoutubeEdges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/YoutubeEdges.csv -------------------------------------------------------------------------------- /OverlapAnalysis/YoutubeNodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/OverlapAnalysis/YoutubeNodes.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/README.md -------------------------------------------------------------------------------- /Web/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/android-chrome-192x192.png -------------------------------------------------------------------------------- /Web/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/apple-touch-icon.png -------------------------------------------------------------------------------- /Web/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/browserconfig.xml -------------------------------------------------------------------------------- /Web/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/config.json -------------------------------------------------------------------------------- /Web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/css/style.css -------------------------------------------------------------------------------- /Web/css/tablet.css: -------------------------------------------------------------------------------- 1 | #developercontainer { 2 | display:none; 3 | } -------------------------------------------------------------------------------- /Web/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/data.json -------------------------------------------------------------------------------- /Web/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/favicon-16x16.png -------------------------------------------------------------------------------- /Web/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/favicon-32x32.png -------------------------------------------------------------------------------- /Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/favicon.ico -------------------------------------------------------------------------------- /Web/images/AtlasPreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/AtlasPreviewImage.png -------------------------------------------------------------------------------- /Web/images/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/CC.png -------------------------------------------------------------------------------- /Web/images/aboutimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/aboutimage.png -------------------------------------------------------------------------------- /Web/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/blank.gif -------------------------------------------------------------------------------- /Web/images/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/fancybox_loading.gif -------------------------------------------------------------------------------- /Web/images/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/fancybox_sprite.png -------------------------------------------------------------------------------- /Web/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/info.png -------------------------------------------------------------------------------- /Web/images/jisc-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/jisc-logo-small.png -------------------------------------------------------------------------------- /Web/images/loading_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/loading_gif.gif -------------------------------------------------------------------------------- /Web/images/oii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/oii.png -------------------------------------------------------------------------------- /Web/images/oii_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/oii_brand.png -------------------------------------------------------------------------------- /Web/images/oii_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/oii_text.png -------------------------------------------------------------------------------- /Web/images/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/rainbow.png -------------------------------------------------------------------------------- /Web/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/sprite.png -------------------------------------------------------------------------------- /Web/images/xsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/xsprite.png -------------------------------------------------------------------------------- /Web/images/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/zoom_in.png -------------------------------------------------------------------------------- /Web/images/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/zoom_out.png -------------------------------------------------------------------------------- /Web/images/zoom_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/images/zoom_reset.png -------------------------------------------------------------------------------- /Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/index.html -------------------------------------------------------------------------------- /Web/js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/excanvas.js -------------------------------------------------------------------------------- /Web/js/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /Web/js/fancybox/jquery.fancybox.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/fancybox/jquery.fancybox.pack.js -------------------------------------------------------------------------------- /Web/js/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/jquery/jquery.min.js -------------------------------------------------------------------------------- /Web/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/main.js -------------------------------------------------------------------------------- /Web/js/sigma/_sigma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/sigma/_sigma.min.js -------------------------------------------------------------------------------- /Web/js/sigma/parseGexf_fin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/sigma/parseGexf_fin.js -------------------------------------------------------------------------------- /Web/js/sigma/sigma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/sigma/sigma.js -------------------------------------------------------------------------------- /Web/js/sigma/sigma.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/sigma/sigma.min.js -------------------------------------------------------------------------------- /Web/js/sigma/sigma.parseGexf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/sigma/sigma.parseGexf.js -------------------------------------------------------------------------------- /Web/js/sigma/sigma.parseJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/js/sigma/sigma.parseJson.js -------------------------------------------------------------------------------- /Web/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/mstile-150x150.png -------------------------------------------------------------------------------- /Web/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/safari-pinned-tab.svg -------------------------------------------------------------------------------- /Web/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/site.webmanifest -------------------------------------------------------------------------------- /Web/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/Web/web.config -------------------------------------------------------------------------------- /YoutubeAPIScrape/CustomYTCommenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/YoutubeAPIScrape/CustomYTCommenters.py -------------------------------------------------------------------------------- /YoutubeAPIScrape/YoutubeCommenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/YoutubeAPIScrape/YoutubeCommenters.py -------------------------------------------------------------------------------- /YoutubeAPIScrape/YoutubeS3Helper.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranGershenfeld/YoutubeCommunities/HEAD/YoutubeAPIScrape/YoutubeS3Helper.ipynb --------------------------------------------------------------------------------