Project Updates

 

Project Updates

Stay informed about PinoyLinux development progress, roadmap updates, website changes, community announcements, release notes, events, and opportunities to contribute. We believe in transparent, community-driven development.

Current Phase

Community Platform Buildout

Latest Release

Website Structure Update v0.3

Active Contributors

12

Next Milestone

Learning Path Expansion

Featured Update

What We Share Here

We believe in transparent development. Here are the types of updates you’ll find on this page.

🗺️

Roadmap Updates

Strategic plans, project direction, and long-term goals for PinoyLinux development.

🌐

Website Changes

New features, design improvements, and structural updates to the PinoyLinux website.

👥

Community Announcements

News, discussions, and opportunities for community engagement and collaboration.

✍️

Contributor Updates

Recognition of contributors, guidelines, and opportunities to get involved in the project.

📦

Release Notes

Official releases, version updates, and major feature announcements.

💻

Development Progress

Technical updates, feature development status, and coding milestones.

📅

Event Announcements

Upcoming community events, workshops, webinars, and learning sessions.

🧪

Calls for Contributors

Opportunities to help test features, review content, and improve the project.

Recent Updates

Browse all recent project updates or filter by category









Website

PinoyLinux Content Taxonomy Cleanup

June 24, 2026

We cleaned up the Topics+ structure by grouping articles into clearer parent and child categories. This makes navigation more intuitive and helps Filipino learners find relevant Linux content faster.

Development

DNS Engineering Series Started

June 23, 2026

A new technical article series about DNS steering and authoritative DNS traffic direction is now in progress. This advanced series will help system administrators understand DNS architecture.

Community

Community Suggest a Topic Page Added

June 22, 2026

Readers can now suggest Linux topics, tutorials, and troubleshooting guides for future content. We want to create resources that the Filipino Linux community actually needs.

Roadmap

PinoyLinux Roadmap Draft Published

June 20, 2026

The first public roadmap draft explains the direction for learning resources, community growth, and open-source collaboration. We’re committed to transparency in our development process.

Contributors

Contributor Guide Being Prepared

June 18, 2026

A contributor guide is being prepared to help writers, testers, designers, and Linux users take part in the project. Everyone has something valuable to contribute.

Releases

Website Navigation v0.3 Released

June 16, 2026

The main menu now highlights Home, Resources, Learn Linux, Topics+, Community, and Contribute sections. Navigation is cleaner and more user-friendly across all devices.

Development

Linux Learning Path Planning Started

June 14, 2026

A structured beginner-to-advanced Linux learning path is being planned for Filipino learners. This will guide newcomers through their Linux journey step by step.

Events

First Online Community Session Planned

June 12, 2026

PinoyLinux is preparing a short online session about getting started with Linux and open-source tools. This will be a welcoming space for beginners to ask questions.

Testing

Call for Article Reviewers

June 10, 2026

We are looking for volunteers who can review Linux tutorials for clarity, correctness, and beginner readability. Your feedback helps us create better learning materials.

Website

Security Category Review Started

June 8, 2026

Security-related posts are being reviewed and grouped under clearer privacy and security topics. We’re committed to helping Filipinos learn about cybersecurity best practices.

Community

Community Forum Planning Phase

June 6, 2026

Initial planning for a community discussion forum where Filipino Linux users can help each other, share experiences, and build connections.

Development

Tutorial Template System Created

June 4, 2026

Standardized tutorial templates ensure consistent quality and structure across all learning materials. This makes it easier for contributors to create new content.

Project Roadmap

Our development journey is divided into clear phases. Here’s where we are and where we’re headed.

In Progress

Phase 1: Website and Content Structure

Building a solid foundation with clear content organization, intuitive navigation, and essential pages for the PinoyLinux community.

Next

Phase 2: Learning Paths and Beginner Guides

Creating structured learning paths from beginner to advanced, with hands-on tutorials and practical exercises for Filipino learners.

Planned

Phase 3: Community Contributions

Opening contribution channels for writers, reviewers, and translators. Building tools and guidelines to make contributing easy and rewarding.

Future

Phase 4: PinoyLinux OS Planning

Long-term vision for a Filipino-optimized Linux distribution with localized tools, documentation, and community support infrastructure.

Help Build PinoyLinux

PinoyLinux is built by Filipinos, for Filipinos. Whether you’re a writer, developer, designer, tester, or simply passionate about open source and Linux education, there’s a place for you in our community. Your contribution helps make Linux more accessible to Filipino learners.

filterButtons.forEach(button => { button.addEventListener('click', () => { // Remove active class from all buttons filterButtons.forEach(btn => btn.classList.remove('active'));

// Add active class to clicked button button.classList.add('active');

// Get filter value const filterValue = button.getAttribute('data-filter');

// Filter update cards updateCards.forEach(card => { const cardCategory = card.getAttribute('data-category');

if (filterValue === 'all') { card.classList.remove('hidden'); } else if (cardCategory === filterValue) { card.classList.remove('hidden'); } else { card.classList.add('hidden'); } }); }); });

// Smooth scrolling for anchor links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { const href = this.getAttribute('href'); if (href !== '#') { e.preventDefault(); const target = document.querySelector(href); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } } }); });

This website uses cookies.