ADVERTISEMENT
970x220

Ilonggo artist and seafarer gives a glimpse of Filipinos' life at sea through his paintings

Joar Songcuya pays homage to fellow maritime workers with 'Atlantiko, Pasipiko, Artiko' exhibit

Published Dec 3, 2021 03:14 pm

 

 

The idea of a life at sea can be an invitation to adventure for many. Sailing on the high waves, feeling the cool salted breeze on your face, and the prospect of gallivanting on different places is a quest not all can experience. But for Filipino maritime workers, it means bidding farewell to their family and other loved ones as they brave the oceans to support the people they’ll be leaving behind. On the ship, homesickness is the main challenge to overcome. That’s why busying themselves while off-duty is a must to keep the sadness at bay.

For Ilonggo marine engineer Joar Songcuya, getting his hands on colors and canvases has been a way for him to cope with his nautical life and an avenue for him to get really in touch with the artist within him.

 

Joar Songcuya

“Since 2011, I started converting my cabin space or my ship bedroom into an art studio,” he says. “My engineering job was really physically demanding but having this art space, making a room for creating art, had made things a little lighter and bearable... I was getting so serious about my art practice that I started to carry rolled canvas cloth aboard my ship assignments. I think I have painted over a hundred paintings and drawings during these sailing years. But most of my paintings are not publicized, or shown in any galleries.”

But that is about to change now with his works being featured at Visayas Islands Visual Arts Exhibition and Conference 2021 (VIVA ExCon 2021), a Visayas-wide biennale. With this year’s theme “Kalibutan: The World in Mind,” Joar, with the help of historian, art critic, and University of the Philippines professor, and curator Dr. Patrick D. Flores, presents his exhibit “Atlantiko, Pasipiko, Artiko.”

Chronicling his journey sailing three of the world’s most prominent bodies of water, the Pacific, the Atlantic, and the Arctic, the exhibit serves as a “window to the waterworld—the world of men and women at sea.”

 

‘Pasipiko ll’

“With a total number of 93,161 registered commercial ships globally, 50 to 70 percent of the crew are of Filipino or Asian origin,” the artist says. “The Philippines is noted as a major supplier of the world's maritime fleet and as an artist who happens to be a sailor, this motivation and passion to retell the story of the ocean in my own impression is more than personal. ‘Kalibutan: The World In Mind’ will present projects that celebrate our very own existence, asking what is our place in the world, what disconnects us, and at the same time what binds us in this small world.”

Through his works, Joar gives a chance for viewers to see these great bodies of water through the gaze of seafarers. Unlike the high-definition images we see online and in print, these aquatic views present nature’s unparalleled beauty veiled by moody brushstrokes.

 

‘Artiko ll’

 

‘Atlantiko l’

“I must say I am not a sailor who became a painter or an artist after 10 years of being at sea. I think I was already a painter or an artist back then who happens to be a sailor,” Joar says. “We all are artists in different expressions, whether you are educated or self-taught, or you are widely exhibited or not at all. This human drive to create something, to create an output serves as a testament to the very existence of mankind under this one small planet.”

Also featured in the biennale are works of revered artists such as Leo Abaya, Lani Maestro, Leandro Locsin, Brenda Fajardo, Lino Severino, Nunelucio Alvarado, Perry Argel, among others.

 

“Atlantiko, Pasipiko, Artiko” is available for viewing at Orange Project Gallery in Bacolod City until Dec. 31, 2021. Click here to know more about the artist and his works.

 

Related Tags

Joar Songcuya Arts and Culture Pasipiko Artiko Atlantiko VIVA ExCon 2021
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.