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
| diff --git a/configure b/configure | |
| index af125bc115..81e940b35f 100755 | |
| --- a/configure | |
| +++ b/configure | |
| @@ -269,6 +269,7 @@ External library support: | |
| --enable-librabbitmq enable RabbitMQ library [no] | |
| --enable-librav1e enable AV1 encoding via rav1e [no] | |
| --enable-librist enable RIST via librist [no] | |
| + --enable-libresdet enable resdetect filter [no] | |
| --enable-librsvg enable SVG rasterization via librsvg [no] |
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
| <html> | |
| <script> | |
| var db = openDatabase('watch','1.0','watch',104857600); | |
| db.transaction(function(t) { | |
| t.executeSql("CREATE TABLE IF NOT EXISTS events(time DATETIME, duration INTEGER, url TEXT);", []); | |
| }); | |
| var event = null; | |
| function eventclose(e) { |
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 Base.Display, Base.display | |
| immutable iTermDisplay <: Display end | |
| itshowim(x::Vector{UInt8}) = write(STDOUT, "\e]1337;File=inline=1:", base64encode(x), "\a") | |
| const itmimetypes = map(MIME, ["application/pdf","application/postscript","image/tiff","image/png","image/jpeg","image/jp2","image/vnd.adobe.photoshop"]) | |
| function display(::iTermDisplay, m::Union{map(typeof, itmimetypes)...}, x) | |
| itshowim(reprmime(m,x)) | |
| nothing |
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
| # © 0x09.net MIT license | |
| """ | |
| simpleplot(function, dims, domain, range [, sub]; flags = []) | |
| Plot samples from a continuous function onto a matrix | |
| # Arguments | |
| * `sub::Real`: Sampling interval in pixels | |
| * `flags::Array{Symbol}`: |