<?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>DEV Community: Omni Tiger</title>
    <description>The latest articles on DEV Community by Omni Tiger (@omni_tiger_75ee04e39e40df).</description>
    <link>https://dev.to/omni_tiger_75ee04e39e40df</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%2F3583704%2Fa15146e4-87e5-4713-b4f7-eb53757adde8.png</url>
      <title>DEV Community: Omni Tiger</title>
      <link>https://dev.to/omni_tiger_75ee04e39e40df</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/omni_tiger_75ee04e39e40df"/>
    <language>en</language>
    <item>
      <title>The fundamental flaw of traditional software is not complexity, but amnesia.</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Fri, 26 Dec 2025 11:35:17 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/the-fundamental-flaw-of-traditional-software-is-not-complexity-but-amnesia-4hng</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/the-fundamental-flaw-of-traditional-software-is-not-complexity-but-amnesia-4hng</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every launch begins with a blank parameter screen, forgetting the user’s last intent. BatchSubmit starts where work actually begins: a task that already knows how to run.&lt;/p&gt;


&lt;p&gt;BatchSubmit rethinks software not as applications, but as executable tasks — invoked directly, parameterized, and render its own UI on the fly.&lt;/p&gt;


&lt;p&gt;The application is divided into numerous separate tasks, each carry it's own parameters, ready for execution.&lt;/p&gt;


</description>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Replace front end development with task description input file？</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Thu, 27 Nov 2025 10:46:58 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/replace-front-end-development-with-task-description-input-file-5em0</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/replace-front-end-development-with-task-description-input-file-5em0</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://batchsubmit.com/main2.pl" rel="noopener noreferrer"&gt;https://batchsubmit.com/main2.pl&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✅ 1. What front-end development actually does&lt;/p&gt;

&lt;p&gt;A modern front-end has three responsibilities:&lt;/p&gt;

&lt;p&gt;A. UI Rendering&lt;/p&gt;

&lt;p&gt;Buttons, inputs, tables, layouts, navigation.&lt;/p&gt;

&lt;p&gt;B. Input Description / Validation&lt;/p&gt;

&lt;p&gt;What fields exist? What data types? What constraints?&lt;br&gt;
(Your .par file overlaps heavily with this layer.)&lt;/p&gt;

&lt;p&gt;C. Interaction Logic&lt;/p&gt;

&lt;p&gt;Conditionals, dynamic updates, submit handling, error states.&lt;/p&gt;




&lt;p&gt;✅ 2. My idea: replace A+B+C with a task description (.par)&lt;/p&gt;

&lt;p&gt;In my vision:&lt;/p&gt;

&lt;p&gt;The user provides a task file describing:&lt;/p&gt;

&lt;p&gt;Inputs&lt;/p&gt;

&lt;p&gt;Data types&lt;/p&gt;

&lt;p&gt;Execution target (server tool)&lt;/p&gt;

&lt;p&gt;Desired output&lt;/p&gt;

&lt;p&gt;The system generates UI automatically.&lt;/p&gt;

&lt;p&gt;The “front-end” becomes a thin layer that renders a form from the specification.&lt;/p&gt;

&lt;p&gt;This is genuinely feasible and already partially proven by:&lt;/p&gt;

&lt;p&gt;OpenAPI → auto-generated API clients&lt;/p&gt;

&lt;p&gt;Swagger UI → automatically generated front-end from YAML&lt;/p&gt;

&lt;p&gt;Zapier/IFTTT → tasks described declaratively&lt;/p&gt;

&lt;p&gt;LLM agent frameworks → tasks described in JSON&lt;/p&gt;

&lt;p&gt;Low-code / no-code forms like Airtable, Retool, Bubble&lt;/p&gt;

&lt;p&gt;My idea extends this into a unified web-wide task marketplace, which is new and more radical.&lt;/p&gt;




&lt;p&gt;✅ 3. What can be fully replaced by a .par file?&lt;/p&gt;

