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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Dense Mesh Sphere</title> | |
| <script src="https://unpkg.com/three@0.160.0/build/three.min.js"></script> | |
| <script src="https://unpkg.com/3d-force-graph"></script> | |
| <style> | |
| body { margin: 0; background-color: #040406; overflow: hidden; } | |
| #hud { |
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
| { | |
| "tabs": { | |
| "3": { | |
| "tabInfo": { | |
| "currentUrl": "https://www.polskieradio.pl/13/53/Artykul/2175283,Sygnaly-Dnia-6-sierpnia-2018-roku-rozmowa-z-Andrzejem-Halickim" | |
| }, | |
| "api": { | |
| "annotations": { | |
| "data": [ | |
| { |
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
| { | |
| "tabs": { | |
| "3": { | |
| "tabInfo": { | |
| "currentUrl": "https://www.polskieradio.pl/13/53/Artykul/2175283,Sygnaly-Dnia-6-sierpnia-2018-roku-rozmowa-z-Andrzejem-Halickim" | |
| }, | |
| "api": { | |
| "annotations": { | |
| "data": [ | |
| { |
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
| 1 | |
| <script src="http://code.responsivevoice.org/responsivevoice.js"></script> | |
| <textarea id="text-to-speak"></textarea> | |
| <input type="text" id="text-to-speak-pos"> | |
| <button onclick="start()"> | |
| start | |
| </button> | |
| <button onclick="pause()"> | |
| pause |
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
| /* | |
| Export Memrise course words to CSV. | |
| 1. Log into memrise.com | |
| 2. Navigate to course home page (e.g. http://www.memrise.com/course/335725/comprehensive-german-duolingo-vocabulary/) | |
| 3. Open Developer Console | |
| 4. Paste below script and hit enter | |
| 5. After all urls have been fetched, copy final word list into spreadsheet. |
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
| from __future__ import absolute_import | |
| from datetime import timedelta | |
| from celery.schedules import schedule, schedstate | |
| from celery.utils.timeutils import timedelta_seconds, make_aware, is_naive | |
| class schedulesince(schedule): | |
| """ |