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
| param( | |
| # provide a configuration file to define package handling | |
| [string] $skipFile = "wngt-cfg", | |
| # true to upgrade eligible packages, false dry run | |
| [switch] $upgrade = $false | |
| ) | |
| # adjust buffer size of output, really don't know if this helps ¯\_(ツ)_/¯ | |
| if ($Host -and $Host.UI -and $Host.UI.RawUI) { | |
| $rawUI = $Host.UI.RawUI |
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
| ## Ignore Visual Studio temporary files, build results, and | |
| ## files generated by popular Visual Studio add-ons. | |
| ## | |
| ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore | |
| # User-specific files | |
| *.rsuser | |
| *.suo | |
| *.user | |
| *.userosscache |
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
| // in cargo.toml | |
| // rand = "0.7" | |
| // parking_lot = "0.11" | |
| // crossbeam-channel = "0.5" | |
| use std::{thread::{JoinHandle, sleep, spawn}, time::Duration}; | |
| use crossbeam_channel::{Sender, unbounded}; | |
| use rand::{Rng, thread_rng}; |
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
| // in cargo.toml | |
| // rand = "0.7" | |
| // parking_lot = "0.11" | |
| // crossbeam-channel = "0.5" | |
| use std::{thread::{sleep, spawn}, time::Duration}; | |
| use crossbeam_channel::{RecvTimeoutError, Sender, unbounded}; | |
| use rand::{Rng, thread_rng}; |
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
| param ( | |
| [bool] $ForReals = $false | |
| ) | |
| $color = 'White' | |
| if (!$ForReals) { | |
| $color = 'DarkGray' | |
| } |
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
| <link rel="import" href="../../bower_components/polymer/polymer.html"> | |
| <link rel="import" href="../../bower_components/paper-material/paper-material.html"> | |
| <link rel="import" href="../../bower_components/paper-behaviors/paper-button-behavior.html"> | |
| #set($ITEM = $NAME + '-item') | |
| #set($ItemElement = $Element + 'Item') | |
| <dom-module id="${NAME}"> | |
| <template strip-whitespace> | |
| <style include="paper-material"> |
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
| <link rel="import" href="../../bower_components/polymer/polymer.html"> | |
| <link rel="import" href="../../bower_components/paper-material/paper-material.html"> | |
| <link rel="import" href="../../bower_components/paper-behaviors/paper-button-behavior.html"> | |
| <dom-module id="${NAME}"> | |
| <template strip-whitespace> | |
| <style include="paper-material"> | |
| :root { | |
| } | |
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
| Seed Element New Element Template | |
| https://github.com/polymerelements/seed-element | |
| polyserve Polymer Test Server | |
| gp.sh publish to github | |
| cd [dev folder] | |
| git clone git://github.com/Polymer/tools.git |
NewerOlder