<?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: Taiwo Hassan</title>
    <description>The latest articles on DEV Community by Taiwo Hassan (@mr-taiwo).</description>
    <link>https://dev.to/mr-taiwo</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%2F881776%2Fe2aa395a-a3a8-4c1f-a38c-6158fc21d1b7.png</url>
      <title>DEV Community: Taiwo Hassan</title>
      <link>https://dev.to/mr-taiwo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mr-taiwo"/>
    <language>en</language>
    <item>
      <title>Paystack Community Node for n8n</title>
      <dc:creator>Taiwo Hassan</dc:creator>
      <pubDate>Sat, 30 May 2026 11:24:56 +0000</pubDate>
      <link>https://dev.to/mr-taiwo/paystack-community-node-for-n8n-30kg</link>
      <guid>https://dev.to/mr-taiwo/paystack-community-node-for-n8n-30kg</guid>
      <description>&lt;p&gt;&lt;strong&gt;Building an Open Source Paystack Community Node for n8n&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As someone who regularly builds automations with n8n, I noticed a gap in the ecosystem, there wasn't a dedicated Paystack integration available for the community.&lt;/p&gt;

&lt;p&gt;While Paystack is one of the most widely used payment platforms across Africa, users often had to rely on generic HTTP Request nodes and manually configure API calls to build payment workflows. It worked, but it wasn't the best experience.&lt;/p&gt;

&lt;p&gt;To help solve that problem, I built &lt;strong&gt;n8n-nodes-paystack&lt;/strong&gt;, an open-source community node that brings Paystack directly into n8n workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why I Built It&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The goal was simple, make it easier for automation builders and businesses to integrate Paystack into their workflows without writing custom API requests for every use case.&lt;/p&gt;

&lt;p&gt;Whether you're verifying payments, managing customers, handling subscriptions, or automating business processes around payments, a dedicated node provides a much cleaner experience.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open Source First&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the most important decisions was making the project open source from day one.&lt;/p&gt;

&lt;p&gt;I believe the best integrations are built with community involvement. By making the node publicly available, anyone can review the code, report issues, suggest improvements, or contribute new features.&lt;/p&gt;

&lt;p&gt;This isn't just my project it's a community resource for anyone using both n8n and Paystack.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Approved by n8n&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After development and review, the node was approved by the n8n team and published to npm.&lt;/p&gt;

&lt;p&gt;That approval was particularly rewarding because it means the node meets the standards expected within the n8n ecosystem and can be confidently used by the wider community.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What's Next?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This is only the beginning.&lt;/p&gt;

&lt;p&gt;I would love to see more contributors help expand the node, improve documentation, add new operations, and share workflow examples that others can learn from.&lt;/p&gt;

&lt;p&gt;If you use Paystack and n8n, your feedback and contributions are welcome.&lt;/p&gt;

&lt;p&gt;Open source grows when people build together.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/tjava/n8n-nodes-paystack" rel="noopener noreferrer"&gt;github link&lt;/a&gt; and &lt;a href="https://www.npmjs.com/package/n8n-nodes-paystack" rel="noopener noreferrer"&gt;npm link&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>automation</category>
      <category>paystack</category>
      <category>n8n</category>
    </item>
    <item>
      <title>pop_alert new flutter package</title>
      <dc:creator>Taiwo Hassan</dc:creator>
      <pubDate>Wed, 29 Jun 2022 10:57:00 +0000</pubDate>
      <link>https://dev.to/mr-taiwo/popalert-new-flutter-package-5bbn</link>
      <guid>https://dev.to/mr-taiwo/popalert-new-flutter-package-5bbn</guid>
      <description>&lt;p&gt;pop_alert is an open source flutter package for responsive and animated alert/dialog.&lt;br&gt;
&lt;a href="https://pub.dev/packages/pop_alert" rel="noopener noreferrer"&gt;package link&lt;/a&gt;&lt;br&gt;
also please dont forget to like the package.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Installation&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Add the latest version of package to your pubspec.yaml (and runflutter pub get):
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;dependencies:
  pop_alert: ^0.0.30
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;ol&gt;
&lt;li&gt;Import the package and use it in your Flutter App.
&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import 'package:pop_alert/pop_alert.dart';
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;br&gt;
There are a numbers of properties that you can modify:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;icon&lt;/li&gt;
&lt;li&gt;title&lt;/li&gt;
&lt;li&gt;text&lt;/li&gt;
&lt;li&gt;button&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Simple alert show a dialog with no animated icon&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PopAlert.simpleAlert(
    context: context,
    title: 'Hello world!',
    button: 'OK',
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PopAlert.simpleAlert(
    context: context,
    title: 'Title goes here!',
    text: '...and text goes here!',
    button: 'OK',
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Icon alert show a dialog with animated icon of four type of alert.&lt;br&gt;
The icon can be of four type &lt;strong&gt;success&lt;/strong&gt;, &lt;strong&gt;failed&lt;/strong&gt;, &lt;strong&gt;info&lt;/strong&gt;, and &lt;strong&gt;warning&lt;/strong&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PopAlert.iconAlert(
    context: context,
    icon: PopAlertIcon.success,
    title: 'Good job!',
    button: 'OK',
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PopAlert.iconAlert(
    context: context,
    icon: PopAlertIcon.success,
    title: 'Good job!',
    text: 'You clicked the button!',
    button: 'OK',
)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Developers are welcome to contribute to make the package more better. &lt;a href="https://github.com/tjava/pop_alert" rel="noopener noreferrer"&gt;github link&lt;/a&gt;&lt;br&gt;
also please dont forget to star the repo.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
