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> | |
| <script src="polymer/ShadowDOM/shadowdom.js"></script> | |
| <div id="host"> | |
| <p>Content</p> | |
| </div> | |
| <template id="t"> | |
| <div> | |
| <div> | |
| [<content></content>] |
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/bash | |
| REPOS=( | |
| CustomElements | |
| HTMLImports | |
| MutationObservers | |
| PointerEvents | |
| PointerGestures | |
| ShadowDOM | |
| aux-elements | |
| labs |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Text Cursor Movement</title> | |
| <script src="../../../MDV/mdv.js"></script> | |
| </head> | |
| <body> | |
| <template id="template" bind="{{}}"> | |
| <input value="{{value}}"> |
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 name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0">--> | |
| <title>ElementFromPoint test</title> | |
| <style> | |
| /* make rows an easy, visible height */ | |
| div { | |
| height: 50px; | |
| width: 100%; |
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 | |
| ../path/to/enyo/tools/minify.sh -no-alias -output ../build/app package.js |
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
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
| Version 2, December 2004 | |
| Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
| Everyone is permitted to copy and distribute verbatim or modified | |
| copies of this license document, and changing it is allowed as long | |
| as the name is changed. | |
| DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
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
| #!/usr/bin/env perl | |
| # Perl script to check battery levels on Thinkpads | |
| # Requires the tp-smapi linux kernel module | |
| # Daniel Freedman 2010 | |
| use strict; | |
| use warnings; | |
| use autodie; | |
| use Getopt::Std; | |
| # Setup getopts configuration |
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
| Some: class <T> { | |
| content:T | |
| init:func <T> (=content){} | |
| get:func -> T {return content;} | |
| } | |
| // None is a builitin type | |
| main: func { | |
| a := Some<String> new("77777") |