A minimalist donut chart rendered to Canvas using d3-shape.
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> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Simple d3 example</title> | |
| <script src="//d3js.org/d3.v3.min.js"></script> | |
| </head> | |
| <body> | |
| <script> | |
| d3.select("body").append("p").text("New paragraph!"); |
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
| "hello, world"; // edit this to begin |
- Install Python 3
- Install KoNLPy
- Run
python wordfreq.py --xpath './/div[@class="statement"]/div[@class="content glossary"]/text()' --url http://pokr.kr/meeting/1933823653/dialog
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
| license: gpl-3.0 |
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
| license: gpl-3.0 |
Some images ;)
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
| // Place this code just before the closing body tag: </body> | |
| (function() { try { | |
| var host = location.href.match(/^https?:\/\/([^\/]+)/i)[1]; | |
| // Find all links in current document | |
| var links = document.getElementsByTagName('a'); | |
| // Register click handlers to external links | |
| for(var i = 0; i < links.length; i++) { | |
| var href = links[i].href; |
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
| license: gpl-3.0 |
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 itertools import chain | |
| def compare(snapshot, old, new): | |
| for old_row in old: | |
| try: | |
| new_row = next(new) | |
| except StopIteration: | |
| break |
OlderNewer