&lt;p&gt;✔ Form UI&lt;/p&gt;

&lt;p&gt;You don’t need React/Vue/HTML if fields are defined declaratively.&lt;/p&gt;

&lt;p&gt;✔ Input validation&lt;/p&gt;

&lt;p&gt;You can auto-generate validation rules.&lt;/p&gt;

&lt;p&gt;✔ Execution logic&lt;/p&gt;

&lt;p&gt;If the task description names the executable or API endpoint, front-end logic becomes unnecessary.&lt;/p&gt;

&lt;p&gt;✔ App “pages”&lt;/p&gt;

&lt;p&gt;Apps become “tasks”, not “interfaces”.&lt;/p&gt;

&lt;p&gt;This eliminates 70–90% of front-end work for data-entry and computational tools.&lt;/p&gt;




&lt;p&gt;❌ 4. What cannot be fully replaced?&lt;/p&gt;

&lt;p&gt;Some things still need handcrafted UI:&lt;/p&gt;

&lt;p&gt;✗ Highly custom UX (TikTok, Figma, games, dashboards)&lt;/p&gt;

&lt;p&gt;These rely on animation, gestures, pixel-level control.&lt;/p&gt;

&lt;p&gt;✗ Complex real-time interactions&lt;/p&gt;

&lt;p&gt;Chats, multiplayer states, collaborative editors.&lt;/p&gt;

&lt;p&gt;✗ Brand-driven UI&lt;/p&gt;

&lt;p&gt;Companies will still want custom look &amp;amp; feel.&lt;/p&gt;

&lt;p&gt;But here’s the key:&lt;br&gt;
Most software in the world is NOT complex UI.&lt;br&gt;
Most is “input fields → compute → output”, which is exactly where your paradigm wins.&lt;/p&gt;




&lt;p&gt;✅ 5. What actually happens if my system takes off?&lt;/p&gt;

&lt;p&gt;Front-end developers stop building forms and UI widgets.&lt;/p&gt;

&lt;p&gt;Instead they:&lt;/p&gt;

&lt;p&gt;write schemas (par files)&lt;/p&gt;

&lt;p&gt;write tasks&lt;/p&gt;

&lt;p&gt;write compute modules&lt;/p&gt;

&lt;p&gt;write validation rules&lt;/p&gt;

&lt;p&gt;publish these into a “task marketplace”&lt;/p&gt;

&lt;p&gt;Front-end becomes presentation around tasks, not core mechanics.&lt;/p&gt;

&lt;p&gt;It’s like moving from:&lt;/p&gt;

&lt;p&gt;build a webpage with UI&lt;/p&gt;

&lt;p&gt;to:&lt;/p&gt;

&lt;p&gt;define what inputs you need; system renders UI itself&lt;/p&gt;

&lt;p&gt;This is exactly the “TBL invented HTML → GUI toolkits evaporated” dynamic.&lt;/p&gt;




&lt;p&gt;🔥 6. Why big tech hasn’t done it&lt;/p&gt;

&lt;p&gt;Because my idea disintermediates apps.&lt;/p&gt;

&lt;p&gt;If tasks are primitives:&lt;/p&gt;

&lt;p&gt;No need for App Stores&lt;/p&gt;

&lt;p&gt;No need for custom websites for basic functions&lt;/p&gt;

&lt;p&gt;No need for proprietary UI frameworks&lt;/p&gt;

&lt;p&gt;Users skip the “mall entrance” and go directly to the shop/task&lt;/p&gt;

&lt;p&gt;Value moves from app companies → task providers&lt;/p&gt;

&lt;p&gt;This is exactly why my paradigm breaks the current ecosystem.&lt;/p&gt;




&lt;p&gt;🚀 7. My verdict&lt;/p&gt;

&lt;p&gt;Yes: A task description input file can replace most front-end development.&lt;br&gt;
It won’t eliminate all UIs, but it can eliminate:&lt;/p&gt;

