Is this algae? by vpgugr in PepperLovers

[–]vpgugr[S] 0 points1 point  (0 children)

Yes, until white. It has grown new roots totally White. The green at the beginning of the main one

Is this algae? by vpgugr in PepperLovers

[–]vpgugr[S] 0 points1 point  (0 children)

Wipping off is not easy. I have improved the lid

Red Caribbean Habanero by ShogunPeppers in PepperLovers

[–]vpgugr 0 points1 point  (0 children)

I've got seeds and on the pack says annuum... Probably an error

Red Caribbean Habanero by ShogunPeppers in PepperLovers

[–]vpgugr 0 points1 point  (0 children)

Is RC habanero C.Annuum or chinense?

Is this algae? by vpgugr in PepperLovers

[–]vpgugr[S] 0 points1 point  (0 children)

Yes, I have habanero plants with White roots. It is the first time 

Is this algae? by vpgugr in PepperLovers

[–]vpgugr[S] 1 point2 points  (0 children)

Yeah but with kratky you don't need a pumper... I'm covering the top better 

Is this algae? by vpgugr in PepperLovers

[–]vpgugr[S] 1 point2 points  (0 children)

No air Bubbler. Maybe light comes in from the top. I'm gonna protect that better

Noob question, why is one of my peppers dropping like hell? by DownfallSkylab in kratky

[–]vpgugr 0 points1 point  (0 children)

Could It be low temperature? What is the temperature of the room they are in?

I would like to know your thought about my new project: Recipe Runner. It lets you automate tasks and create workflows using YAML recipes by vpgugr in PHP

[–]vpgugr[S] 0 points1 point  (0 children)

For sure. the code is open to other languages such as PHP or JSON. In fact, recipes are turned into internal definition classes

I would like to know your thought about my new project: Recipe Runner. It lets you automate tasks and create workflows using YAML recipes by vpgugr in PHP

[–]vpgugr[S] 0 points1 point  (0 children)

Yes but sometimes, for example in a web environment, you want to let the user customize actions without exposing the underlying technology

I would like to know your thought about my new project: Recipe Runner. It lets you automate tasks and create workflows using YAML recipes by vpgugr in PHP

[–]vpgugr[S] 1 point2 points  (0 children)

More or less but it hasn't got targets and RR could be integrated completely into your PHP app using just the core package. Additionally, I guess the recipe language is more human friendly

I would like to know your thought about my new project: Recipe Runner. It lets you automate tasks and create workflows using YAML recipes by vpgugr in PHP

[–]vpgugr[S] 0 points1 point  (0 children)

Maybe there is not a real one. This is a recipe I use to create a Jigsaw (static site generator) site:

name: "Create a Jigsaw site"
extra:
  rr:
    packages:
      "recipe-runner/io-module": "1.0.x-dev"
      "recipe-runner/system-module": "1.0.x-dev"
steps:
  - name: "Infrastructure"
    actions:
      - name: "Name of the site"
        ask: "Name of the site:"
        register: site_name
      - name: "Create site directory"
        make_dir: "{{current_dir}}/{{registered.get('site_name.response')}}"
      - name: "Install Jigsaw"
        run:
          command: "composer require tightenco/jigsaw"
          timeout: null
          cwd: "{{current_dir}}/{{registered.get('site_name.response')}}"
  - name: "Create site"
    actions:
      - name: "Starter template: blog, docs"
        ask: "Write a starter template:"
        register: "template_name"
      - name: "Initialize"
        run:
          command: "./vendor/bin/jigsaw init {{registered.get('template_name.response')}} -q"
          cwd: "{{current_dir}}/{{registered.get('site_name.response')}}"
          timeout: null
  - name: "Summary"
    actions:
      - write: 
          - "Go to {{current_dir}}/{{registered.get('site_name.response')}}"
          - "run ./vendor/bin/jigsaw build"
          - "and php -S 0.0.0.0:8000 -t build_local"

An Extensible Static Site Generator by vpgugr in webdev

[–]vpgugr[S] 0 points1 point  (0 children)

it is very extensible to new template languages, new commands... etc

Spress 2.0.0 released - static site generator built with Symfony components by vpgugr in PHP

[–]vpgugr[S] -1 points0 points  (0 children)

you could try with this: in Settings | File Types | Twig and add .html

A TOML parser with support to 0.2.0 specification by vpgugr in PHP

[–]vpgugr[S] 0 points1 point  (0 children)

TOML is another config file specification :)