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
.js-moments-tab { | |
display: none !important; | |
} | |
.wtf-module { | |
display: none !important; | |
} | |
.LiveVideoHomePageModuleContainer { | |
display: none !important; |
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 ubuntu:16.04 | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
g++ \ | |
make \ | |
file \ | |
curl \ | |
ca-certificates \ | |
python2.7 \ | |
git \ |
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
import os | |
import markdown | |
from markdown_include.include import MarkdownInclude | |
import weasyprint | |
from mako.template import Template | |
HTML_BOILERPLATE_TEMPLATE = """ | |
<html> | |
<head> | |
<style>{css}</style> |
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
import pcbnew | |
import math | |
# Based upon https://bit.ly/3agYp7f by Greg Davill (@GregDavill on Twitter) | |
# | |
# To use this with KiCAD 6.x.x: | |
# 1. Save this script in KiCAD's "scripting/plugins" directory as "arrange.py" | |
# 2. Open your PCB and refresh plugins by navigating to | |
# Tools > External Plugins > Refresh Plugins | |
# 3. Open the scripting console (Tools > Scripting Console) and execute |
OlderNewer