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
| #!/bin/sh | |
| # | |
| # Shell script that configures gnome-terminal to use xoria256 theme | |
| # colors. Written for Debian Wheezy. | |
| # | |
| # AUTHOR: Igor Kalnitsky <igor@kalnitsky.org> | |
| # LICENSE: GNU GPL v3 | |
| PALETTE="#121212121212:#D7D787878787:#AFAFD7D78787:#F7F7F7F7AFAF:#8787AFAFD7D7:#D7D7AFAFD7D7:#AFAFD7D7D7D7:#E6E6E6E6E6E6:#121212121212:#D7D787878787:#AFAFD7D78787:#F7F7F7F7AFAF:#8787AFAFD7D7:#D7D7AFAFD7D7:#AFAFD7D7D7D7:#E6E6E6E6E6E6" | |
| BG_COLOR="#1C1C1C1C1C1C" |
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
| /** | |
| * ldap2opera.js | |
| * ~~~~~~~~~~~~~ | |
| * | |
| * ldap2opera.js is a simple WMI script (written on JScript) for saving | |
| * LDAP address book in Opera Mail format. | |
| * | |
| * Usage: | |
| * | |
| * $ cscript ldap2opera.js /domain:LDAP://DC=gameloft,DC=org /output:contacts.adr |
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 rough from "https://unpkg.com/roughjs@4.6.5/bundled/rough.esm.js"; | |
| // Sketchify a given SVG node using https://roughjs.com. | |
| // | |
| // The code is adopted from https://sketchviz.com. | |
| export const sketchify = (function () { | |
| function getAttributes(element) { | |
| return Array.prototype.slice.call(element.attributes); | |
| } |