&lt;p&gt;90% of forms&lt;/p&gt;

&lt;p&gt;90% of dashboards&lt;/p&gt;

&lt;p&gt;95% of CRUD apps&lt;/p&gt;

&lt;p&gt;most app store apps&lt;/p&gt;

&lt;p&gt;most SaaS micro-tools&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>architecture</category>
      <category>web</category>
    </item>
    <item>
      <title>Revolutionizing Software Development: Task-Centric Interface and Parameter Encapsulation</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Tue, 18 Nov 2025 13:37:37 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/revolutionizing-software-development-task-centric-interface-and-parameter-encapsulation-3b7o</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/revolutionizing-software-development-task-centric-interface-and-parameter-encapsulation-3b7o</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In a world where software complexity continues to grow, most applications still rely on traditional development paradigms—focusing on modules, code structure, and feature implementation. But what if there were a simpler, more intuitive way to create and use software?&lt;/p&gt;

&lt;p&gt;Introducing a task-centric development paradigm, where applications are defined by the tasks they accomplish, and all parameters are encapsulated within intuitive interfaces. This is not just a new software tool—it is a fundamental shift in how we think about software design and usage.&lt;/p&gt;




&lt;p&gt;Key Features&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Task-Oriented Design&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Each application is built around the task it is meant to perform.&lt;/p&gt;

&lt;p&gt;Users interact directly with the task, not the underlying software code.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Parameter Encapsulation&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;All complex configurations and workflows are embedded in the interface.&lt;/p&gt;

&lt;p&gt;Users only need to adjust parameters through simple controls—no coding required.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Composable and Reusable Tasks&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Individual tasks are independent units that can be combined and reused across projects.&lt;/p&gt;

&lt;p&gt;This allows rapid assembly of complex workflows with minimal effort.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;User-Friendly and Accessible&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No specialized training is needed.&lt;/p&gt;

&lt;p&gt;Anyone can complete complex tasks efficiently by interacting with the task-level interface.&lt;/p&gt;




&lt;p&gt;Why It Matters&lt;/p&gt;

&lt;p&gt;Dramatically reduces development cost&lt;/p&gt;

&lt;p&gt;Minimizes user errors by guiding workflow through encapsulated parameters&lt;/p&gt;

&lt;p&gt;Enables rapid innovation through reusable task components&lt;/p&gt;

&lt;p&gt;Transforms the software development mindset: from coding tools to creating task ecosystems&lt;/p&gt;




&lt;p&gt;The Paradigm Shift&lt;/p&gt;

&lt;p&gt;Traditional software asks users to understand tools. Task-centric design asks users to focus on what they want to accomplish. The software becomes a seamless medium, transforming complex operations into intuitive, actionable tasks.&lt;/p&gt;

&lt;p&gt;This is more than just a platform—it is the next step in software evolution. By thinking in tasks rather than code, we unlock a future where software serves users, not the other way around.&lt;/p&gt;




&lt;p&gt;Experience the future of software. Task-centric. Parameter-encapsulated. Effortless.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>architecture</category>
      <category>cloud</category>
    </item>
    <item>
      <title>The Divide of Interfaces: Fear and Familiarity</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Mon, 10 Nov 2025 15:09:28 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/the-divide-of-interfaces-fear-and-familiarity-59ah</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/the-divide-of-interfaces-fear-and-familiarity-59ah</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For non-programmers, a programming interface often evokes fear — lines of code, command prompts, and parameter fields seem to whisper: this world is not for you.&lt;/p&gt;

&lt;p&gt;Programmers, on the other hand, feel the opposite. To them, such an interface feels like home — it speaks their native language, gives them control, and invites them to explore.&lt;/p&gt;

&lt;p&gt;Ironically, when those same programmers face a sleek but closed web interface, they often hesitate: What’s hidden behind this surface? What can I change? Am I still in control?&lt;/p&gt;

