UTC: 2020-08-21 08:05 anthonymastrean/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
UTC: 2020-08-21 08:05 anthonymastrean/chocolatey-packages
This file is automatically generated by the update_all.ps1 script using the AU module.
{ | |
"cursor_size": "small", | |
"font_face": "DejaVu Sans Mono", | |
"font_size": "0x16", | |
"popup_colors": "dark_magenta,white", | |
"dark_gray": "#767676", | |
"screen_colors": "gray,black", | |
"dark_green": "#13a10e", | |
"command_history_no_duplication": false, | |
"window_size": "120x30", |
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- This file generated by Dropcaster 0.0.7 --> | |
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"> | |
<channel> | |
<title>American Rhetoric - Top 100 Speeches</title> | |
<link>http://www.americanrhetoric.com/</link> | |
<description>Rationalize rhetoric and it speaks to your mind, personify her and she speaks to your soul.</description> | |
<itunes:summary>Rationalize rhetoric and it speaks to your mind, personify her and she speaks to your soul.</itunes:summary> | |
<generator>Dropcaster 0.0.7</generator> | |
<item> |
http://hgdownload.cse.ucsc.edu/goldenpath/hg19/bigZips/est.fa.gz
The human genome, in FASTA format, from UCSC. I first read about this data set on Jonathan Dursi's blog comparing [random vs. streaming I/O](Jonathan Dursi) performance.
Read lines of text, until a completely blank line is found. Eliminate | |
redundant blanks between the words. Print the text, thirty characters | |
to a line, without breaking words between lines. | |
http://www.jdl.ac.cn/turing/pdf/p455-floyd.pdf |
I hereby claim:
To claim this, I am signing this object:
param( | |
[Parameter(Mandatory = $true, ValueFromPipeline = $true)] | |
[string[]] $Path | |
) | |
BEGIN { | |
"digraph {" | |
} | |
PROCESS { |
$ vagrant box add puppetlabs/centos-6.5-64-puppet --force --debug | |
INFO global: Vagrant version: 1.7.0 | |
INFO global: Ruby version: 2.0.0 | |
INFO global: RubyGems version: 2.0.14 | |
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/bin/../embedded/gems/gems/vagrant-1.7.0/bin/vagrant" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/bin/../embedded" | |
INFO global: VAGRANT_INSTALLER_VERSION="2" | |
INFO global: VAGRANT_DETECTED_OS="Linux" | |
INFO global: VAGRANT_INSTALLER_ENV="1" | |
INFO global: VAGRANT_INTERNAL_BUNDLERIZED="1" |
public class ActiveProduct | |
{ | |
private readonly ActiveProductState State = ActiveProductState.Simulated; | |
private readonly SortedList<string, Environment> Environments = new SortedList<string, Environment>(); | |
private readonly ProgramSlots AvailablePrograms = new ProgramSlots(this) { HIStartIndex = 0 }; | |
private readonly ProgramSlots AccessoryPrograms = new ProgramSlots(this) { CanRemoveOverride = true, StartIndex = 4, IsAutoShifting = false }; | |
private readonly ProgramSlots VirtualPrograms = new ProgramSlots(this) { IsVirtual = true, CanRemoveOverride = true, SlotConfig = Limit.None }; | |
private readonly ProgramCalculator SlotCalculator = new ProgramCalculator(this, false); | |
private readonly ProgramCalculator VirtualCalculator = new ProgramCalculator(this, true); | |
private readonly DFSCalibration DFS = new DFSCalibration(this); |