| import json | |
| import re | |
| from operator import itemgetter | |
| import requests | |
| from itertools import combinations | |
| def best_similarity(master, candidates): | |
| counts = [0] * len(candidates) | |
| for candidate_index, candidate in enumerate(candidates): | |
| for item in candidate: |
| import json | |
| import re | |
| from operator import itemgetter | |
| # finds the most similar list | |
| # master = [] with n items | |
| # candidates = [[],[],[],...] each nested list with n items | |
| # original_candidates = [{}, {}, {},...] | |
| def best_similarity(master, candidates, originalcandidates): | |
| counts = [0] * len(candidates) |
| import json | |
| import re | |
| from operator import itemgetter | |
| import requests | |
| # finds the most similar list | |
| # master = [] | |
| # candidates = [{}, {}, {},...] | |
| def best_similarity(master, candidates): | |
| counts = [0] * len(candidates) |
If you share this list, please use this link instead: https://lambdaurora.dev/optifine_alternatives
It may still be only a redirection link, but it will have a better web display of the list soon. And the list being on GitHub/GitHub pages improves load times.
The gist version of this list will stop being updated.
| """ | |
| AUTOMATIC drag and drop support for windows (NO PROMPT!) | |
| 1. Copy script to directory you want your files copied to. | |
| 2. Select the files you want to convert. | |
| 3. Drag & drop onto this script to convert .vox to .obj! | |
| Files will be exported to directory of this script. |
| /* | |
| Twitch chat browsersource CSS for OBS | |
| Original by twitch.tv/starvingpoet modified by github.com/Bluscream | |
| Just set the URL as either one of | |
| - https://www.twitch.tv/%%TWITCHCHANNEL%%/chat?popout=true | |
| - https://www.twitch.tv/popout/%%TWITCHCHANNEL%%/chat | |
| - https://www.twitch.tv/embed/%%TWITCHCHANNEL%%/chat?parent=localhost | |
| And paste this entire file into the CSS box or paste direct import css like |
| # | |
| # If all files excluded and you will include only specific sub-directories | |
| # the parent path must matched before. | |
| # | |
| /** | |
| !/.gitignore | |
| ############################### | |
| # Un-ignore the affected subdirectory |
⇐ back to the gist-blog at jrw.fi
Or, 16 cool things you may not have known your stylesheets could do. I'd rather have kept it to a nice round number like 10, but they just kept coming. Sorry.
I've been using SCSS/SASS for most of my styling work since 2009, and I'm a huge fan of Compass (by the great @chriseppstein). It really helped many of us through the darkest cross-browser crap. Even though browsers are increasingly playing nice with CSS, another problem has become very topical: managing the complexity in stylesheets as our in-browser apps get larger and larger. SCSS is an indispensable tool for dealing with this.
This isn't an introduction to the language by a long shot; many things probably won't make sense unless you have some SCSS under your belt already. That said, if you're not yet comfy with the basics, check out the aweso