&lt;p&gt;Thus, the same interface can be a barrier to one person, and a home to another.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>cloud</category>
      <category>architecture</category>
    </item>
    <item>
      <title>BatchSubmit turn command line legacy programs into web applications</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Sun, 09 Nov 2025 20:09:26 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/batchsubmit-turn-command-line-legacy-programs-into-web-applications-4pen</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/batchsubmit-turn-command-line-legacy-programs-into-web-applications-4pen</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A long-established software company has developed a suite of legacy professional applications in Fortran, COBOL, R, and Python. These tools, while powerful, were designed for programmers and not easily accessible to non-technical users.&lt;br&gt;
By adopting BatchSubmit, the company transformed its command-line programs into Web applications. This platform bridges complex backend code and end users, allowing anyone to run sophisticated computations simply by filling out a web form—without programmer assistance. The result is improved efficiency, reduced human error, and a modernized workflow.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>cloud</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Batchsubmit.com：Makes batch computing as simple as uploading a file</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Thu, 30 Oct 2025 09:57:35 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/batchsubmitcommakes-batch-computing-as-simple-as-uploading-a-file-20k2</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/batchsubmitcommakes-batch-computing-as-simple-as-uploading-a-file-20k2</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;1 point by casper62 0 minutes ago | hide | past | favorite | edit | delete&lt;br&gt;
In traditional cloud computing, scheduling and execution are handled by two separate systems.&lt;br&gt;
A scheduler assigns jobs and injects parameters, while the executor simply runs the code — a process that’s often complex and tightly coupled.&lt;/p&gt;

&lt;p&gt;BatchSubmit.com redefines this model. With its innovative “Parameter as File” mechanism, every job carries its own execution parameters. That means:&lt;/p&gt;

&lt;p&gt;Each job is a self-contained executable unit.&lt;/p&gt;

&lt;p&gt;Scheduling and execution are natively unified, no external scheduler needed.&lt;/p&gt;

&lt;p&gt;Any node can execute the job immediately upon receiving it — lightweight and efficient.&lt;/p&gt;

&lt;p&gt;Perfect for large-scale distributed and scientific computing.&lt;/p&gt;

&lt;p&gt;Simpler architecture. Higher efficiency.&lt;/p&gt;

&lt;p&gt;With BatchSubmit.com, upload, submit, and execute — all in one seamless flow.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Give Your Legacy Software a New Life</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Mon, 27 Oct 2025 12:23:18 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/give-your-legacy-software-a-new-life-5dk4</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/give-your-legacy-software-a-new-life-5dk4</guid>
      <description>&lt;p&gt;Many companies still rely on command-line tools developed years ago, which are inconvenient for users to run and maintain. With BatchSubmit, these tools can be wrapped in a lightweight “shell” and instantly transformed into web-accessible applications. BatchSubmit also provides centralized monitoring and log management, allowing businesses to easily track program execution, reduce maintenance overhead, and improve overall efficiency.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>architecture</category>
      <category>cloud</category>
      <category>opensource</category>
    </item>
    <item>
      <title>BatchSubmit.com: The Resurrection of Mainframe JCL</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Mon, 27 Oct 2025 09:42:14 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/batchsubmitcom-the-resurrection-of-mainframe-jcl-26am</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/batchsubmitcom-the-resurrection-of-mainframe-jcl-26am</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://BatchSubmit.com" rel="noopener noreferrer"&gt;http://BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For decades, Mainframe JCL (Job Control Language) was the silent powerhouse behind the world’s most critical systems — banking, insurance, and government computing. It defined precision, reliability, and efficiency long before “the cloud” was even imagined.&lt;/p&gt;

&lt;p&gt;But as the tech landscape shifted, JCL was left behind — a language whispered only in legacy systems and dusty data centers. Until now.&lt;/p&gt;

