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
| <svelte:head> | |
| <title>About</title> | |
| </svelte:head> | |
| # markdown heading 1 | |
| ## markdown heading 2 | |
| <h1>About this site</h1> | |
| <p>Hi, I'm Paul, I'm working on teaching myself more front end development with <a href="svelte.dev">Svelte.js</a> and Sapper </p> |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
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
| public static float TotalRowHeights( | |
| Document document, PdfContentByte content, | |
| PdfPTable table, params int[] wantedRows) | |
| { | |
| float height = 0f; | |
| ColumnText ct = new ColumnText(content); | |
| // respect current Document.PageSize | |
| ct.SetSimpleColumn( | |
| document.Left, document.Bottom, | |
| document.Right, document.Top |
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
| public class DataflowTestPipeline | |
| { | |
| public TransformBlock<Thing, Thing> MainBlock { get; set; } | |
| public TransformBlock<Thing, Thing> Block1 { get; set; } | |
| public TransformBlock<Thing, Thing> Block2 { get; set; } | |
| public TransformBlock<Thing, Thing> Block3 { get; set; } | |
| public ActionBlock<Thing> EndBlock { get; set; } | |
| public void CreatePipelineSynchronousWithLinkOptions() | |
| { |
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
| X:\>git clone https://github.com/tknerr/bills-kitchen.git | |
| Cloning into 'bills-kitchen'... | |
| remote: Counting objects: 2486, done. | |
| remote: Compressing objects: 100% (15/15), done. | |
| remote: Total 2486 (delta 6), reused 0 (delta 0), pack-reused 2469 | |
| Receiving objects: 100% (2486/2486), 6.66 MiB | 10.42 MiB/s, done. | |
| Resolving deltas: 100% (1396/1396), done. | |
| Checking connectivity... done. | |
| X:\>cd bills-kitchen |
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
| X:\>cd bills-kitchen | |
| X:\bills-kitchen>rake build | |
| checking cache for 'http://github.com/Maximus5/ConEmu/releases/download/v15.03.05/ConEmuPack.150305.7z' cache-hit: read from 'd49a62084eb696b50d985b064b4c73d6' | |
| extracting 'C:/Users/paul42/AppData/Local/Temp/d20150309-11724-16ajlld/ConEmuPack.150305.7z' to 'X:/bills-kitchen/target/build/tools/conemu' | |
| The system cannot find the path specified. | |
| checking cache for 'http://github.com/mridgers/clink/releases/download/0.4.4/clink_0.4.4_setup.exe' | |
| cache-hit: read from 'd23951f7212c2454a8c5ab899810e3b1' | |
| extracting 'C:/Users/paul42/AppData/Local/Temp/d20150309-11724-1q8pmyn/clink_0.4.4_setup.exe' to 'X:/bills-kitchen/target/build/tools/clink' | |
| The system cannot find the path specified. |
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
| Installing the 'vagrant-toplevel-cookbooks --version '0.2.4'' plugin. This can take a few minutes... | |
| Installed the plugin 'vagrant-toplevel-cookbooks (0.2.4)'! | |
| Installing the 'vagrant-omnibus --version '1.4.1'' plugin. This can take a few minutes... | |
| Installed the plugin 'vagrant-omnibus (1.4.1)'! | |
| Installing the 'vagrant-cachier --version '1.2.0'' plugin. This can take a few minutes... | |
| Bundler, the underlying system Vagrant uses to install plugins, | |
| reported an error. The error is shown below. These errors are usually | |
| caused by misconfigured plugin installations or transient network | |
| issues. The error from Bundler is: |
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
| Failures: | |
| 1) bills kitchen tools installs Terraform 0.3.7 | |
| Failure/Error: run_cmd("terraform --version").should match('0.3.7') | |
| expected "'terraform' is not recognized as an internal or external command,\noperable program or batch file.\n" to match "0.3.7" | |
| Diff: | |
| @@ -1,2 +1,3 @@ | |
| -0.3.7 | |
| +'terraform' is not recognized as an internal or external command, | |
| +operable program or batch file. |
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
| include nodejs | |
| package { 'express': | |
| ensure=>present, | |
| provider=>'npm', | |
| } | |
| file {"/home/vagrant/tmpStuff": | |
| ensure => "directory" |
NewerOlder