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
//FindChangeByList.jsx | |
//An InDesign CS6 JavaScript | |
/* | |
@@@BUILDINFO@@@ "FindChangeByList.jsx" 3.0.0 15 December 2009 | |
Mod by senki on 2015-06-29 | |
- added dialog with list of files under FindChangeSupport | |
- and choose between. default is the first | |
*/ | |
//Loads a series of tab-delimited strings from a text file, then performs a series | |
//of find/change operations based on the strings read from the file. |
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 subprocess | |
get_line_by_line_texlive_dependencies = subprocess.run( | |
[ | |
"apt-cache", | |
"depends", | |
"texlive-full" | |
], | |
universal_newlines=True, | |
stdout=subprocess.PIPE |
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>CSS Fizz Buzz</title> | |
<style> | |
#main li:nth-child(3n), | |
#main li:nth-child(5n){ | |
font-size: 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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document url-prefix(data:image/), | |
regexp("(?:https?|chrome)://.*\.(?:jpe?g|png|gif|bmp|svg|webp|JPE?G|PNG|GIF|BMP|SVG|WEBP)([?#].*)?$") { | |
body { | |
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAAAAABWESUoAAAAHUlEQVQ4y2P4gQYeoAGGUQUjSgG6ALqGUQUjSgEAdjWwLh+tpFgAAAAASUVORK5CYII=") !important; | |
} | |
body > img[src][alt] { | |
box-shadow: 0px 0px 2px 1px navy; | |
} |