&lt;p&gt;BatchSubmit.com brings JCL back to life — not as a relic, but as a rebirth.&lt;br&gt;
We’ve reimagined the classic batch paradigm for the cloud era:&lt;/p&gt;

&lt;p&gt;Instant submission of jobs from anywhere, without the heavyweight mainframe environment.&lt;/p&gt;

&lt;p&gt;Parameter-as-file design — so users can easily modify, reuse, and share configurations.&lt;/p&gt;

&lt;p&gt;Cross-language support for Python, R, Perl, and more — all wrapped in a familiar batch execution model.&lt;/p&gt;

&lt;p&gt;Web-native simplicity — run, monitor, and share jobs through a browser, just like submitting JCL to a virtual mainframe.&lt;/p&gt;

&lt;p&gt;BatchSubmit doesn’t just emulate the old; it evolves it.&lt;br&gt;
It’s for developers who appreciate the order of JCL but demand the agility of the modern cloud.&lt;br&gt;
It’s for teams who want automation without the overhead of complex orchestration systems.&lt;br&gt;
It’s for the new generation rediscovering the power of batch.&lt;/p&gt;

&lt;p&gt;The spirit of Mainframe JCL lives again —&lt;br&gt;
in the cloud, in your browser, and in the simplicity of BatchSubmit.com.&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>cloud</category>
    </item>
    <item>
      <title>From Manual Execution to Cloud Automation — How BatchSubmit Simplified Data Analysis</title>
      <dc:creator>Omni Tiger</dc:creator>
      <pubDate>Sun, 26 Oct 2025 15:10:21 +0000</pubDate>
      <link>https://dev.to/omni_tiger_75ee04e39e40df/from-manual-execution-to-cloud-automation-how-batchsubmit-simplified-data-analysis-50al</link>
      <guid>https://dev.to/omni_tiger_75ee04e39e40df/from-manual-execution-to-cloud-automation-how-batchsubmit-simplified-data-analysis-50al</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/socaltiger/BatchSubmit.com" rel="noopener noreferrer"&gt;https://github.com/socaltiger/BatchSubmit.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Richard, a programmer in a company’s data analytics department, had spent years developing around ten R and Python programs that generated critical business reports.&lt;br&gt;
These reports were regularly used by his colleagues — Cindy, Joyce, Jean, and Thea.&lt;/p&gt;

&lt;p&gt;However, while the programs were powerful, they weren’t easy to use.&lt;br&gt;
The team members, though highly skilled in business analysis, were not familiar with command-line tools.&lt;br&gt;
Each time a report needed to be generated, they had to ask Richard to run the scripts, adjust parameters, and export the results manually.&lt;br&gt;
Over time, these repetitive tasks consumed much of Richard’s day and slowed down the team’s workflow.&lt;/p&gt;

&lt;p&gt;To solve this problem, Richard decided to build a smarter solution.&lt;br&gt;
Using the BatchSubmit platform, he created an internal cloud system where all the R and Python programs were deployed with simple web interfaces.&lt;br&gt;
Now, instead of dealing with code or terminals, users could run the programs directly from their browsers—just by filling in parameters and clicking “Run.”&lt;/p&gt;

&lt;p&gt;Even better, BatchSubmit supported cron job scheduling, allowing automated and recurring report generation.&lt;/p&gt;

&lt;p&gt;After deployment:&lt;/p&gt;

&lt;p&gt;Cindy started receiving her daily sales reports automatically;&lt;/p&gt;

&lt;p&gt;Joyce no longer worried about program errors;&lt;/p&gt;

&lt;p&gt;Jean and Thea could easily trigger and download reports on their own;&lt;/p&gt;

&lt;p&gt;And Richard finally had more time for meaningful work—optimizing algorithms and building new tools.&lt;/p&gt;

&lt;p&gt;BatchSubmit not only improved efficiency but also transformed complex code into an accessible, user-friendly service for everyone.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;BatchSubmit — making the power of code available to all.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>cloud</category>
    </item>
  </channel>
</rss>
