home.social

Search

1000 results for “Beeks”

  1. 35 minutes of video in 40 seconds showing the bees that didn't leave going back into the hive. maybe.

    #beekeeping #swarm #apiary #bees #BeeVideo #beehive #BeeSwarm

  2. 35 minutes of video in 40 seconds showing the bees that didn't leave going back into the hive. maybe.

    #beekeeping #swarm #apiary #bees #BeeVideo #beehive #BeeSwarm

  3. Photos of the cluster in the tree and the hive afterwards. I didn't realize it till I looked at photos and then went and confirmed with binoculars that there were two clusters so it was more bees than I initially thought. They were all joined up 15 minutes before they all took flight and left.

    #beekeeping #swarm #apiary #bees #beehive #BeeSwarm

  4. I was in the garden and heard a buzz. The East hive swarmed around 11:30, gathered high up in a cypress tree, and at 13:05 were buzzing again and flew off to the southwest. Probably a box of bees.

    #beekeeping #swarm #apiary #bees #BeeVideo #beehive #BeeSwarm

  5. I was in the garden and heard a buzz. The East hive swarmed around 11:30, gathered high up in a cypress tree, and at 13:05 were buzzing again and flew off to the southwest. Probably a box of bees.

    #beekeeping #swarm #apiary #bees #BeeVideo #beehive #BeeSwarm

  6. I was in the garden and heard a buzz. The East hive swarmed around 11:30, gathered high up in a cypress tree, and at 13:05 were buzzing again and flew off to the southwest. Probably a box of bees.

    #beekeeping #swarm #apiary #bees #BeeVideo #beehive #BeeSwarm

  7. I was in the garden and heard a buzz. The East hive swarmed around 11:30, gathered high up in a cypress tree, and at 13:05 were buzzing again and flew off to the southwest. Probably a box of bees.

    #beekeeping #swarm #apiary #bees #BeeVideo #beehive #BeeSwarm

  8. The Green nuc hive was bearding a little today so I put them in a 10-frame deep box. 3+ frames capped brood so I guess the new queen is good.

    The nucs were started 4 weeks ago with swarm cells/queens. In 1 week all that capped brood should start emerging.

    I stacked the Green nuc box on top of the White nuc but it's progressing a lot slower. It started with 2 frames of bees instead of 3 like the Green nuc.

    #beekeeping #bees #beehive #apiary #HiveSplit #NucHive #May23 #honeybees

  9. #weeklyreview 20/2025

    Good running on Sunday with Jan. Wasn’t as chilly as the week before.

    bee stings

    I was recording the buzzing of our bees in front of their hive when I got suddenly stung by one of the bees in the arm. Usually not a big deal for me. It hurts for a few hours but then it’s gone.

    fresh bee sting – immediately applied thermal zapper

    This time however I seem to have had some allergic reaction to the sting. My arm kept swelling until the next day and despite taking anti-histamine and applying cooling stayed pretty swollen. Only towards the end of the week it was mostly gone.

    https://hub.uckermark.social/@maxheadroom/114490101484047978

    Mac’n’Cheese

    No, not the hardware from Cupertino. This time the American version of pasta topped with cheese. I tried the recipe for the first time. Quite heavy. Next time I need to use proper cheese with more taste and color. This was me just using what was available in the fridge.

    Car service

    This week I had to take my car in for it demanded oil service. Driving through the city is always fun – not. The good thing is… the dealership cleaned the car on the outside AND the inside for free 😀

    Hacker Stammtisch

    After a pause last month due to other appointments I went to our monthly grey beard get-together. Hans enthusiastically explained how he wrote a mouse emulator for his latest hardware archeology project using AI code generation. And of course we all concluded that for the simple things AI code gen is useful. Especially for people who know what they’re doing. For all others … it will be the begin of disasters to unfold.

    Traefik upgrade

    Finally upgraded my Traefik instances to Traefik v3. Fortunately the only thing I had to remove in the config of the Traefik container itself was the InfluxDB I no longer use anyway. All other configuration just kept working.

    Post by @maxheadroom View on Mastodon

    Cheap printing on T-Shirts

    A few weeks ago I stumbled over YT video showing someone using bleach and 3D printed stamps to put logos on T-Shirts. Thought that is a neat idea and started to experimenting with it as well.

    Post by @maxheadroom View on Mastodon

    Crisis mode

    This is actually a post scriptum to last week. Since last year I was taking part in disaster recovery training for one of our departments located in India. In case the whole of India should be be unable to work a team in Europe and the US would have to take over the duties of that department until their capacity is restored. Since the department is redundantly set up in India we thought this scenario is highly unlikely. But nevertheless we did the training and even insisted on regular dry run sessions to practice and stay up-to-date.

    Now last week that disaster recovery plan was actually activated in standby mode due to conflict between India & Pakistan.

    And we’ve just recently seen in Europe that it’s not totally unlikely that a whole country goes offline.

    Blocking AI Agents

    I’m running all my services behind Traefik as reverse proxy. Lately I’ve got the impression that AI scrapers are making a up a good portion of my traffic and wanted to block them centrally. Services like Pixelfed and Mastodon bring their own robots.txt to address the problem. But others services do not. I fiddled a bit with Traefik config and think I’ve found a way to centrally serve a robots.txt file via Traefik for all my services.

    I’m using a lean nginx:alpine container to serve this static file. I’ve set up the Traefik labels for this service so it matches the Path /robots.txt for all entry points. Explicitly not putting a Domain name rule. I also gave this rule a very high priority so it’s evaluated first in Traefik for incoming requests. This practically catches all requests for this URI for all my services. No I can centrally manage that file without having to update each individual service.

    services:  robots:    image: nginx:alpine    container_name: robots-server    volumes:      - ./static/robots.txt:/usr/share/nginx/html/robots.txt:ro    labels:      - "traefik.enable=true"      # Router für *alle* Hosts + /robots.txt      - "traefik.http.routers.robots.rule=Path(`/robots.txt`)"      - "traefik.http.routers.robots.entrypoints=web,websecure"      - "traefik.http.routers.robots.priority=3000"      - "traefik.http.routers.robots.service=robots"      - "traefik.http.routers.robots.tls.certresolver=letsencrypt"      - "traefik.http.services.robots.loadbalancer.server.port=80"    networks:      - external_network

    I also found a Plugin for Traefik meanwhile which claims to do just this: https://plugins.traefik.io/plugins/681b2f3fba3486128fc34fae/robots-txt-plugin

    Also a GitHub Repo with a list of bots: https://github.com/ai-robots-txt/ai.robots.txt

    The Traefik Plugin is using this repo … and might not work anymore since GitHub blocks anonymous access to public repos after a few requests.

    Jugendweihe

    On Saturday we attended the “Jugendweihe” (a secular coming-of-age ceremony of eastern Germany) celebrations of my niece. Really lovely lunch and even more awesome river cruise with a charter boat through Berlin. Although it was quite chilly outside on the upper deck we had fun nevertheless.

    I was surprised to see so many herons along the river in the middle of the city. I counted more than 6 in the inner city area between Märkisches Viertel and Charlottenburg.

    It’s a custom to give money as a gift for this special occasion. So I prepared a copy of “Das Kapital” of Karl Marx as a gift box.

    Fediverse Reactions

    #beekeeping #Berlin #enEN #food #Jugendweihe #rivercruise #traefik #weekly #weeklyreview #wochenrueckblick

  10. #weeklyreview 20/2025

    Good running on Sunday with Jan. Wasn’t as chilly as the week before.

    bee stings

    I was recording the buzzing of our bees in front of their hive when I got suddenly stung by one of the bees in the arm. Usually not a big deal for me. It hurts for a few hours but then it’s gone.

    fresh bee sting – immediately applied thermal zapper

    This time however I seem to have had some allergic reaction to the sting. My arm kept swelling until the next day and despite taking anti-histamine and applying cooling stayed pretty swollen. Only towards the end of the week it was mostly gone.

    https://hub.uckermark.social/@maxheadroom/114490101484047978

    Mac’n’Cheese

    No, not the hardware from Cupertino. This time the American version of pasta topped with cheese. I tried the recipe for the first time. Quite heavy. Next time I need to use proper cheese with more taste and color. This was me just using what was available in the fridge.

    Car service

    This week I had to take my car in for it demanded oil service. Driving through the city is always fun – not. The good thing is… the dealership cleaned the car on the outside AND the inside for free 😀

    Hacker Stammtisch

    After a pause last month due to other appointments I went to our monthly grey beard get-together. Hans enthusiastically explained how he wrote a mouse emulator for his latest hardware archeology project using AI code generation. And of course we all concluded that for the simple things AI code gen is useful. Especially for people who know what they’re doing. For all others … it will be the begin of disasters to unfold.

    Traefik upgrade

    Finally upgraded my Traefik instances to Traefik v3. Fortunately the only thing I had to remove in the config of the Traefik container itself was the InfluxDB I no longer use anyway. All other configuration just kept working.

    Post by @maxheadroom View on Mastodon

    Cheap printing on T-Shirts

    A few weeks ago I stumbled over YT video showing someone using bleach and 3D printed stamps to put logos on T-Shirts. Thought that is a neat idea and started to experimenting with it as well.

    Post by @maxheadroom View on Mastodon

    Crisis mode

    This is actually a post scriptum to last week. Since last year I was taking part in disaster recovery training for one of our departments located in India. In case the whole of India should be be unable to work a team in Europe and the US would have to take over the duties of that department until their capacity is restored. Since the department is redundantly set up in India we thought this scenario is highly unlikely. But nevertheless we did the training and even insisted on regular dry run sessions to practice and stay up-to-date.

    Now last week that disaster recovery plan was actually activated in standby mode due to conflict between India & Pakistan.

    And we’ve just recently seen in Europe that it’s not totally unlikely that a whole country goes offline.

    Blocking AI Agents

    I’m running all my services behind Traefik as reverse proxy. Lately I’ve got the impression that AI scrapers are making a up a good portion of my traffic and wanted to block them centrally. Services like Pixelfed and Mastodon bring their own robots.txt to address the problem. But others services do not. I fiddled a bit with Traefik config and think I’ve found a way to centrally serve a robots.txt file via Traefik for all my services.

    I’m using a lean nginx:alpine container to serve this static file. I’ve set up the Traefik labels for this service so it matches the Path /robots.txt for all entry points. Explicitly not putting a Domain name rule. I also gave this rule a very high priority so it’s evaluated first in Traefik for incoming requests. This practically catches all requests for this URI for all my services. No I can centrally manage that file without having to update each individual service.

    services:  robots:    image: nginx:alpine    container_name: robots-server    volumes:      - ./static/robots.txt:/usr/share/nginx/html/robots.txt:ro    labels:      - "traefik.enable=true"      # Router für *alle* Hosts + /robots.txt      - "traefik.http.routers.robots.rule=Path(`/robots.txt`)"      - "traefik.http.routers.robots.entrypoints=web,websecure"      - "traefik.http.routers.robots.priority=3000"      - "traefik.http.routers.robots.service=robots"      - "traefik.http.routers.robots.tls.certresolver=letsencrypt"      - "traefik.http.services.robots.loadbalancer.server.port=80"    networks:      - external_network

    I also found a Plugin for Traefik meanwhile which claims to do just this: https://plugins.traefik.io/plugins/681b2f3fba3486128fc34fae/robots-txt-plugin

    Also a GitHub Repo with a list of bots: https://github.com/ai-robots-txt/ai.robots.txt

    The Traefik Plugin is using this repo … and might not work anymore since GitHub blocks anonymous access to public repos after a few requests.

    Jugendweihe

    On Saturday we attended the “Jugendweihe” (a secular coming-of-age ceremony of eastern Germany) celebrations of my niece. Really lovely lunch and even more awesome river cruise with a charter boat through Berlin. Although it was quite chilly outside on the upper deck we had fun nevertheless.

    I was surprised to see so many herons along the river in the middle of the city. I counted more than 6 in the inner city area between Märkisches Viertel and Charlottenburg.

    It’s a custom to give money as a gift for this special occasion. So I prepared a copy of “Das Kapital” of Karl Marx as a gift box.

    Fediverse Reactions

    #beekeeping #Berlin #enEN #food #Jugendweihe #rivercruise #traefik #weekly #weeklyreview #wochenrueckblick

  11. #weeklyreview 20/2025

    Good running on Sunday with Jan. Wasn’t as chilly as the week before.

    bee stings

    I was recording the buzzing of our bees in front of their hive when I got suddenly stung by one of the bees in the arm. Usually not a big deal for me. It hurts for a few hours but then it’s gone.

    fresh bee sting – immediately applied thermal zapper

    This time however I seem to have had some allergic reaction to the sting. My arm kept swelling until the next day and despite taking anti-histamine and applying cooling stayed pretty swollen. Only towards the end of the week it was mostly gone.

    https://hub.uckermark.social/@maxheadroom/114490101484047978

    Mac’n’Cheese

    No, not the hardware from Cupertino. This time the American version of pasta topped with cheese. I tried the recipe for the first time. Quite heavy. Next time I need to use proper cheese with more taste and color. This was me just using what was available in the fridge.

    Car service

    This week I had to take my car in for it demanded oil service. Driving through the city is always fun – not. The good thing is… the dealership cleaned the car on the outside AND the inside for free 😀

    Hacker Stammtisch

    After a pause last month due to other appointments I went to our monthly grey beard get-together. Hans enthusiastically explained how he wrote a mouse emulator for his latest hardware archeology project using AI code generation. And of course we all concluded that for the simple things AI code gen is useful. Especially for people who know what they’re doing. For all others … it will be the begin of disasters to unfold.

    Traefik upgrade

    Finally upgraded my Traefik instances to Traefik v3. Fortunately the only thing I had to remove in the config of the Traefik container itself was the InfluxDB I no longer use anyway. All other configuration just kept working.

    Post by @maxheadroom View on Mastodon

    Cheap printing on T-Shirts

    A few weeks ago I stumbled over YT video showing someone using bleach and 3D printed stamps to put logos on T-Shirts. Thought that is a neat idea and started to experimenting with it as well.

    Post by @maxheadroom View on Mastodon

    Crisis mode

    This is actually a post scriptum to last week. Since last year I was taking part in disaster recovery training for one of our departments located in India. In case the whole of India should be be unable to work a team in Europe and the US would have to take over the duties of that department until their capacity is restored. Since the department is redundantly set up in India we thought this scenario is highly unlikely. But nevertheless we did the training and even insisted on regular dry run sessions to practice and stay up-to-date.

    Now last week that disaster recovery plan was actually activated in standby mode due to conflict between India & Pakistan.

    And we’ve just recently seen in Europe that it’s not totally unlikely that a whole country goes offline.

    Blocking AI Agents

    I’m running all my services behind Traefik as reverse proxy. Lately I’ve got the impression that AI scrapers are making a up a good portion of my traffic and wanted to block them centrally. Services like Pixelfed and Mastodon bring their own robots.txt to address the problem. But others services do not. I fiddled a bit with Traefik config and think I’ve found a way to centrally serve a robots.txt file via Traefik for all my services.

    I’m using a lean nginx:alpine container to serve this static file. I’ve set up the Traefik labels for this service so it matches the Path /robots.txt for all entry points. Explicitly not putting a Domain name rule. I also gave this rule a very high priority so it’s evaluated first in Traefik for incoming requests. This practically catches all requests for this URI for all my services. No I can centrally manage that file without having to update each individual service.

    services:  robots:    image: nginx:alpine    container_name: robots-server    volumes:      - ./static/robots.txt:/usr/share/nginx/html/robots.txt:ro    labels:      - "traefik.enable=true"      # Router für *alle* Hosts + /robots.txt      - "traefik.http.routers.robots.rule=Path(`/robots.txt`)"      - "traefik.http.routers.robots.entrypoints=web,websecure"      - "traefik.http.routers.robots.priority=3000"      - "traefik.http.routers.robots.service=robots"      - "traefik.http.routers.robots.tls.certresolver=letsencrypt"      - "traefik.http.services.robots.loadbalancer.server.port=80"    networks:      - external_network

    I also found a Plugin for Traefik meanwhile which claims to do just this: https://plugins.traefik.io/plugins/681b2f3fba3486128fc34fae/robots-txt-plugin

    Also a GitHub Repo with a list of bots: https://github.com/ai-robots-txt/ai.robots.txt

    The Traefik Plugin is using this repo … and might not work anymore since GitHub blocks anonymous access to public repos after a few requests.

    Jugendweihe

    On Saturday we attended the “Jugendweihe” (a secular coming-of-age ceremony of eastern Germany) celebrations of my niece. Really lovely lunch and even more awesome river cruise with a charter boat through Berlin. Although it was quite chilly outside on the upper deck we had fun nevertheless.

    I was surprised to see so many herons along the river in the middle of the city. I counted more than 6 in the inner city area between Märkisches Viertel and Charlottenburg.

    It’s a custom to give money as a gift for this special occasion. So I prepared a copy of “Das Kapital” of Karl Marx as a gift box.

    Fediverse Reactions

    #beekeeping #Berlin #enEN #food #Jugendweihe #rivercruise #traefik #weekly #weeklyreview #wochenrueckblick

  12. #weeklyreview 20/2025

    Good running on Sunday with Jan. Wasn’t as chilly as the week before.

    bee stings

    I was recording the buzzing of our bees in front of their hive when I got suddenly stung by one of the bees in the arm. Usually not a big deal for me. It hurts for a few hours but then it’s gone.

    fresh bee sting – immediately applied thermal zapper

    This time however I seem to have had some allergic reaction to the sting. My arm kept swelling until the next day and despite taking anti-histamine and applying cooling stayed pretty swollen. Only towards the end of the week it was mostly gone.

    https://hub.uckermark.social/@maxheadroom/114490101484047978

    Mac’n’Cheese

    No, not the hardware from Cupertino. This time the American version of pasta topped with cheese. I tried the recipe for the first time. Quite heavy. Next time I need to use proper cheese with more taste and color. This was me just using what was available in the fridge.

    Car service

    This week I had to take my car in for it demanded oil service. Driving through the city is always fun – not. The good thing is… the dealership cleaned the car on the outside AND the inside for free 😀

    Hacker Stammtisch

    After a pause last month due to other appointments I went to our monthly grey beard get-together. Hans enthusiastically explained how he wrote a mouse emulator for his latest hardware archeology project using AI code generation. And of course we all concluded that for the simple things AI code gen is useful. Especially for people who know what they’re doing. For all others … it will be the begin of disasters to unfold.

    Traefik upgrade

    Finally upgraded my Traefik instances to Traefik v3. Fortunately the only thing I had to remove in the config of the Traefik container itself was the InfluxDB I no longer use anyway. All other configuration just kept working.

    Post by @maxheadroom View on Mastodon

    Cheap printing on T-Shirts

    A few weeks ago I stumbled over YT video showing someone using bleach and 3D printed stamps to put logos on T-Shirts. Thought that is a neat idea and started to experimenting with it as well.

    Post by @maxheadroom View on Mastodon

    Crisis mode

    This is actually a post scriptum to last week. Since last year I was taking part in disaster recovery training for one of our departments located in India. In case the whole of India should be be unable to work a team in Europe and the US would have to take over the duties of that department until their capacity is restored. Since the department is redundantly set up in India we thought this scenario is highly unlikely. But nevertheless we did the training and even insisted on regular dry run sessions to practice and stay up-to-date.

    Now last week that disaster recovery plan was actually activated in standby mode due to conflict between India & Pakistan.

    And we’ve just recently seen in Europe that it’s not totally unlikely that a whole country goes offline.

    Blocking AI Agents

    I’m running all my services behind Traefik as reverse proxy. Lately I’ve got the impression that AI scrapers are making a up a good portion of my traffic and wanted to block them centrally. Services like Pixelfed and Mastodon bring their own robots.txt to address the problem. But others services do not. I fiddled a bit with Traefik config and think I’ve found a way to centrally serve a robots.txt file via Traefik for all my services.

    I’m using a lean nginx:alpine container to serve this static file. I’ve set up the Traefik labels for this service so it matches the Path /robots.txt for all entry points. Explicitly not putting a Domain name rule. I also gave this rule a very high priority so it’s evaluated first in Traefik for incoming requests. This practically catches all requests for this URI for all my services. No I can centrally manage that file without having to update each individual service.

    services:  robots:    image: nginx:alpine    container_name: robots-server    volumes:      - ./static/robots.txt:/usr/share/nginx/html/robots.txt:ro    labels:      - "traefik.enable=true"      # Router für *alle* Hosts + /robots.txt      - "traefik.http.routers.robots.rule=Path(`/robots.txt`)"      - "traefik.http.routers.robots.entrypoints=web,websecure"      - "traefik.http.routers.robots.priority=3000"      - "traefik.http.routers.robots.service=robots"      - "traefik.http.routers.robots.tls.certresolver=letsencrypt"      - "traefik.http.services.robots.loadbalancer.server.port=80"    networks:      - external_network

    I also found a Plugin for Traefik meanwhile which claims to do just this: https://plugins.traefik.io/plugins/681b2f3fba3486128fc34fae/robots-txt-plugin

    Also a GitHub Repo with a list of bots: https://github.com/ai-robots-txt/ai.robots.txt

    The Traefik Plugin is using this repo … and might not work anymore since GitHub blocks anonymous access to public repos after a few requests.

    Jugendweihe

    On Saturday we attended the “Jugendweihe” (a secular coming-of-age ceremony of eastern Germany) celebrations of my niece. Really lovely lunch and even more awesome river cruise with a charter boat through Berlin. Although it was quite chilly outside on the upper deck we had fun nevertheless.

    I was surprised to see so many herons along the river in the middle of the city. I counted more than 6 in the inner city area between Märkisches Viertel and Charlottenburg.

    It’s a custom to give money as a gift for this special occasion. So I prepared a copy of “Das Kapital” of Karl Marx as a gift box.

    Fediverse Reactions

    #beekeeping #Berlin #enEN #food #Jugendweihe #rivercruise #traefik #weekly #weeklyreview #wochenrueckblick

  13. Winter orchard, just behind where I live. My bees forage on the fruit blossom in spring, the honey is delicious!

    #Landscape #NaturePhotography #orchard #farming #rows #trees #winter #beekeeping

  14. The nuc hives seem to be doing good. The green one has more pollen coming in, the white one is taking more syrup.

    #beekeeping #apiary #NucHive #bees #honeybee #NucleusHive #BeeSplit #beehive #May5

  15. I put the oxalic acid pads in the hives today. Each hive gets 50 grams of oxalic acid that is mixed with 50 grams of glycerin. The glycerin is heated to LESS than 170F/76C before the oxalic acid is mixed in and then the Swedish dishcloths are cut in half and soaked in the mixture.

    This was the Center hive that has the most bees.

    No stings, no drama, no surprises.

    #beekeeping #bees #apiary #HiveCheck #March25 #BeeVideo #TheBeeKeeper #CCBYNCND

  16. Put a feeder on my Center hive yesterday with 2:1 syrup. Less than 20 hours and more than a third appears to be gone. This was the high population hive that felt light. Consecutive rainy days forecast and not much to forage on.

    #beekeeping #beehive #apiary #bees #TheBeeKeeper #SugarSyrup #CCBYNCND

  17. Bee-killing pesticides banned in EU found at unsafe levels in English rivers

    Government accused of ‘ignoring science’ as it considers allowing use of a toxic neonicotinoid
    Bee-killing pesticides have been found at dangerous levels in English rivers, as the government considers allowing the use of one that is banned in the EU.

    theguardian.com/environment/20

    #pesticides #neonicotinoids
    #UK #environment #insects #BeeKilling

  18. What do you think? A queen?

    Returning from a mating flight.. It's been 5 days since frames with queen cells were put in the nuc but maybe she was already emerged and I didn't see her. They say 6 days to mature but these are bees so they have their own plans.

    #beekeeping #bees #apiary #beehive #NucHive #April30 #QueenBee #BeeSplit #HiveSplit

  19. Beekeeper
    🎞️ vid by #aguntoaknifefight

    🐝 #TheUntamed
    🐝 #WeiWuxian, #WenQing and #WenNing
    🐝 Music: The Beekeeper by #Dessa
    🐝 Duration 3:45
    🐝 Angst, poignant
    🐝 Exploring the relationships between them

    :ao3: archiveofourown.gay/works/2688

    #VidRec

  20. Bees are bringing in dark yellow pollen today. No hazel pollen and the bees are done with the snowdrops so I'm not sure what they're finding. Tallest daffodil in the warmest spot here is only a few inches sprouted up. Maybe so other kind of early blooming tree around. Whatever it is the bees like it.

    #beekeeping #bees #apiary #honeybees #beehive #March6 #CCBYNCND

  21. This is the "East hive" that has the old queen from the almost 2 years ago swarm. The upper deep box was still heavy so they have plenty of food. No moisture issues from this hive or the "West hive" and it had adequate weight also.

    #beekeeping #bees #apiary #honeybees #beehive #HiveCheck #March3 #CCBYNCND

  22. Checked the hives today to verify they had enough food. This is the 'Center hive' and the quilt box was very wet and had a little mold starting to grow in it. I took all the pine shavings out and wiped it down with some tea tree oil soap after I was done checking them. Lots of bees in this hive and I might have to feed it if the weather turns cool or rainy.

    #beekeeping #bees #apiary #honeybees #beehive #HiveCheck #March3 #CCBYNCND