├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .whitesource ├── CODEOWNERS ├── CONTRIBUTING.txt ├── DOCUMENTATION-ETC ├── 3rd-party-licenses │ ├── RemixIcon.txt │ ├── jquery-license.txt │ └── pako.js.txt ├── ATTRIBUTION-CREDIT-INFO.txt ├── Developing-maintaining │ ├── project-site │ │ └── index.html │ └── scripts │ │ └── Git-Mirror-Ticker-App-Github-To-Sourceforge.bash ├── Proof-Of-Existance │ ├── DFD_Crypto-Ticker-2.10.1 │ │ ├── Bitcoin-timestamp │ │ │ └── DFD_Crypto_Ticker-2.10.1.zip.ots │ │ ├── Decred-timestamp │ │ │ └── 11fff198cfebc3a3b3ba3813b4420d58344024908e22ab568ad2b714311b8073.json │ │ └── NOTES.TXT │ ├── DFD_Crypto-Ticker-2.12.0 │ │ ├── Bitcoin-timestamp │ │ │ └── DFD_Crypto_Ticker-2.12.0.zip.ots │ │ ├── Decred-timestamp │ │ │ └── c1281eaa69e8c9a3dee83b9f4ff0c6b93b41f57ff9748d58f544014421a581cf.json │ │ └── NOTES.TXT │ ├── DFD_Crypto-Ticker-2.14.0 │ │ ├── Bitcoin-timestamp │ │ │ └── DFD_Crypto_Ticker-2.14.0.zip.ots │ │ ├── Decred-timestamp │ │ │ └── b9f2b8d8b25b2ea0b56e4c11858404708db97995688f53e72ca8c1e4404e2562.json │ │ └── NOTES.TXT │ ├── DFD_Crypto_Ticker-2.07.0 │ │ ├── Decred_Blockchain_Proof.json │ │ └── NOTES.TXT │ └── Slideshow_Crypto_Ticker-3.07.0 │ │ ├── Bitcoin-timestamp │ │ └── Slideshow_Crypto_Ticker-3.07.0.zip.ots │ │ └── NOTES.TXT ├── RASPBERRY-PI │ ├── EASTER-EGG.bash │ ├── PI4-HOME-SERVER-SETUP.txt │ ├── RASPBERRY-PI-HEADLESS-WIFI-SSH.txt │ ├── RASPBERRY-PI-HOST-NAME-AND-SSH.txt │ ├── RASPBERRY-PI-LOW-VOLTAGE-WARNING.txt │ ├── RASPBERRY-PI-SECURITY.txt │ └── RASPBERRY-PI-USB-BOOT.txt ├── TODO.txt ├── changelog.txt └── goodtft_LCD-Show │ ├── HDMI.Switch.back.txt │ └── How to modify the display orientation and touch.pdf ├── LICENSE ├── README.txt ├── TICKER-INSTALL.bash ├── TROUBLESHOOTING.txt ├── bash ├── bootup-auto-start.bash ├── browser-support │ ├── chromium.bash │ ├── epiphany.bash │ └── firefox.bash ├── cron │ ├── cache.bash │ ├── cron.bash │ ├── keep-screensaver-off.bash │ ├── kucoin.bash │ └── system-info.bash ├── goodtft-only.bash ├── ticker-restart.bash ├── ticker-start.bash └── ticker-stop.bash ├── config.js ├── css └── style.css ├── index.html ├── js ├── core │ ├── api.js │ ├── asset.js │ ├── general.js │ └── init.js ├── jquery-3.6.3.min.js └── pako.js └── taoteh1221-gpg-pub-key.asc /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/.whitesource -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @taoteh1221 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/CONTRIBUTING.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/3rd-party-licenses/RemixIcon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/3rd-party-licenses/RemixIcon.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/3rd-party-licenses/jquery-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/3rd-party-licenses/jquery-license.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/3rd-party-licenses/pako.js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/3rd-party-licenses/pako.js.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/ATTRIBUTION-CREDIT-INFO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/ATTRIBUTION-CREDIT-INFO.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Developing-maintaining/project-site/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Developing-maintaining/scripts/Git-Mirror-Ticker-App-Github-To-Sourceforge.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Developing-maintaining/scripts/Git-Mirror-Ticker-App-Github-To-Sourceforge.bash -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.10.1/Bitcoin-timestamp/DFD_Crypto_Ticker-2.10.1.zip.ots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.10.1/Bitcoin-timestamp/DFD_Crypto_Ticker-2.10.1.zip.ots -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.10.1/Decred-timestamp/11fff198cfebc3a3b3ba3813b4420d58344024908e22ab568ad2b714311b8073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.10.1/Decred-timestamp/11fff198cfebc3a3b3ba3813b4420d58344024908e22ab568ad2b714311b8073.json -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.10.1/NOTES.TXT: -------------------------------------------------------------------------------- 1 | Contact me @ taoteh1221 on Skype/Twitter for matching binary/zip file. 2 | -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.12.0/Bitcoin-timestamp/DFD_Crypto_Ticker-2.12.0.zip.ots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.12.0/Bitcoin-timestamp/DFD_Crypto_Ticker-2.12.0.zip.ots -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.12.0/Decred-timestamp/c1281eaa69e8c9a3dee83b9f4ff0c6b93b41f57ff9748d58f544014421a581cf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.12.0/Decred-timestamp/c1281eaa69e8c9a3dee83b9f4ff0c6b93b41f57ff9748d58f544014421a581cf.json -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.12.0/NOTES.TXT: -------------------------------------------------------------------------------- 1 | Contact me @ taoteh1221 on Skype/Twitter for matching binary/zip file. 2 | -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.14.0/Bitcoin-timestamp/DFD_Crypto_Ticker-2.14.0.zip.ots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.14.0/Bitcoin-timestamp/DFD_Crypto_Ticker-2.14.0.zip.ots -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.14.0/Decred-timestamp/b9f2b8d8b25b2ea0b56e4c11858404708db97995688f53e72ca8c1e4404e2562.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.14.0/Decred-timestamp/b9f2b8d8b25b2ea0b56e4c11858404708db97995688f53e72ca8c1e4404e2562.json -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto-Ticker-2.14.0/NOTES.TXT: -------------------------------------------------------------------------------- 1 | Contact me @ taoteh1221 on Skype/Twitter for matching binary/zip file. 2 | -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto_Ticker-2.07.0/Decred_Blockchain_Proof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto_Ticker-2.07.0/Decred_Blockchain_Proof.json -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/DFD_Crypto_Ticker-2.07.0/NOTES.TXT: -------------------------------------------------------------------------------- 1 | Contact me @ taoteh1221 on Skype/Twitter for matching binary/zip file. 2 | -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/Slideshow_Crypto_Ticker-3.07.0/Bitcoin-timestamp/Slideshow_Crypto_Ticker-3.07.0.zip.ots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/Slideshow_Crypto_Ticker-3.07.0/Bitcoin-timestamp/Slideshow_Crypto_Ticker-3.07.0.zip.ots -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/Proof-Of-Existance/Slideshow_Crypto_Ticker-3.07.0/NOTES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/Proof-Of-Existance/Slideshow_Crypto_Ticker-3.07.0/NOTES.TXT -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/EASTER-EGG.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/EASTER-EGG.bash -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/PI4-HOME-SERVER-SETUP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/PI4-HOME-SERVER-SETUP.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-HEADLESS-WIFI-SSH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-HEADLESS-WIFI-SSH.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-HOST-NAME-AND-SSH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-HOST-NAME-AND-SSH.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-LOW-VOLTAGE-WARNING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-LOW-VOLTAGE-WARNING.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-SECURITY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-SECURITY.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-USB-BOOT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/RASPBERRY-PI/RASPBERRY-PI-USB-BOOT.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/TODO.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/changelog.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/goodtft_LCD-Show/HDMI.Switch.back.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/goodtft_LCD-Show/HDMI.Switch.back.txt -------------------------------------------------------------------------------- /DOCUMENTATION-ETC/goodtft_LCD-Show/How to modify the display orientation and touch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/DOCUMENTATION-ETC/goodtft_LCD-Show/How to modify the display orientation and touch.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/README.txt -------------------------------------------------------------------------------- /TICKER-INSTALL.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/TICKER-INSTALL.bash -------------------------------------------------------------------------------- /TROUBLESHOOTING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/TROUBLESHOOTING.txt -------------------------------------------------------------------------------- /bash/bootup-auto-start.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/bootup-auto-start.bash -------------------------------------------------------------------------------- /bash/browser-support/chromium.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/browser-support/chromium.bash -------------------------------------------------------------------------------- /bash/browser-support/epiphany.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/browser-support/epiphany.bash -------------------------------------------------------------------------------- /bash/browser-support/firefox.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/browser-support/firefox.bash -------------------------------------------------------------------------------- /bash/cron/cache.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/cron/cache.bash -------------------------------------------------------------------------------- /bash/cron/cron.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/cron/cron.bash -------------------------------------------------------------------------------- /bash/cron/keep-screensaver-off.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/cron/keep-screensaver-off.bash -------------------------------------------------------------------------------- /bash/cron/kucoin.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/cron/kucoin.bash -------------------------------------------------------------------------------- /bash/cron/system-info.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/cron/system-info.bash -------------------------------------------------------------------------------- /bash/goodtft-only.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/goodtft-only.bash -------------------------------------------------------------------------------- /bash/ticker-restart.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/ticker-restart.bash -------------------------------------------------------------------------------- /bash/ticker-start.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/ticker-start.bash -------------------------------------------------------------------------------- /bash/ticker-stop.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/bash/ticker-stop.bash -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/config.js -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/css/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/index.html -------------------------------------------------------------------------------- /js/core/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/js/core/api.js -------------------------------------------------------------------------------- /js/core/asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/js/core/asset.js -------------------------------------------------------------------------------- /js/core/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/js/core/general.js -------------------------------------------------------------------------------- /js/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/js/core/init.js -------------------------------------------------------------------------------- /js/jquery-3.6.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/js/jquery-3.6.3.min.js -------------------------------------------------------------------------------- /js/pako.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/js/pako.js -------------------------------------------------------------------------------- /taoteh1221-gpg-pub-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoteh1221/Slideshow_Crypto_Ticker/HEAD/taoteh1221-gpg-pub-key.asc --------------------------------------------------------------------------------