ADVERTISEMENT

Pick up the July issue of Agriculture magazine

Published Jul 6, 2023 04:01 pm

AVANT GARDENER


Happy July! It’s the middle of the year already, even though it feels like 2023 has just begun. I hope you’ll take this opportunity to pick up a copy of the July issue of Agriculture magazine. We’ve got an exciting lineup, not to mention several tweaks in the cover and layout. The cover features Pampanga-based Michael Castro of Mr. Chix Farm, a fresh graduate who started farming during the pandemic and now successfully raises free range chickens as well as heritage breeds. We also welcome the resumption of Currents, Dr. Rafael Guerrero III’s long-running aquaculture column. Dr. Guerrero is an academician of the National Academy of Science and Technology (NAST) Philippines and is a focal person for fisheries of the NAST. His column has been a main-stay in the magazine for decades, and we’re very excited to have him back. This month’s column talks about commercially caught freshwater fish in the Philippines. Other articles include news on the renaming of Aerides lawrenceae, a rare species of albino orchid, the difference between ipil and ipil-ipil (Did you know they were different?), and the difference between apiculture and meliponiculture. As July heralds the start of the rainy season, we have tips on protecting crops from heavy rains and strong winds, as well as a piece on why goats should not be grazed during wet weather and what to do instead. There are also articles on the benefits of subjecting pili plants to stress, as well as the commercial opportunities in using dayami to produce clean fuel. Also this month, public school teacher and Agriculture magazine reader Teofilo S. Tabuan Jr. tells us about his fun, relaxing, and profitable side hustle as a lettuce farmer. Agriculture continues to be an underserved yet highly important part of the Philippine economy in terms of revenue and food sustainability (or promise thereof). Every year sees more and more farmers discourage their children from going into the same industry. At the same time, we see optimistic, highly motivated, strategic individuals enter the industry knowing full well how volatile it can be yet using their backgrounds in seemingly unrelated industries to succeed. Many agriculture practitioners know that industries such as business, entrepreneurship, and marketing aren’t unrelated, but are actually important to success in the industry, yet this is something that still needs to become common knowledge. Aside from an interest in farming or fishing, one must also have a strategic mind, a strong stomach, and a source of capital (even starting with a thousand pesos is still capital). Agriculture magazine has been guiding farmers by featuring tips, trends, and inspiring farms and farmers for over two decades. We believe that farming can be a profitable venture as long as it is treated like a business. Let us remove from our consciousness the image of the farmer as someone who tills the land out of passion, without need for compensation. This kind of thinking is reductive and harmful, belittling the efforts of agricultural workers and driving them out of the industry. Instead, let us work towards a just and transparent food and agricultural system where practitioners are paid living wages, not just enough to get by, but enough for a comfortable way of life for themselves and their loved ones. Happy farmers and fishers mean a thriving agriculture industry, and this can only mean well for the rest of the country. I’ve digressed from the main point of this column, which is to encourage you to pick up a copy of Agriculture magazine, but the message still stands: we must support and protect our agriculture workers, and the best way to do that is to show them that their efforts can and do bear fruit.

Related Tags

Yvette Tan AVANT GARDENER
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.