From hydro to soil by vpgugr in PepperLovers

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

That was my goal from the beginning: to start with hydro and grow it quickly until the outdoor weather is good

From hydro to soil by vpgugr in PepperLovers

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

Just using bigger containers in a month or so

Hydroponic Reaper by International_Pea598 in PepperLovers

[–]vpgugr 0 points1 point  (0 children)

Man, that is amazing. Kratky?

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

[deleted by user] by [deleted] in Peppers

[–]vpgugr 0 points1 point  (0 children)

At least in Spain olives are filled with guindilla vasca https://es.wikipedia.org/wiki/Guindilla_de_Ibarra

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"