-
markdown preview enhanced is a Atom package
- preview markdown in Atom editor on the fly
- allow you to draw flow chart using power of
mermaid
- you can export the document in
html
orpdf
-
mermaid let you draw diagram like writing markdown
- supporting lots of diagram
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 xlrd | |
datafile = "my_file.xls" | |
workbook = xlrd.open_workbook(datafile) | |
sheet = workbook.sheet_by_index(0) | |
data = [[sheet.cell_value(r, col) | |
for col in range(sheet.ncols)] | |
for r in range(sheet.nrows)] |
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
module.exports = { | |
extensions: { | |
// clojurescript: require('./ext/clojurescript'), | |
clojure: require('./build/ext/clojure'), | |
clojurescript: require('./build/ext/clojurescript'), | |
coffee: require('./build/ext/coffee'), | |
babel: require('./build/ext/babel'), | |
html: require('./build/ext/html') | |
} | |
} |
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
// ... | |
atom-workspace, | |
atom-text-editor { | |
font-family: "Fira Code"; | |
text-rendering: optimizeLegibility; | |
font-size: 17px; | |
font-weight: 400; | |
line-height: 1.8; | |
} |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
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
ffmpeg -i input.mov -vcodec libwebp -lossless 1 -q:60 -preset default -loop 0 -an -vsync 0 output.webp |
a Auto Type text with only CSS!
A Pen by CSS Support on CodePen.
I followed the instructions in this blog post Multiple Fonts: Alternative to Operator Mono in VSCode, but did not see any changes made to VS Code. After digging a bit, I discovered that all the CSS class names had changed. They’re now e.g. .mtk13, .mtk16 { … }
.
- Ensure it’s a file URL e.g.
{ "vscode_custom_css.imports": [ "file:///Users/Brian/Desktop/vscode-style.css" ] }
- If you move the location of your file and update your user settings with the new location, you will need to disable and enable custom CSS cmd+shift+p.
- Also, anytime you change the style in your custom CSS file, you need to disable, then re-enable the extension.