<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Bruno C Perez</title>
    <description>The latest articles on Forem by Bruno C Perez (@silenciobrpz1985).</description>
    <link>https://forem.com/silenciobrpz1985</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3599824%2F9d914809-bb93-4320-ad1e-8e791c6dcfd6.png</url>
      <title>Forem: Bruno C Perez</title>
      <link>https://forem.com/silenciobrpz1985</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/silenciobrpz1985"/>
    <language>en</language>
    <item>
      <title>SilencioHardwareStore - Mobile App</title>
      <dc:creator>Bruno C Perez</dc:creator>
      <pubDate>Thu, 06 Nov 2025 21:23:48 +0000</pubDate>
      <link>https://forem.com/silenciobrpz1985/silenciohardwarestore-mobile-app-26k3</link>
      <guid>https://forem.com/silenciobrpz1985/silenciohardwarestore-mobile-app-26k3</guid>
      <description>&lt;p&gt;🚀 SilencioHardwareStore: A Powerful Android App for Hardware Comparison&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://silenciopz.neocities.org/" rel="noopener noreferrer"&gt;https://silenciopz.neocities.org/&lt;/a&gt;&lt;br&gt;
My GitHub: &lt;a href="https://github.com/SilencioPz/hardware_compare" rel="noopener noreferrer"&gt;https://github.com/SilencioPz/hardware_compare&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hey dev community! 👋 I'm excited to share my latest project - Silencio Hardware Store, a comprehensive Android application built with Kotlin and Jetpack Compose that helps users compare computer hardware components and analyze gaming performance.&lt;br&gt;
🎯 What It Does&lt;/p&gt;

&lt;p&gt;Silencio Hardware Store is your go-to mobile companion for making informed hardware decisions. Here's what it offers:&lt;br&gt;
🔍 Core Features&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CPU Comparison: Compare processors side-by-side with detailed specifications

GPU Comparison: Analyze graphics cards with comprehensive benchmarks

Gaming Performance Calculator: Calculate bottlenecks and performance for specific games

Smart Analysis: Get intelligent recommendations based on your hardware selection
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;🛠️ Technical Highlights&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Built with: Kotlin, Jetpack Compose, Material Design 3

Architecture: Clean, modular codebase with MVVM pattern

Performance: Optimized for smooth scrolling and fast comparisons

Responsive: Adapts beautifully to different screen sizes and orientations
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;💻 Code Quality &amp;amp; Structure&lt;/p&gt;

&lt;p&gt;The app features a well-organized architecture:&lt;br&gt;
kotlin&lt;/p&gt;

&lt;p&gt;// Clean navigation system&lt;br&gt;
enum class AppScreen {&lt;br&gt;
    MAIN_MENU, CPU_COMPARISON, GPU_COMPARISON, GAME_PERFORMANCE&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;// Responsive UI components&lt;br&gt;
@Composable&lt;br&gt;
fun CpuComparisonScreen(onBackClick: () -&amp;gt; Unit = {}) {&lt;br&gt;
    // Advanced filtering and search capabilities&lt;br&gt;
    val filteredCpus = remember(cpus, searchQuery) {&lt;br&gt;
        if (searchQuery.isBlank()) cpus&lt;br&gt;
        else cpus.filter { cpu -&amp;gt; /* smart filtering */ }&lt;br&gt;
    }&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;🌟 Key Features Implemented&lt;br&gt;
Smart Search &amp;amp; Filtering&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Real-time search across CPU/GPU databases

Advanced filtering by brand (AMD/Intel), specifications, and performance

Landscape and portrait mode support
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Detailed Comparisons&lt;br&gt;
kotlin&lt;/p&gt;

&lt;p&gt;@Composable&lt;br&gt;
fun ComparisonFullScreen(cpu1: Cpu, cpu2: Cpu, benchmarkUtils: BenchmarkUtils) {&lt;br&gt;
    // Comprehensive comparison tables&lt;br&gt;
    // Performance metrics and thermal analysis&lt;br&gt;
    // Winner determination with detailed advantages&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Gaming Performance Analysis&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Bottleneck calculation

Resolution-based performance scaling

Hardware adequacy assessment

Temperature and stability risk analysis
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;🌎 Coming Soon: Internationalization!&lt;/p&gt;

&lt;p&gt;🚨 IMPORTANT UPDATE: I'm currently working on implementing American English localization for the entire application!&lt;br&gt;
What to Expect:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;✅ Language Toggle Button: Easy switch between Portuguese and English

✅ Complete UI Translation: All screens, menus, and labels

✅ Technical Terminology: Proper hardware terminology for English-speaking users

✅ Cultural Adaptation: UI/UX optimized for international audience
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Why This Matters:&lt;br&gt;
kotlin&lt;/p&gt;

&lt;p&gt;// Planned implementation&lt;br&gt;
var currentLanguage by remember { mutableStateOf(AppLanguage.PORTUGUESE) }&lt;/p&gt;

&lt;p&gt;LanguageSwitchButton(&lt;br&gt;
    currentLanguage = currentLanguage,&lt;br&gt;
    onLanguageChanged = { newLanguage -&amp;gt;&lt;br&gt;
        // Dynamic resource loading&lt;br&gt;
        // UI refresh with new language&lt;br&gt;
    }&lt;br&gt;
)&lt;/p&gt;

&lt;p&gt;This update will make Silencio Hardware Store accessible to the global hardware enthusiast community!&lt;br&gt;
🎨 UI/UX Excellence&lt;/p&gt;

&lt;p&gt;The app features a stunning dark theme with:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Material Design 3 components

Smooth animations and transitions

Intuitive navigation patterns

Accessibility considerations

Responsive layouts for all devices
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;🔮 Future Roadmap&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;English Localization (In Progress)

More hardware components (RAM, Storage, Motherboards)

Real-time price comparisons

User profiles and saved configurations

Community benchmarks and reviews
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;📱 Try It Out!&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://silenciopz.neocities.org/" rel="noopener noreferrer"&gt;https://silenciopz.neocities.org/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The app is perfect for:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;🎮 Gamers planning PC builds

💻 Professionals comparing workstation components

🔧 Technicians making upgrade recommendations

🏪 Store owners demonstrating product comparisons
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;💬 Let's Connect!&lt;/p&gt;

&lt;p&gt;I'd love to hear your thoughts on:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;The UI/UX design

Additional features you'd like to see

Your experience with hardware comparison apps

Suggestions for the English localization
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Check out the code and contribute on GitHub!&lt;/p&gt;

</description>
      <category>kotlin</category>
      <category>android</category>
      <category>development</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
