<?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: Tony Larry</title>
    <description>The latest articles on DEV Community by Tony Larry (@devfan).</description>
    <link>https://dev.to/devfan</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%2F714107%2Fc27c07bf-f48e-411a-8b23-94cbeccd620e.png</url>
      <title>DEV Community: Tony Larry</title>
      <link>https://dev.to/devfan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devfan"/>
    <language>en</language>
    <item>
      <title>I built an open-source, privacy-first PDF toolkit (80+ tools) to replace Adobe. Here is the stack.</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Thu, 08 Jan 2026 14:51:16 +0000</pubDate>
      <link>https://dev.to/devfan/i-built-an-open-source-privacy-first-pdf-toolkit-80-tools-to-replace-adobe-here-is-the-stack-pgp</link>
      <guid>https://dev.to/devfan/i-built-an-open-source-privacy-first-pdf-toolkit-80-tools-to-replace-adobe-here-is-the-stack-pgp</guid>
      <description>&lt;h3&gt;
  
  
  The "Why"
&lt;/h3&gt;

&lt;p&gt;If you are a developer, you probably hate uploading sensitive documents (tax forms, contracts, bank statements) to random "Free PDF Merger" websites. You know that "Free" usually means "You are the product."&lt;/p&gt;

&lt;p&gt;I wanted a tool that:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Runs 100% locally&lt;/strong&gt; (files never leave the browser).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Is Open Source&lt;/strong&gt; (so I can verify the code).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Doesn't suck&lt;/strong&gt; (clean UI, no ads, no "3 files per day" limits).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So, I built &lt;strong&gt;&lt;a href="https://pdfcraft.devtoolcafe.com/" rel="noopener noreferrer"&gt;PDFCraft&lt;/a&gt;&lt;/strong&gt;. It's an MIT-licensed, client-side PDF toolkit built with Next.js and WebAssembly.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/PDFCraftTool/pdfcraft" rel="noopener noreferrer"&gt;github.com/PDFCraftTool/pdfcraft&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Demo:&lt;/strong&gt; &lt;a href="https://pdfcraft.devtoolcafe.com/" rel="noopener noreferrer"&gt;pdfcraft.devtoolcafe.com&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  The Tech Stack
&lt;/h3&gt;

&lt;p&gt;I chose a modern stack to ensure performance and maintainability:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend Framework:&lt;/strong&gt; &lt;strong&gt;Next.js&lt;/strong&gt; (React). I needed the static site generation (SSG) capabilities for SEO and fast initial load times.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Styling:&lt;/strong&gt; &lt;strong&gt;Tailwind CSS&lt;/strong&gt;. For a clean, responsive UI that works on mobile.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Core Engine (The Heavy Lifting):&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;WebAssembly (Wasm):&lt;/strong&gt; This is key. It allows us to run heavy image and PDF processing logic in the browser at near-native speed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Libraries:&lt;/strong&gt; &lt;code&gt;pdf-lib&lt;/code&gt; for manipulation, &lt;code&gt;pdf.js&lt;/code&gt; for rendering, and &lt;code&gt;tesseract.js&lt;/code&gt; for client-side OCR.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Architecture: Zero-Server Processing
&lt;/h3&gt;

&lt;p&gt;The most interesting part of PDFCraft is what it &lt;em&gt;doesn't&lt;/em&gt; have: &lt;strong&gt;A backend API for file processing.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In a traditional architecture:&lt;br&gt;
&lt;code&gt;User Uploads File -&amp;gt; Server (AWS/GCP) Processes it -&amp;gt; User Downloads&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;In PDFCraft:&lt;br&gt;
&lt;code&gt;User Selects File -&amp;gt; Browser (Wasm/WebWorkers) Processes it -&amp;gt; User Downloads&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why this matters for devs:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Privacy:&lt;/strong&gt; I literally cannot see your files. There is no database to hack.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cost:&lt;/strong&gt; Hosting is dirt cheap (static files only).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Speed:&lt;/strong&gt; No network latency for uploading large files.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Key Features Implemented
&lt;/h3&gt;

&lt;p&gt;It started as a simple merger but grew into a suite of &lt;strong&gt;80+ tools&lt;/strong&gt;. Here are a few technical highlights:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Client-Side OCR:&lt;/strong&gt; Using &lt;code&gt;tesseract.js&lt;/code&gt; and Web Workers to extract text from scanned PDFs without freezing the main thread.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Conversion:&lt;/strong&gt; Converting PDF to Office formats (Word/Excel) and Images (JPG/PNG/HEIC) directly in the browser.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security:&lt;/strong&gt; AES encryption/decryption handling purely on the client.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Self-Hosting &amp;amp; Extension
&lt;/h3&gt;

&lt;p&gt;Since privacy is the main goal, I made sure you can run it yourself.&lt;br&gt;
You can clone the repo and deploy it anywhere (Vercel, Netlify, or your own Docker container).&lt;/p&gt;

&lt;p&gt;I also included a &lt;strong&gt;Chrome Extension&lt;/strong&gt; (you can find the zip in the repo) for quick access without opening a new tab.&lt;/p&gt;

&lt;h3&gt;
  
  
  Open Source &amp;amp; Roadmap
&lt;/h3&gt;

&lt;p&gt;The project is fully open source (MIT License).&lt;/p&gt;

&lt;p&gt;I'm currently looking for contributors to help with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Improving the PDF Viewer performance for huge files (500MB+).&lt;/li&gt;
&lt;li&gt;Adding more language support for OCR.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you are interested in WebAssembly or PDF manipulation, check out the code!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🔗 GitHub:&lt;/strong&gt; &lt;a href="https://github.com/PDFCraftTool/pdfcraft" rel="noopener noreferrer"&gt;https://github.com/PDFCraftTool/pdfcraft&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;(If you find it useful, a star ⭐ would keep me motivated!)&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webassembly</category>
      <category>nextjs</category>
      <category>opensource</category>
      <category>privacy</category>
    </item>
    <item>
      <title>Cron Expression Descriptor</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Thu, 26 May 2022 10:11:38 +0000</pubDate>
      <link>https://dev.to/devfan/cron-expression-descriptor-1p66</link>
      <guid>https://dev.to/devfan/cron-expression-descriptor-1p66</guid>
      <description>&lt;p&gt;An online tool to describe Cron expressions as human-readable text.&lt;br&gt;
&lt;a href="https://devtoolcafe.com/tools/cron" rel="noopener noreferrer"&gt;https://devtoolcafe.com/tools/cron&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7dp1z7cxdu7b7n67rkuf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7dp1z7cxdu7b7n67rkuf.png" alt="Cron Expression Descriptor" width="800" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cron</category>
    </item>
    <item>
      <title>5 Useful Database Command Line Tools</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Tue, 26 Apr 2022 03:40:15 +0000</pubDate>
      <link>https://dev.to/devfan/5-useful-database-command-line-tools-1gi8</link>
      <guid>https://dev.to/devfan/5-useful-database-command-line-tools-1gi8</guid>
      <description>&lt;h2&gt;
  
  
  Mycli - Python
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/dbcli/mycli" rel="noopener noreferrer"&gt;https://github.com/dbcli/mycli&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;star 10.3k&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;A Terminal Client for MySQL with AutoCompletion and Syntax Highlighting.&lt;/p&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  Auto-completion as you type for SQL keywords as well as tables, views and columns in the database.&lt;/li&gt;
&lt;li&gt;  Syntax highlighting using Pygments.&lt;/li&gt;
&lt;li&gt;  Smart-completion (enabled by default) will suggest context-sensitive completion.

&lt;ul&gt;
&lt;li&gt;  &lt;code&gt;SELECT * FROM &amp;lt;tab&amp;gt;&lt;/code&gt; will only show table names.&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;SELECT * FROM users WHERE &amp;lt;tab&amp;gt;&lt;/code&gt; will only show column names.&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;  Support for multiline queries.&lt;/li&gt;

&lt;li&gt;  Favorite queries with optional positional parameters. Save a query using &lt;code&gt;\fs alias query&lt;/code&gt; and execute it with &lt;code&gt;\f alias&lt;/code&gt; whenever you need.&lt;/li&gt;

&lt;li&gt;  Timing of sql statements and table rendering.&lt;/li&gt;

&lt;li&gt;  Config file is automatically created at &lt;code&gt;~/.myclirc&lt;/code&gt; at first launch.&lt;/li&gt;

&lt;li&gt;  Log every query and its results to a file (disabled by default).&lt;/li&gt;

&lt;li&gt;  Pretty prints tabular data (with colors!)&lt;/li&gt;

&lt;li&gt;  Support for SSL connections&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Usage&lt;br&gt;&lt;br&gt;
 &lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ mycli --help
Usage: mycli [OPTIONS] [DATABASE]

  A MySQL terminal client with auto-completion and syntax highlighting.

  Examples:
    - mycli my_database
    - mycli -u my_user -h my_host.com my_database
    - mycli mysql://my_user@my_host.com:3306/my_database

Options:
  -h, --host TEXT               Host address of the database.
  -P, --port INTEGER            Port number to use for connection. Honors
                                $MYSQL_TCP_PORT.

  -u, --user TEXT               User name to connect to the database.
  -S, --socket TEXT             The socket file to use for connection.
  -p, --password TEXT           Password to connect to the database.
  --pass TEXT                   Password to connect to the database.
  --ssh-user TEXT               User name to connect to ssh server.
  --ssh-host TEXT               Host name to connect to ssh server.
  --ssh-port INTEGER            Port to connect to ssh server.
  --ssh-password TEXT           Password to connect to ssh server.
  --ssh-key-filename TEXT       Private key filename (identify file) for the
                                ssh connection.

  --ssh-config-path TEXT        Path to ssh configuration.
  --ssh-config-host TEXT        Host to connect to ssh server reading from ssh
                                configuration.

  --ssl-ca PATH                 CA file in PEM format.
  --ssl-capath TEXT             CA directory.
  --ssl-cert PATH               X509 cert in PEM format.
  --ssl-key PATH                X509 key in PEM format.
  --ssl-cipher TEXT             SSL cipher to use.
  --ssl-verify-server-cert      Verify server's "Common Name" in its cert
                                against hostname used when connecting. This
                                option is disabled by default.

  -V, --version                 Output mycli's version.
  -v, --verbose                 Verbose output.
  -D, --database TEXT           Database to use.
  -d, --dsn TEXT                Use DSN configured into the [alias_dsn]
                                section of myclirc file.

  --list-dsn                    list of DSN configured into the [alias_dsn]
                                section of myclirc file.

  --list-ssh-config             list ssh configurations in the ssh config
                                (requires paramiko).

  -R, --prompt TEXT             Prompt format (Default: "\t \u@\h:\d&amp;gt; ").
  -l, --logfile FILENAME        Log every query and its results to a file.
  --defaults-group-suffix TEXT  Read MySQL config groups with the specified
                                suffix.

  --defaults-file PATH          Only read MySQL options from the given file.
  --myclirc PATH                Location of myclirc file.
  --auto-vertical-output        Automatically switch to vertical output mode
                                if the result is wider than the terminal
                                width.

  -t, --table                   Display batch output in table format.
  --csv                         Display batch output in CSV format.
  --warn / --no-warn            Warn before running a destructive query.
  --local-infile BOOLEAN        Enable/disable LOAD DATA LOCAL INFILE.
  -g, --login-path TEXT         Read this path from the login file.
  -e, --execute TEXT            Execute command and quit.
  --init-command TEXT           SQL statement to execute after connecting.
  --charset TEXT                Character set for MySQL session.
  --password-file PATH          File or FIFO path containing the password
                                to connect to the db if not specified otherwise
  --help                        Show this message and exit.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foba5lkkcyc68gasjglzp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foba5lkkcyc68gasjglzp.png" alt="Mycli" width="800" height="289"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Pgcli - Python
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/dbcli/pgcli" rel="noopener noreferrer"&gt;https://github.com/dbcli/pgcli&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;star 10.3k&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Postgres CLI with autocompletion and syntax highlighting&lt;/p&gt;

&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Auto-completes as you type for SQL keywords as well as tables and columns in the database.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Syntax highlighting using Pygments.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Smart-completion (enabled by default) will suggest context-sensitive completion.&lt;/p&gt;

&lt;blockquote&gt;
&lt;ul&gt;
&lt;li&gt;  &lt;code&gt;SELECT * FROM &amp;lt;tab&amp;gt;&lt;/code&gt; will only show table names.&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;SELECT * FROM users WHERE &amp;lt;tab&amp;gt;&lt;/code&gt; will only show column names.&lt;/li&gt;
&lt;/ul&gt;


&lt;/blockquote&gt;

&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Primitive support for &lt;code&gt;psql&lt;/code&gt; back-slash commands.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Pretty prints tabular data.&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;$ pip install -U pgcli&lt;/p&gt;

&lt;p&gt;or&lt;/p&gt;

&lt;p&gt;$ sudo apt-get install pgcli # Only on Debian based Linux (e.g. Ubuntu, Mint, etc)&lt;br&gt;
$ brew install pgcli  # Only on macOS&lt;/p&gt;

&lt;h2&gt;
  
  
  Sqlline - Java
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/julianhyde/sqlline" rel="noopener noreferrer"&gt;https://github.com/julianhyde/sqlline&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;star 502&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Shell for issuing SQL to relational databases via JDBCIf you have &lt;a href="https://github.com/coursier/coursier" rel="noopener noreferrer"&gt;Coursier&lt;/a&gt; installed, you can quickly connect to a &lt;a href="https://github.com/julianhyde/foodmart-data-hsqldb" rel="noopener noreferrer"&gt;demo Hypersonic database&lt;/a&gt; with:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ coursier launch sqlline:sqlline:1.12.0 org.hsqldb:hsqldb:2.5.0 net.hydromatic:foodmart-data-hsqldb:0.4 -M sqlline.SqlLine -- -u jdbc:hsqldb:res:foodmart -n FOODMART -p FOODMART -d org.hsqldb.jdbcDriver
0: jdbc:hsqldb:res:foodmart&amp;gt; select avg("shelf_height" * "shelf_width" * "shelf_depth") as "avg_volume" from "product";
+-------------------------+
|       avg_volume        |
+-------------------------+
| 2147.3845245442353      |
+-------------------------+
1 row selected (0.01 seconds)
0: jdbc:hsqldb:res:foodmart&amp;gt; !quit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;h2&gt;
  
  
  Iredis - Python
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/laixintao/iredis" rel="noopener noreferrer"&gt;https://github.com/laixintao/iredis&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;star 1.8k&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Interactive Redis: A Terminal Client for Redis with AutoCompletion and Syntax Highlighting.&lt;/p&gt;
&lt;h3&gt;
  
  
  Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;  Advanced code completion. If you run command &lt;code&gt;KEYS&lt;/code&gt; then run &lt;code&gt;DEL&lt;/code&gt;, IRedis will auto-complete your command based on &lt;code&gt;KEYS&lt;/code&gt; result.&lt;/li&gt;
&lt;li&gt;  Command validation. IRedis will validate command while you are typing, and highlight errors. E.g. try &lt;code&gt;CLUSTER MEET IP PORT&lt;/code&gt;, IRedis will validate IP and PORT for you.&lt;/li&gt;
&lt;li&gt;  Command highlighting, fully based on redis grammar. Any valid command in IRedis shell is a valid redis command.&lt;/li&gt;
&lt;li&gt;  Human-friendly result display.&lt;/li&gt;
&lt;li&gt;  &lt;em&gt;pipeline&lt;/em&gt; feature, you can use your favorite shell tools to parse redis' response, like &lt;code&gt;get json | jq .&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;  Support pager for long output.&lt;/li&gt;
&lt;li&gt;  Support connection via URL, &lt;code&gt;iredis --url redis://example.com:6379/1&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;  Support cluster, IRedis will auto reissue command for &lt;code&gt;MOVED&lt;/code&gt; response in cluster mode.&lt;/li&gt;
&lt;li&gt;  Store server configuration: &lt;code&gt;iredis -d prod-redis&lt;/code&gt; (see dsn for more).&lt;/li&gt;
&lt;li&gt;  &lt;code&gt;peek&lt;/code&gt; command to check the key's type then automatically call &lt;code&gt;get&lt;/code&gt;/&lt;code&gt;lrange&lt;/code&gt;/&lt;code&gt;sscan&lt;/code&gt;, etc, depending on types. You don't need to call the &lt;code&gt;type&lt;/code&gt; command then type another command to get the value. &lt;code&gt;peek&lt;/code&gt; will also display the key's length and memory usage.&lt;/li&gt;
&lt;li&gt;  Ctrl + C to cancel the current typed command, this won't exit IRedis, exactly like bash behaviour. Use Ctrl + D to send a EOF to exit IRedis.&lt;/li&gt;
&lt;li&gt;  Ctrl + R to open &lt;strong&gt;reverse-i-search&lt;/strong&gt; to search through your command history.&lt;/li&gt;
&lt;li&gt;  Auto suggestions. (Like &lt;a href="http://fishshell.com/" rel="noopener noreferrer"&gt;fish shell&lt;/a&gt;.)&lt;/li&gt;
&lt;li&gt;  Support &lt;code&gt;--encode=utf-8&lt;/code&gt;, to decode Redis' bytes responses.&lt;/li&gt;
&lt;li&gt;  Command hint on bottom, include command syntax, supported redis version, and time complexity.&lt;/li&gt;
&lt;li&gt;  Official docs with built-in &lt;code&gt;HELP&lt;/code&gt; command, try &lt;code&gt;HELP SET&lt;/code&gt;!&lt;/li&gt;
&lt;li&gt;  Written in pure Python, but IRedis was packaged into a single binary with &lt;a href="https://github.com/indygreg/PyOxidizer" rel="noopener noreferrer"&gt;PyOxidizer&lt;/a&gt;, you can use cURL to download and run, it just works, even you don't have a Python interpreter.&lt;/li&gt;
&lt;li&gt;  Hide password for &lt;code&gt;AUTH&lt;/code&gt; command.&lt;/li&gt;
&lt;li&gt;  Says "Goodbye!" to you when you exit!&lt;/li&gt;
&lt;li&gt;  For full features, please see: &lt;a href="https://www.iredis.io" rel="noopener noreferrer"&gt;iredis.io&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Or you can download the executable binary with cURL(or wget), untar, then run. It is especially useful when you don't have a python interpreter(E.g. the &lt;a href="https://hub.docker.com/_/redis/" rel="noopener noreferrer"&gt;official Redis docker image&lt;/a&gt; which doesn't have Python installed.):&lt;br&gt;&lt;br&gt;
 &lt;/p&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;wget  https://github.com/laixintao/iredis/releases/latest/download/iredis.tar.gz \
 &amp;amp;&amp;amp; tar -xzf iredis.tar.gz \
 &amp;amp;&amp;amp; ./iredis
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3g2d0wxqgn424ho8mh9p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3g2d0wxqgn424ho8mh9p.png" alt="Iredis" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Usql - Go
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/xo/usql" rel="noopener noreferrer"&gt;https://github.com/xo/usql&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;star 7.2k&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Universal command-line interface for SQL databases&lt;/p&gt;

&lt;p&gt;If the following or similar error is encountered when attempting to run &lt;code&gt;usql&lt;/code&gt;:&lt;/p&gt;

&lt;p&gt;$ usql&lt;br&gt;
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicuuc.68.dylib&lt;br&gt;
  Referenced from: /Users/user/.local/bin/usql&lt;br&gt;
  Reason: image not found&lt;br&gt;
Abort trap: 6&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F64yrg1s3dxnqqggjqsj1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F64yrg1s3dxnqqggjqsj1.png" alt="Usql" width="800" height="290"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Find more command line tools: &lt;a href="https://cliapps.com" rel="noopener noreferrer"&gt;https://cliapps.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>database</category>
      <category>cli</category>
    </item>
    <item>
      <title>5 Awesome Python HTTP Clients</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Fri, 18 Mar 2022 14:16:39 +0000</pubDate>
      <link>https://dev.to/devfan/5-awesome-python-http-clients-1ldm</link>
      <guid>https://dev.to/devfan/5-awesome-python-http-clients-1ldm</guid>
      <description>&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;GitHub Activity&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://github.com/psf/requests" rel="noopener noreferrer"&gt;Requests&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A simple, yet elegant, HTTP library.&lt;/td&gt;
&lt;td&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fstars%2Fpsf%2Frequests" alt="GitHub stars" width="88" height="20"&gt; &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcommit-activity%2Fy%2Fpsf%2Frequests" alt="GitHub commit activity" width="148" height="20"&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://github.com/urllib3/urllib3" rel="noopener noreferrer"&gt;urllib3&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Python HTTP library with thread-safe connection pooling, file post support, user friendly, and more.&lt;/td&gt;
&lt;td&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fstars%2Furllib3%2Furllib3" alt="GitHub stars" width="82" height="20"&gt; &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcommit-activity%2Fy%2Furllib3%2Furllib3" alt="GitHub commit activity" width="156" height="20"&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://github.com/httplib2/httplib2" rel="noopener noreferrer"&gt;httplib2&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Small, fast HTTP client library for Python. Features persistent connections, cache, and Google App …&lt;/td&gt;
&lt;td&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fstars%2Fhttplib2%2Fhttplib2" alt="GitHub stars" width="88" height="20"&gt; &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcommit-activity%2Fy%2Fhttplib2%2Fhttplib2" alt="GitHub commit activity" width="148" height="20"&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://github.com/spyoungtech/grequests" rel="noopener noreferrer"&gt;GRequests&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Requests + Gevent = &amp;lt;3&lt;/td&gt;
&lt;td&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fstars%2Fspyoungtech%2Fgrequests" alt="GitHub stars" width="90" height="20"&gt; &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcommit-activity%2Fy%2Fspyoungtech%2Fgrequests" alt="GitHub commit activity" width="142" height="20"&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://github.com/prkumar/uplink" rel="noopener noreferrer"&gt;Uplink&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;A Declarative HTTP Client for Python&lt;/td&gt;
&lt;td&gt;
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fstars%2Fprkumar%2Fuplink" alt="GitHub stars" width="90" height="20"&gt; &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcommit-activity%2Fy%2Fprkumar%2Fuplink" alt="GitHub commit activity" width="148" height="20"&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;source&lt;/strong&gt;: &lt;a href="https://bestofgithub.com/blog/awesome-python-http-clients_59" rel="noopener noreferrer"&gt;5 Awesome Python HTTP Clients&lt;/a&gt;&lt;/p&gt;

</description>
      <category>http</category>
      <category>client</category>
    </item>
    <item>
      <title>Find answers to most common Python issues</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Fri, 31 Dec 2021 14:51:24 +0000</pubDate>
      <link>https://dev.to/devfan/find-answers-to-most-common-python-issues-4c99</link>
      <guid>https://dev.to/devfan/find-answers-to-most-common-python-issues-4c99</guid>
      <description>&lt;p&gt;Python Issues - Find answers to most common Python issues.&lt;br&gt;
&lt;a href="https://pythonissues.com/" rel="noopener noreferrer"&gt;https://pythonissues.com/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F24ilgy2w691wnhfjosh0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F24ilgy2w691wnhfjosh0.png" alt="Python Issues" width="800" height="427"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>A curated list of Open Source example iOS apps developed in Swift</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Tue, 07 Dec 2021 03:50:16 +0000</pubDate>
      <link>https://dev.to/devfan/a-curated-list-of-open-source-example-ios-apps-developed-in-swift-1cfn</link>
      <guid>https://dev.to/devfan/a-curated-list-of-open-source-example-ios-apps-developed-in-swift-1cfn</guid>
      <description>&lt;h1&gt;
  
  
  Example iOS Apps
&lt;/h1&gt;

&lt;p&gt;A curated list of Open Source example iOS apps developed in Swift.&lt;/p&gt;

&lt;h1&gt;
  
  
  How to Use
&lt;/h1&gt;

&lt;p&gt;Example-iOS-Apps is an amazing list for people who are beginners and learning iOS development and for iOS developers who need any example app or feature. The best ways to use are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ask for help on our &lt;a href="https://twitter.com/jogendrafx" rel="noopener noreferrer"&gt;Twitter&lt;/a&gt; or drop us a mail on &lt;a href="mailto:jogendra.iitbhu@gmail.com"&gt;jogendra.iitbhu@gmail.com&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Simply press command + F to search for a keyword&lt;/li&gt;
&lt;li&gt;Go through our &lt;em&gt;Content Menu&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  iOS Apps that Take Part in Google Summer of Code
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/fossasia/susi_iOS" rel="noopener noreferrer"&gt;SUSI iOS&lt;/a&gt; - SUSI AI iOS app by FOSSASIA.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fossasia/open-event-orga-iOS" rel="noopener noreferrer"&gt;Open Event Orga iOS&lt;/a&gt; - Event management app for organizers using Open Event Platform by FOSSASIA&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fossasia/open-event-ios" rel="noopener noreferrer"&gt;Open Event iOS&lt;/a&gt; - Open Event iOS app by FOSSASIA.&lt;/li&gt;
&lt;li&gt;
&lt;a href=""&gt;Badge Magic iOS&lt;/a&gt; - Badge Magic is an Android app to control LED name badges. The goal is to provide options to portray names, graphics and simple animations on LED badges. For the data transfer from the smartphone to the LED badge we use Bluetooth. &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/systers/powerup-iOS" rel="noopener noreferrer"&gt;Powerup iOS&lt;/a&gt; - PowerUp is an educational choose-your-own-adventure game that utilizes a users uploaded curriculum to empower pre-adolescents to take charge of their reproductive health. This is the iOS version of the game.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/openfoodfacts/openfoodfacts-ios" rel="noopener noreferrer"&gt;Open Food Facts iOS&lt;/a&gt; - iOS version (Swift) of Open Food Facts.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Catrobat/Catty" rel="noopener noreferrer"&gt;Catty&lt;/a&gt; - iOS implementation of the Catrobat language.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/amahi/ios" rel="noopener noreferrer"&gt;Amahi&lt;/a&gt; - iOS application written in Swift, from scratch.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jogendra/phimpme-iOS" rel="noopener noreferrer"&gt;Phimp.me&lt;/a&gt; - Photo Image Editor and Sharing App.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/matrix-org/matrix-ios-sdk" rel="noopener noreferrer"&gt;Matrix iOS SDK&lt;/a&gt; - The Matrix SDK for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kiwix/apple" rel="noopener noreferrer"&gt;Kiwix Apple&lt;/a&gt; - iOS and macOS implementation of Kiwix.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  iOS Apps that written with SwiftUI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/carson-katri/reddit-swiftui" rel="noopener noreferrer"&gt;Reddit-SwiftUI&lt;/a&gt; - A cross-platform Reddit client built in SwiftUI &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/devxoul/SwiftUITodo" rel="noopener noreferrer"&gt;SwiftUITodo&lt;/a&gt; - An example to-do list app using SwiftUI&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Dimillian/MovieSwiftUI" rel="noopener noreferrer"&gt;MovieSwiftUI&lt;/a&gt; - SwiftUI &amp;amp; Combine app using MovieDB API. With a custom Flux (Redux) implementation.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/alfianlosari/SwiftUI-MovieDB" rel="noopener noreferrer"&gt;SwiftUI-MovieDB&lt;/a&gt; - SwiftUI MovieDB prototype app&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/unixzii/SwiftUI-2048" rel="noopener noreferrer"&gt;SwiftUI-2048&lt;/a&gt; - A 2048 game writing with SwiftUI.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/marty-suzuki/GitHubSearchWithSwiftUI" rel="noopener noreferrer"&gt;GitHubSearchWithSwiftUI&lt;/a&gt; - SwiftUI and Combine based GitHubSearch example.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/nathfreder/HNNow" rel="noopener noreferrer"&gt;HNNow&lt;/a&gt; - Hacker News reader for iOS and iPadOS built with SwiftUI&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rebeloper/SwiftUIViewTextStack" rel="noopener noreferrer"&gt;SwiftUIViewTextStack&lt;/a&gt; - How to create views, text and stacks with SwiftUI&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ivanvorobei/SwiftUI#animatable-cards" rel="noopener noreferrer"&gt;Animatable Cards&lt;/a&gt; - Examples projects using SwiftUI &amp;amp; Combine to animatable cards&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/heckj/swiftui-notes" rel="noopener noreferrer"&gt;swiftui-notes&lt;/a&gt; - A collection of notes, project pieces, playgrounds and ideas on learning and using SwiftUI and Combine.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/inamiy/Harvest-SwiftUI-Gallery" rel="noopener noreferrer"&gt;Harvest-SwiftUI-Gallery&lt;/a&gt; - Gallery App for Harvest (Elm Architecture + Optics) + SwiftUI + Combine.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/SwiftWebUI/SwiftWebUI" rel="noopener noreferrer"&gt;SwiftWebUI&lt;/a&gt; - A demo implementation of SwiftUI for the Web&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fulldecent/8-ball" rel="noopener noreferrer"&gt;8 Ball&lt;/a&gt; - A fully working iOS + watchOS game to make life choices&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Dimillian/ACHNBrowserUI" rel="noopener noreferrer"&gt;AC Helper&lt;/a&gt; - Animal Crossing New Horizon companion app in SwiftUI&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/vknabel/puffery" rel="noopener noreferrer"&gt;Puffery&lt;/a&gt; - An iOS App written in SwiftUI to send push notifications fueled by Siri Shortcuts&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/elkiwy/khabit" rel="noopener noreferrer"&gt;KHabit&lt;/a&gt; - a pure and minimalistic app which helps you maintain productive habits, and nothing more.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/cambardell/Footnote" rel="noopener noreferrer"&gt;FootNote&lt;/a&gt; - a SWIFTUI + Core Data IOS app built during Hacktoberfest2020 open source developers.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Caldarie/blackjack" rel="noopener noreferrer"&gt;Blackjack&lt;/a&gt; - Simple demo blackjack app on how to intergrate swiftUI with MVVM.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/philipturner/ar-multipendulum" rel="noopener noreferrer"&gt;AR MultiPendulum&lt;/a&gt; - AR Headset experience with touchscreen settings interface built in SwiftUI.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pointfreeco/isowords" rel="noopener noreferrer"&gt;isowords&lt;/a&gt; - Open source game built in SwiftUI and the Composable Architecture.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/vinhnx/Clendar" rel="noopener noreferrer"&gt;Clendar&lt;/a&gt; - Universal calendar app. Written in SwiftUI.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  watchOS Apps that written with SwiftUI
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/dhanrajdc7/Countio" rel="noopener noreferrer"&gt;Countio&lt;/a&gt; - Countio is simple WatchOS App made with Swiftly SwiftUI. You can count anything quickly with Countio!!!&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/caiobzen/water-reminder-swiftui" rel="noopener noreferrer"&gt;Waterminder&lt;/a&gt; - A simple Apple Watch app to remind you to drink water!&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Frameworks
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/philipturner/ARHeadsetKit" rel="noopener noreferrer"&gt;ARHeadsetKit&lt;/a&gt; - High-level framework for experimenting with AR and using $5 Google Cardboard to replicate Hololens.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  iOS Apps written with SceneKit
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/fulldecent/pizzaman" rel="noopener noreferrer"&gt;Pizza Man&lt;/a&gt; - A simple game where you eat flying pepperoni&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Content
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/imjog/Calculator-iOS" rel="noopener noreferrer"&gt;Calculator-iOS&lt;/a&gt; - Basic calculator app for iOS devices using Swift3. Created for learning purpose.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/imjog/stopwatch" rel="noopener noreferrer"&gt;Stopwatch&lt;/a&gt; - Basic Stop Watch &amp;amp; Countdown app for iOS devices. Created for learning purpose.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/imjog/todolist-ios-app" rel="noopener noreferrer"&gt;To Do List&lt;/a&gt; - Basic To Do List App for iOS devices using swift and xcode.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/imjog/gravityBlocks" rel="noopener noreferrer"&gt;Gravity Blocks&lt;/a&gt; - A basic iOS app on basic physics concept gravity and elasticity.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kahopoon/QR-Blank" rel="noopener noreferrer"&gt;QR Blank&lt;/a&gt; - A basic QR code scanning app that checks URLs safety before advancing.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/BalestraPatrick/AppleWatchCalculator" rel="noopener noreferrer"&gt;AppleWatchCalculator&lt;/a&gt; - A calculator for your Apple Watch but only if you have fingers small enough to press the buttons.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/FancyPixel/done-swift" rel="noopener noreferrer"&gt;done-swift&lt;/a&gt; - Sample app to demonstrate data sharing between a WatchKit app and its main app using Realm&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/dkhamsing/how-much" rel="noopener noreferrer"&gt;how-much&lt;/a&gt; - A simple iOS app to record how much things cost using various data persistence implementations.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mozilla-mobile/firefox-ios" rel="noopener noreferrer"&gt;Firefox for iOS&lt;/a&gt; - An iOS version of the firefox browser&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/acani/Chats" rel="noopener noreferrer"&gt;Chats&lt;/a&gt; - Open source messaging app&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/imjog/technex-ios" rel="noopener noreferrer"&gt;technex-ios&lt;/a&gt; - iOS app for Technex, IIT(BHU) Varanasi. This project is closed before completion. You can use this app for learning purpose.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rnystrom/GitHawk" rel="noopener noreferrer"&gt;GitHawk&lt;/a&gt; - A GitHub project manager app for iOS&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fangwei716/30-days-of-react-native" rel="noopener noreferrer"&gt;30 days of React Native&lt;/a&gt; - 30 days of React Native demos&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/wordpress-mobile/WordPress-iOS" rel="noopener noreferrer"&gt;WordPress for iOS&lt;/a&gt; - WordPress's app for iOS, written in Swift&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/artsy/eidolon" rel="noopener noreferrer"&gt;Artsy&lt;/a&gt; - An art auction app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ChernyshenkoTaras/CustomCamera" rel="noopener noreferrer"&gt;CustomCamera&lt;/a&gt; - iOS project that demonstrates how to create a custom camera&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tnantoka/edhita" rel="noopener noreferrer"&gt;Edhita&lt;/a&gt; - Open source text editor written for iOS in Swift&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/5calls/ios" rel="noopener noreferrer"&gt;5Calls&lt;/a&gt; - iOS app for 5Calls.org&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/richardxyx/BoardBank" rel="noopener noreferrer"&gt;BoardBank&lt;/a&gt; -  Money Manager for Board Games&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/TCA-Team/iOS" rel="noopener noreferrer"&gt;TumCampusApp&lt;/a&gt; - An iOS app for and from students at Technical University of Munich.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/soapyigu/Swift30Projects" rel="noopener noreferrer"&gt;Swift 30 Projects&lt;/a&gt; -  30 mini Swift Apps for self-study&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/swwol/CrimeMapper" rel="noopener noreferrer"&gt;crime mapper&lt;/a&gt; - A data visualisation tool that adds publicly available crime data from UK police forces to an interactive map&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/lexrus/VPNOn" rel="noopener noreferrer"&gt;VPN On&lt;/a&gt; - A basic iOS app for VPN which can be automatically connected for a pre-specified domain&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/meteochu/Blurry" rel="noopener noreferrer"&gt;Blurry&lt;/a&gt; - A small image blur tool for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/steventroughtonsmith/files-ios" rel="noopener noreferrer"&gt;Files&lt;/a&gt; - File Browser for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kickstarter/ios-oss" rel="noopener noreferrer"&gt;Kickstarter&lt;/a&gt; - The official Kickstarter app for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Alfresco/alfresco-ios-app" rel="noopener noreferrer"&gt;Alfresco&lt;/a&gt; - Alfresco is the open platform iOS app for business-critical content management and collaboration.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Dimillian/SwiftHN" rel="noopener noreferrer"&gt;SwiftHN&lt;/a&gt; - A iOS app for Hacker News.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/MengTo/DesignerNewsApp" rel="noopener noreferrer"&gt;DesignerNewsApp&lt;/a&gt; - A iOS client for Designer News.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fullstackio/FlappySwift" rel="noopener noreferrer"&gt;FlappySwift&lt;/a&gt; - Flappy Bird game written in iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/CatchChat/Yep" rel="noopener noreferrer"&gt;Yep&lt;/a&gt; - A community where geniuses meet.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/IanKeen/TweetleDumb" rel="noopener noreferrer"&gt;TweedleDumb&lt;/a&gt; - A mock Twitter client built with MVVM and NavigationControllers. Small codebase, built with best practices in mind to demonstrate said practices. Great for learning purposes.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/hyperoslo/BarcodeScanner" rel="noopener noreferrer"&gt;BarcodeScanner&lt;/a&gt; - Simple and beautiful barcode scanner.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/imjog/Social-Logins-iOS" rel="noopener noreferrer"&gt;Social Logins&lt;/a&gt; - Basic app to show how to login with Facebook, Google, Twitter. Created for learning purpose.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/eugenebokhan/Awesome-ML" rel="noopener noreferrer"&gt;Awesome ML&lt;/a&gt; - Discover, download, compile &amp;amp; launch different image processing CoreML models on iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/nextcloud/ios" rel="noopener noreferrer"&gt;Next Cloud&lt;/a&gt; - The Nextcloud iOS app allows you to access all your files on your Nextcloud. A safe home for all your data.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/AppLozic/ApplozicSwift" rel="noopener noreferrer"&gt;Applozic iOS Swift Chat&lt;/a&gt; - Chat app sample and chat SDK to integrate into your iOS swift app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Kommunicate-io/Kommunicate-iOS-SDK" rel="noopener noreferrer"&gt;Kommunicate iOS Chat&lt;/a&gt; - Kommunicate.io support chat SDK to integrate live chat and bot integrations for customer support into your iOS app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/MaisaMilena/MyAnimeList" rel="noopener noreferrer"&gt;My Anime List&lt;/a&gt; - Simple sample of using the VIP (Clean Swift) architecture for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/wireapp/wire-ios" rel="noopener noreferrer"&gt;Wire iOS&lt;/a&gt; - The Wire mobile app has an architectural layer that we call sync engine . It is the client-side layer that processes all the data that is displayed in the mobile app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/AudioKit/AudioKit" rel="noopener noreferrer"&gt;AudioKit&lt;/a&gt; - Audio synthesis, processing, and analysis platform for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/matthewpalmer/Charter" rel="noopener noreferrer"&gt;Charter&lt;/a&gt; - A Swift mailing list client for iPhone and iPad.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/austinzheng/swift-2048" rel="noopener noreferrer"&gt;2048&lt;/a&gt; - A working port of 2048 to Swift&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/onmyway133/Recipes" rel="noopener noreferrer"&gt;Recipes App&lt;/a&gt; - An app that showcases many recipes together with their detail information&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Yalantis/PixPic" rel="noopener noreferrer"&gt;PixPic&lt;/a&gt; - Photo editing app&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/brave/browser-ios" rel="noopener noreferrer"&gt;Brave iOS Browser&lt;/a&gt; - Brave is based on Firefox iOS&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/wikimedia/wikipedia-ios" rel="noopener noreferrer"&gt;Wikipedia&lt;/a&gt; - Official Wikipedia iOS App&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tiannahenrylewis/Todoey" rel="noopener noreferrer"&gt;Todoey&lt;/a&gt; - To Do App &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/videolan/vlc-ios" rel="noopener noreferrer"&gt;VLC&lt;/a&gt; - Official VLC iOS &amp;amp; tvOS App&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/paulsumit1993/DailyFeed" rel="noopener noreferrer"&gt;Dailyfeed&lt;/a&gt; - iOS client for newsapi.org&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/igorkulman/iOSSampleApp" rel="noopener noreferrer"&gt;iOSSampleApp&lt;/a&gt; - Sample iOS app demonstrating Coordinators, Dependency Injection, MVVM, Binding&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/twostraws/Unwrap" rel="noopener noreferrer"&gt;Unwrap&lt;/a&gt; - Learn Swift interactively on your iPhone&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/camiloibarrayepes/AlamofireStarWarsExample" rel="noopener noreferrer"&gt;Alamofire-Example-Starwars&lt;/a&gt; - Learn alamofire with a funny example about Start Wars&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/victorpanitz/iOS-SortingAlgorithmsApp" rel="noopener noreferrer"&gt;Sorting Algorithms App&lt;/a&gt; - An open source app focused on show in a visual way how sorting algorithms actually works.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/phillfarrugia/appstore-clone" rel="noopener noreferrer"&gt;App Store Clone&lt;/a&gt; - An experimental clone of the new iOS 11 App Store app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Karambirov/Podcasts.git" rel="noopener noreferrer"&gt;Podcasts&lt;/a&gt; - A clone of Apple's Podcasts.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/triangledraw/TriangleDraw-iOS" rel="noopener noreferrer"&gt;TriangleDraw&lt;/a&gt; - Pixel Editor app that uses &lt;code&gt;UIDocument&lt;/code&gt;, &lt;code&gt;UIDocumentBrowserViewController&lt;/code&gt;, &lt;code&gt;Metal&lt;/code&gt;, &lt;code&gt;UndoManager&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/piemonte/Player" rel="noopener noreferrer"&gt;Player&lt;/a&gt; -  video player in Swift, simple way to play and stream media on iOS/tvOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/aheze/ProgressGif" rel="noopener noreferrer"&gt;ProgressGif&lt;/a&gt; - Add progress bars to gifs. Realm for project storage + Real time video editor + Renderer.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/TelegramMessenger/Telegram-iOS" rel="noopener noreferrer"&gt;Telegram&lt;/a&gt; - Official Telegram Messenger for iOS&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tanvijn/CaptchaDemo_ios" rel="noopener noreferrer"&gt;CaptchaDemo&lt;/a&gt; - A LightWeight Swift project to showcase implementation of Google ReCaptcha in iOS Application.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/richardtop/CalendarApp" rel="noopener noreferrer"&gt;CalendarApp&lt;/a&gt; - A sample app similar to iOS Calendar, built with CalendarKit in less than 100 lines of code.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/HabitRPG/habitica-ios" rel="noopener noreferrer"&gt;Habitica&lt;/a&gt; - Habit building &amp;amp; productivity app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pia-foss/vpn-ios" rel="noopener noreferrer"&gt;PIA VPN&lt;/a&gt; - VPN App by Private Internet Access.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Ranchero-Software/NetNewsWire" rel="noopener noreferrer"&gt;NetNewsWire&lt;/a&gt; - RSS reader for macOS and iOS.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Author
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;
     &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars2.githubusercontent.com%2Fu%2F20956124%3Fs%3D400%26u%3D01fab3fc9bb3d2ee799e314d3fe23c54d1deeb07%26v%3D4" width="400" height="400"&gt;
     
     Jogendra Singh

&lt;p&gt;
&lt;a href="https://github.com/jogendra" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/http%3A%2F%2Fwww.iconninja.com%2Ffiles%2F241%2F825%2F211%2Fround-collaboration-social-github-code-circle-network-icon.svg" width="100" height="100"&gt;&lt;/a&gt;
&lt;a href="https://twitter.com/jogendrafx" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fwww.shareicon.net%2Fdownload%2F2016%2F07%2F06%2F107115_media.svg" width="100" height="100"&gt;&lt;/a&gt;
&lt;a href="https://www.linkedin.com/in/jogendrasingh24/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/http%3A%2F%2Fwww.iconninja.com%2Ffiles%2F863%2F607%2F751%2Fnetwork-linkedin-social-connection-circular-circle-media-icon.svg" width="100" height="100"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;/td&gt;
&lt;/tr&gt; 
  &lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  What's next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Any suggestions?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Contribution
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;If you have a &lt;strong&gt;feature request&lt;/strong&gt;, open an &lt;strong&gt;issue&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;If you want to &lt;strong&gt;contribute&lt;/strong&gt;, submit a &lt;strong&gt;pull request&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;If you have any issue or want &lt;strong&gt;help&lt;/strong&gt;, please drop me a mail on &lt;a href="mailto:jogendra.iitbhu@gmail.com"&gt;jogendra.iitbhu@gmail.com&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Inspired by:
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://github.com/vsouza/awesome-ios" rel="noopener noreferrer"&gt;Awesome iOS&lt;/a&gt;&lt;br&gt;
&lt;a href="https://swiftobc.com" rel="noopener noreferrer"&gt;Awesome Swift&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  License
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Distributed under the MIT license. See &lt;a href="https://github.com/imjog/example-ios-apps/blob/master/LICENSE" rel="noopener noreferrer"&gt;LICENSE&lt;/a&gt; for more information.&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>swift</category>
    </item>
    <item>
      <title>📱 List of open source Flutter applications</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Sat, 04 Dec 2021 15:18:07 +0000</pubDate>
      <link>https://dev.to/devfan/list-of-open-source-flutter-applications-50la</link>
      <guid>https://dev.to/devfan/list-of-open-source-flutter-applications-50la</guid>
      <description>&lt;h2&gt;
  
  
  Open source flutter apps
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Flast-commit%2Ftortuvshin%2Fopen-source-flutter-apps.svg%3Flabel%3Dlast%2520update%26style%3Dflat" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Flast-commit%2Ftortuvshin%2Fopen-source-flutter-apps.svg%3Flabel%3Dlast%2520update%26style%3Dflat" width="168" height="20"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://flutter.io/" rel="noopener noreferrer"&gt;Flutter&lt;/a&gt; is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, desktop, and embedded devices from a single codebase.. The main goal of this repository is to find free open source apps and start contributing to it. Feel free to &lt;a href="https://github.com/tortuvshin/open-source-flutter-apps/graphs/contributors" rel="noopener noreferrer"&gt;contribute&lt;/a&gt; to the list, any suggestions are always welcomed!&lt;/p&gt;

&lt;p&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Ffablue%2Fbuilding-a-social-network-with-flutter%2Fblob%2Fmaster%2Flime-preview.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Ffablue%2Fbuilding-a-social-network-with-flutter%2Fblob%2Fmaster%2Flime-preview.gif" alt="feed example" width="" height=""&gt;&lt;/a&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F10066840%2F45931079-61844e00-bf36-11e8-80d5-e02f8123db59.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F10066840%2F45931079-61844e00-bf36-11e8-80d5-e02f8123db59.gif" alt="feed example" width="600" height="1066"&gt;&lt;/a&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Ftrentpiercy%2Ftrace%2Fmaster%2Fscreenshots%2Fgifs%2Fportfolio.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fraw.githubusercontent.com%2Ftrentpiercy%2Ftrace%2Fmaster%2Fscreenshots%2Fgifs%2Fportfolio.gif" alt="feed example" width="720" height="1279"&gt;&lt;/a&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Froughike%2FinKino%2Fblob%2Fdevelopment%2Fassets%2Fscreenshots%2Fnow_in_theaters.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Froughike%2FinKino%2Fblob%2Fdevelopment%2Fassets%2Fscreenshots%2Fnow_in_theaters.png" alt="feed example" width="" height=""&gt;&lt;/a&gt;
&lt;a href="https://camo.githubusercontent.com/b72a57096fa62ca7bab347ca34c6f1bd59e3097f/68747470733a2f2f7468756d62732e6766796361742e636f6d2f436f6d706c65746553656c6672656c69616e744861636b65652d73697a655f726573747269637465642e676966" class="article-body-image-wrapper"&gt;&lt;img src="https://camo.githubusercontent.com/b72a57096fa62ca7bab347ca34c6f1bd59e3097f/68747470733a2f2f7468756d62732e6766796361742e636f6d2f436f6d706c65746553656c6672656c69616e744861636b65652d73697a655f726573747269637465642e676966" alt="feed example" width="" height=""&gt;&lt;/a&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Ftortuvshin%2Fopen-source-flutter-apps%2Fblob%2Fmaster%2Fart%2Fnew%2520flutter%2520jobs.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Ftortuvshin%2Fopen-source-flutter-apps%2Fblob%2Fmaster%2Fart%2Fnew%2520flutter%2520jobs.gif" alt="feed example" width="" height=""&gt;&lt;/a&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F8137504%2F49392298-09e33980-f754-11e8-9fc2-7cd12b62e604.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F8137504%2F49392298-09e33980-f754-11e8-9fc2-7cd12b62e604.png" alt="feed example" width="800" height="1600"&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;h2&gt;
  
  
  Contents
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Business&lt;/li&gt;
&lt;li&gt;Communication&lt;/li&gt;
&lt;li&gt;Education&lt;/li&gt;
&lt;li&gt;Entertainment&lt;/li&gt;
&lt;li&gt;Finance&lt;/li&gt;
&lt;li&gt;Health and Fitness&lt;/li&gt;
&lt;li&gt;Games&lt;/li&gt;
&lt;li&gt;LifeStyle&lt;/li&gt;
&lt;li&gt;Media&lt;/li&gt;
&lt;li&gt;News and Magazine&lt;/li&gt;
&lt;li&gt;Personalization&lt;/li&gt;
&lt;li&gt;Productivity&lt;/li&gt;
&lt;li&gt;Social Network&lt;/li&gt;
&lt;li&gt;Shopping&lt;/li&gt;
&lt;li&gt;Tools&lt;/li&gt;
&lt;li&gt;Travel&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Business
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/comerc/minsk8" rel="noopener noreferrer"&gt;Minsk8&lt;/a&gt; - Marketplace with Hasura &amp;amp; Firebase by &lt;a href="https://github.com/comerc" rel="noopener noreferrer"&gt;comerc&lt;/a&gt; (&lt;a href="https://www.youtube.com/playlist?list=PLMAOL6NXxmsgTUrZE4Y9xhIxzDA46X1lc" rel="noopener noreferrer"&gt;live-code&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/4seer/openflutterecommerceapp" rel="noopener noreferrer"&gt;Open E-Commerce App&lt;/a&gt; - Open Flutter Project E-commerce App by &lt;a href="https://github.com/4seer" rel="noopener noreferrer"&gt;4seer&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/invoiceninja/flutter-mobile" rel="noopener noreferrer"&gt;Invoice Ninja&lt;/a&gt; - Companion app for the Invoice Ninja by &lt;a href="https://github.com/invoiceninja" rel="noopener noreferrer"&gt;Invoice Ninja&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Rahiche/flutter_jobs_app" rel="noopener noreferrer"&gt;Flutter Jobs App&lt;/a&gt; - Flutter job board app by &lt;a href="https://github.com/Rahiche/flutter_jobs_app" rel="noopener noreferrer"&gt;Raouf Rahiche&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Communication
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/konifar/droidkaigi2018-flutter" rel="noopener noreferrer"&gt;DroidKaigi2018-flutter&lt;/a&gt; - Unofficial conference app for DroidKaigi 2018 Tokyo by &lt;a href="https://github.com/konifar" rel="noopener noreferrer"&gt;konifar&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/CodemateLtd/FlutterMates" rel="noopener noreferrer"&gt;FlutterMates&lt;/a&gt; - A sample app for our internal company talk about Flutter by &lt;a href="https://github.com/CodemateLtd" rel="noopener noreferrer"&gt;Codemate Ltd&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jesusrp98/spacex-go" rel="noopener noreferrer"&gt;SpaceX GO&lt;/a&gt; - Simple yet powerful, open-source SpaceX launch tracker by &lt;a href="https://github.com/jesusrp98/" rel="noopener noreferrer"&gt;Chechu&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Education
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/j-j-gajjar/mathematics/" rel="noopener noreferrer"&gt;Mathematics&lt;/a&gt; - Generate MCQ PDF / Question PDF : With Answer and Quiz &lt;a href="https://github.com/j-j-gajjar" rel="noopener noreferrer"&gt;J-J-GAJJAR&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Entertainment
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/kserko/CineReel" rel="noopener noreferrer"&gt;CineReel&lt;/a&gt; - You can see lists for Now playing, Top Rated, Popular and Upcoming movies by &lt;a href="https://github.com/kserko" rel="noopener noreferrer"&gt;serko&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/JideGuru/FlutterEbookApp" rel="noopener noreferrer"&gt;Flutter Ebook App&lt;/a&gt; — A simple Flutter app to read and download e-books by &lt;a href="https://github.com/JideGuru" rel="noopener noreferrer"&gt;Festus Olusegun&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ibhavikmakwana/Fluttery-Filmy" rel="noopener noreferrer"&gt;Fluttery Filmy&lt;/a&gt; - Movie app which is developed using flutter and powered by tmdb. by &lt;a href="https://github.com/ibhavikmakwana" rel="noopener noreferrer"&gt;Bhavik Makwana&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/MDSADABWASIM/Toughest" rel="noopener noreferrer"&gt;Toughest&lt;/a&gt; - Tricky questions and answer- Offline Interview Q/A by &lt;a href="https://github.com/MDSADABWASIM" rel="noopener noreferrer"&gt;MD SADAB WASIM&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/MotionMobs/Sandwhich" rel="noopener noreferrer"&gt;Sandwhich&lt;/a&gt; - An app to solve the age-old sandwich debate built using machine learning, Flutter, and TensorFlow Lite by &lt;a href="https://github.com/MotionMobs" rel="noopener noreferrer"&gt;MotionMobs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/deandreamatias/tv-randshow" rel="noopener noreferrer"&gt;TV Randshow&lt;/a&gt; - App to choose a random TV show episode by &lt;a href="https://deandreamatias.com" rel="noopener noreferrer"&gt;deandreamatias&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ArizArmeidi/AnimSearch" rel="noopener noreferrer"&gt;AnimSearch&lt;/a&gt; - Anime and Manga search app. created using Flutter and Jikan API. by &lt;a href="https://github.com/ArizArmeidi" rel="noopener noreferrer"&gt;Ariz Armeidi&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Finance
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/damoonrashidi/bitalarm" rel="noopener noreferrer"&gt;Bit Alarm&lt;/a&gt; - An app to keep track of different cryptocurrencies by &lt;a href="https://github.com/damoonrashidi" rel="noopener noreferrer"&gt;Damoon Rashidi&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/trentpiercy/trace" rel="noopener noreferrer"&gt;Trace&lt;/a&gt; - Modern and powerful crypto portfolio &amp;amp; market explorer by &lt;a href="https://github.com/trentpiercy" rel="noopener noreferrer"&gt;Trent Piercy&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Blakexx/CryptoTracker" rel="noopener noreferrer"&gt;Platypus Crypto&lt;/a&gt; - Platypus Crypto is an ad-free cross-platform robust solution for tracking cryptocurrency assets by &lt;a href="https://github.com/Blakexx" rel="noopener noreferrer"&gt;Blake Bottum&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kalismeras61/flutter_wallet_ui" rel="noopener noreferrer"&gt;Wallet UI&lt;/a&gt; - Flutter Wallet APP UI by &lt;a href="https://github.com/kalismeras61" rel="noopener noreferrer"&gt;Yasin ilhan&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jerichoi224/MoneyTracker" rel="noopener noreferrer"&gt;Money Tracker&lt;/a&gt; - Money Tracker by &lt;a href="https://github.com/jerichoi224" rel="noopener noreferrer"&gt;Daniel Choi&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Mufaddal5253110/BudgetBudy" rel="noopener noreferrer"&gt;BudgetBudy&lt;/a&gt; - Budget Budy is the easiest and most user friendly expense manager app by &lt;a href="https://github.com/Mufaddal5253110" rel="noopener noreferrer"&gt;Mufaddal Shakir&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/piggyvault/piggyvault" rel="noopener noreferrer"&gt;Piggyvault&lt;/a&gt; - Family finance management app by &lt;a href="https://www.abhith.net" rel="noopener noreferrer"&gt;Abhith Rajan&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/yash1200/bank_management" rel="noopener noreferrer"&gt;Bank Git&lt;/a&gt; - An app to manage bank account by breaking it into branches by &lt;a href="https://github.com/yash1200" rel="noopener noreferrer"&gt;Yash Johri&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ReceiptManager/Application" rel="noopener noreferrer"&gt;Receipt Manager&lt;/a&gt; &amp;lt;!--stargazers:ReceiptManager/Application--&amp;gt; - Receipt parser, manager and tracker by &lt;a href="https://github.com/monolidth" rel="noopener noreferrer"&gt;Monolidth&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/shurygindv/currency-alarm" rel="noopener noreferrer"&gt;Currency Alarm&lt;/a&gt; - Let you know when the rate (USD, EUR, RUB) completely achieves the set level by &lt;a href="https://github.com/shurygindv" rel="noopener noreferrer"&gt;Daniil Shurygin&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/AmruthPillai/BeThriftyToday" rel="noopener noreferrer"&gt;Be Thrifty Today&lt;/a&gt; - A simple and secure money manager that keeps you financially vigilant by &lt;a href="https://github.com/AmruthPillai" rel="noopener noreferrer"&gt;Amruth Pillai&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/appditto/natrium_wallet_flutter" rel="noopener noreferrer"&gt;Natrium&lt;/a&gt; — A fast, robust &amp;amp; secure NANO Wallet by &lt;a href="https://github.com/appditto" rel="noopener noreferrer"&gt;Appditto&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/JoinSEEDS/seeds_light_wallet" rel="noopener noreferrer"&gt;Light Wallet&lt;/a&gt; — EOSIO-based Cryptocurrency Wallet &amp;amp; Ecosystem Explorer by &lt;a href="https://joinseeds.com" rel="noopener noreferrer"&gt;SEEDS&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/y-pakorn/flutter_web3_auction" rel="noopener noreferrer"&gt;Auction&lt;/a&gt; — A Defi ERC20 Token Auction Website by &lt;a href="https://github.com/y-pakorn" rel="noopener noreferrer"&gt;y_pakorn&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Health and Fitness
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/MSzalek-Mobile/weight_tracker" rel="noopener noreferrer"&gt;Weight Tracker&lt;/a&gt; - Weight Tracker is an application dedicated for people who want to dump or maintain weight by &lt;a href="https://github.com/MarcinusX" rel="noopener noreferrer"&gt;Marcin Szałek&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/j-j-gajjar/covid-care" rel="noopener noreferrer"&gt;Covid-Care&lt;/a&gt; - Live Update With Change State country india by &lt;a href="https://github.com/j-j-gajjar" rel="noopener noreferrer"&gt;J-J-GAJJAR&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/adityanjr/covid19-tracker" rel="noopener noreferrer"&gt;Covid19-Tracker&lt;/a&gt; - Tracking the impact of COVID-19 cases based on your location by &lt;a href="https://github.com/adityanjr" rel="noopener noreferrer"&gt;Aditya Singh&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://gitlab.com/enjoyingfoss/feeel/" rel="noopener noreferrer"&gt;Feeel&lt;/a&gt; — A home workout app that respects your privacy by &lt;a href="https://gitlab.com/enjoyingfoss" rel="noopener noreferrer"&gt;Enjoying FOSS&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/openfoodfacts/smooth-app" rel="noopener noreferrer"&gt;Smooth App&lt;/a&gt; - To showcase Open Food Facts's power to a broad range of users through a smooth user experience and sleek user interface by &lt;a href="https://github.com/openfoodfacts/" rel="noopener noreferrer"&gt;Open Food facts&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/artrmz/watermaniac" rel="noopener noreferrer"&gt;Watermaniac&lt;/a&gt; — an app that will help you track the amount of water you drink by &lt;a href="https://github.com/artrmz" rel="noopener noreferrer"&gt;Artur Rymarz&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/wger-project/flutter" rel="noopener noreferrer"&gt;wger&lt;/a&gt; - Flutter fitness/workout app for wger by the &lt;a href="https://github.com/wger-project" rel="noopener noreferrer"&gt;wger project&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/trizin/Quit-Smoke-App" rel="noopener noreferrer"&gt;QuitSmoke&lt;/a&gt; - A Flutter app to help you quit smoking by &lt;a href="https://github.com/trizin" rel="noopener noreferrer"&gt;trizin&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Games
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/VarunS2002/Flutter-Sudoku" rel="noopener noreferrer"&gt;Sudoku&lt;/a&gt; - Sudoku Game built by &lt;a href="https://github.com/VarunS2002/" rel="noopener noreferrer"&gt;VarunS2002&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/scitbiz/flutter_pokedex" rel="noopener noreferrer"&gt;Pokedex&lt;/a&gt; - Pokedex app built by &lt;a href="https://github.com/scitbiz" rel="noopener noreferrer"&gt;Pham Sy Hung&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jerald-jacob/Flutter-Apps/tree/master/Hangman" rel="noopener noreferrer"&gt;Hangman&lt;/a&gt;-Hangman game word hunting by &lt;a href="https://github.com/jerald-jacob/" rel="noopener noreferrer"&gt;Jerald jacob&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/RedBrogdon/flutterflip" rel="noopener noreferrer"&gt;Flip&lt;/a&gt; - Reversi game by &lt;a href="https://github.com/RedBrogdon" rel="noopener noreferrer"&gt;Andrew Brogdon&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/anuranBarman/2048" rel="noopener noreferrer"&gt;2048&lt;/a&gt; - 2048 game by &lt;a href="https://github.com/anuranBarman" rel="noopener noreferrer"&gt;Anuran Barman&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/renancaraujo/trex-flame" rel="noopener noreferrer"&gt;TRex&lt;/a&gt; - Port of the famous Chrome's Trex game by &lt;a href="https://github.com/renancaraujo" rel="noopener noreferrer"&gt;Renan C. Araújo&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/boeledi/flutter_crush" rel="noopener noreferrer"&gt;Crush&lt;/a&gt; - How to build a Math-3 game, like Candy Crush, Bejeweled by &lt;a href="https://didierboelens.com" rel="noopener noreferrer"&gt;Didier Boelens&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kevmoo/slide_puzzle" rel="noopener noreferrer"&gt;Slide Puzzle&lt;/a&gt; - Classic slide (15) puzzle by &lt;a href="https://github.com/kevmoo" rel="noopener noreferrer"&gt;Kevin Moore&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/deven98/FlutterSolitaire" rel="noopener noreferrer"&gt;Solitaire&lt;/a&gt; -A Solitaire clone made by &lt;a href="https://github.com/deven98/" rel="noopener noreferrer"&gt;Deven Joshi&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jaysavsani07/math-metrix" rel="noopener noreferrer"&gt;Math Matrix&lt;/a&gt; -Brain training games composition &lt;a href="https://github.com/mehulmk" rel="noopener noreferrer"&gt;Mehul Makwana&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/javipacheco/impossiblocks" rel="noopener noreferrer"&gt;Impossiblocks&lt;/a&gt; -Brain training game made by &lt;a href="https://github.com/javipacheco" rel="noopener noreferrer"&gt;Javi Pacheco&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ITCraftship/truth-or-dare" rel="noopener noreferrer"&gt;Truth or Dare&lt;/a&gt; - a Truth or Dare party game build with &lt;a href="https://codemagic.io/" rel="noopener noreferrer"&gt;Codemagic&lt;/a&gt; and &lt;a href="https://fastlane.tools/" rel="noopener noreferrer"&gt;Fastlane&lt;/a&gt; by &lt;a href="https://github.com/ITCraftship" rel="noopener noreferrer"&gt;ITCraftship&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ArizArmeidi/FlutterDex" rel="noopener noreferrer"&gt;FlutterDex&lt;/a&gt; - a Simple Pokedex app built with API from &lt;a href="https://pokeapi.co/" rel="noopener noreferrer"&gt;PokeAPI&lt;/a&gt; by &lt;a href="https://github.com/ArizArmeidi" rel="noopener noreferrer"&gt;Ariz Armeidi&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/satyamx64/space_empires" rel="noopener noreferrer"&gt;Space Empires&lt;/a&gt; - A 4X Space themed strategy game by &lt;a href="https://github.com/satyamx64" rel="noopener noreferrer"&gt;Satyam Sharma&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Lifestyle
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/benoitletondor/Beer-Me-Up" rel="noopener noreferrer"&gt;Beer-Me-Up&lt;/a&gt; - Beer tracking nicely designed by &lt;a href="https://github.com/benoitletondor" rel="noopener noreferrer"&gt;Benoit Letondor&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Tarikul711/flutter-food-delivery-app-ui" rel="noopener noreferrer"&gt;Food Ordering App&lt;/a&gt; - Food delivery App UI designed by &lt;a href="https://github.com/tarikul711" rel="noopener noreferrer"&gt;Tarikul Islam&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Media
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/avirias/Grey" rel="noopener noreferrer"&gt;Grey&lt;/a&gt; - A Material designed music player developed in Flutter by &lt;a href="https://github.com/avirias" rel="noopener noreferrer"&gt;Avinash Kumar&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/roughike/inKino" rel="noopener noreferrer"&gt;InKino&lt;/a&gt; - A multiplatform Dart movie app by &lt;a href="https://github.com/roughike" rel="noopener noreferrer"&gt;Iiro Krankka&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/iampawan/Flutter-Music-Player" rel="noopener noreferrer"&gt;Music Player&lt;/a&gt; - Full featured music player by &lt;a href="https://about.me/imthepk" rel="noopener noreferrer"&gt;Pawan Kumar&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/aaronoe/FlutterCinematic" rel="noopener noreferrer"&gt;Cinematic&lt;/a&gt; - UI for Movie DB Public API by &lt;a href="https://github.com/aaronoe" rel="noopener noreferrer"&gt;Aaron Oertel&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/moda20/flutter-tunein" rel="noopener noreferrer"&gt;TuneIN&lt;/a&gt; - Dynamic themed music player with casting &lt;a href="https://github.com/moda20" rel="noopener noreferrer"&gt;Moda20&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/o-ifeanyi/musicPlayer" rel="noopener noreferrer"&gt;Flutter Music&lt;/a&gt; - A Flutter music player to play songs by &lt;a href="https://github.com/o-ifeanyi" rel="noopener noreferrer"&gt;o-ifeanyi&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  News and Magazine
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/jbarr21/flews" rel="noopener noreferrer"&gt;Flews&lt;/a&gt; - A news client written in Flutter that displays top stories from Hacker News, Reddit's r/AndroidDev, Imgur's most viral, and GitHub top Java repos by &lt;a href="https://github.com/jbarr21" rel="noopener noreferrer"&gt;James Barr&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/theankurkedia/NewsBuzz" rel="noopener noreferrer"&gt;NewsBuzz&lt;/a&gt; - Firebase backed news reader using News API by &lt;a href="https://github.com/theankurkedia" rel="noopener noreferrer"&gt;Ankur Kedia&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/j-j-gajjar/FLUTTER_NewsApp" rel="noopener noreferrer"&gt;NewsApp&lt;/a&gt; - Live News Using API with Many API filterrs  by &lt;a href="https://github.com/j-j-gajjar" rel="noopener noreferrer"&gt;J-J-GAJJAR&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/akashlilhare/news_app" rel="noopener noreferrer"&gt;InNews&lt;/a&gt; - Live News in eight different categories by &lt;a href="https://github.com/akashlilhare" rel="noopener noreferrer"&gt;Akash Lilhare&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Personalization
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/rajayogan/flutterui-furnitureapp" rel="noopener noreferrer"&gt;Furniture&lt;/a&gt; - Code for Furniture app dashboard created by &lt;a href="https://github.com/rajayogan/" rel="noopener noreferrer"&gt;Raja Yogan&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Ivaskuu/dashboard" rel="noopener noreferrer"&gt;Dashboard&lt;/a&gt; - Dashboard concept made by &lt;a href="https://github.com/Ivaskuu/" rel="noopener noreferrer"&gt;Ivascu Adrian&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/jogboms/tailor_made" rel="noopener noreferrer"&gt;Tailor made&lt;/a&gt; - Managing a Fashion designer's daily routine by &lt;a href="https://github.com/jogboms" rel="noopener noreferrer"&gt;Jeremiah Ogbomo&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tsvillain/Wallbay" rel="noopener noreferrer"&gt;Wallbay&lt;/a&gt; - Wallpaper App developed in Flutter using Pexels API by &lt;a href="https://github.com/tsvillain" rel="noopener noreferrer"&gt;Tekeshwar Singh&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/iamtheblackunicorn/Buwa" rel="noopener noreferrer"&gt;BUWA (Black Unicorn Wallpapers)&lt;/a&gt;, the best wallpaper app for Android that features aesthetically-pleasing and sexy wallpapers and gets new wallpapers every other week by &lt;a href="https://github.com/iamtheblackunicorn" rel="noopener noreferrer"&gt;The Black Unicorn&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Productivity
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/Norbert515/BookSearch" rel="noopener noreferrer"&gt;BookSearch&lt;/a&gt; - Digital BookShelf for your reading progress by &lt;a href="https://github.com/Norbert515" rel="noopener noreferrer"&gt;Norbert515&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tuannguyendotme/flutter_todo" rel="noopener noreferrer"&gt;Flutter Todo&lt;/a&gt; - This Todo app is implemented using Flutter by &lt;a href="https://github.com/tuannguyendotme" rel="noopener noreferrer"&gt;Tuan Nguyen&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/CarGuo/GSYGithubAppFlutter" rel="noopener noreferrer"&gt;GSYGithubAppFlutter&lt;/a&gt; - An open source Github client App developed by Flutter by &lt;a href="https://github.com/CarGuo" rel="noopener noreferrer"&gt;Shuyu Guo&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/lzyy/habbit" rel="noopener noreferrer"&gt;Habbit&lt;/a&gt; - Habbit is an ultra simple habit tracker that just works by &lt;a href="https://github.com/lzyy/habbit" rel="noopener noreferrer"&gt;Li Zhong&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/huextrat/Taskist" rel="noopener noreferrer"&gt;Taskist&lt;/a&gt; - Taskist is a ToDo List app for Task Management by &lt;a href="https://github.com/huextrat" rel="noopener noreferrer"&gt;Hugo EXTRAT&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/hamaluik/timecop" rel="noopener noreferrer"&gt;Time Cop&lt;/a&gt; - A time tracking app that respects your privacy by &lt;a href="https://github.com/hamaluik" rel="noopener noreferrer"&gt;Kenton Hamaluik&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/matthewtory/trinity-orientation-2018" rel="noopener noreferrer"&gt;Trinity Orientation&lt;/a&gt; - Orientation week at Trinity College, U of T by &lt;a href="https://github.com/matthewtory" rel="noopener noreferrer"&gt;Matthew Tory&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/bimsina/notes-app" rel="noopener noreferrer"&gt;Notes App&lt;/a&gt; - Note Taking App made with Flutter with Sqlite as database by &lt;a href="https://github.com/bimsina" rel="noopener noreferrer"&gt;Bibek Timsina&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/burhanrashid52/WhatTodo" rel="noopener noreferrer"&gt;WhatTodo&lt;/a&gt; - Todoist like UI by &lt;a href="https://about.me/burhanrashid52" rel="noopener noreferrer"&gt;Burhanuddin Rashid&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Rohithgilla12/yata" rel="noopener noreferrer"&gt;Yata&lt;/a&gt; - Todo application that makes your todolist as your wallpaper by &lt;a href="https://github.com/Rohithgilla12" rel="noopener noreferrer"&gt;Rohith Gilla&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ChangJoo-Park/journapi_flutter" rel="noopener noreferrer"&gt;Journapi&lt;/a&gt; - Bullet journal application made with Flutter and GetX. by &lt;a href="https://github.com/ChangJoo-Park" rel="noopener noreferrer"&gt;ChangJoo Park&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/proninyaroslav/libretrack" rel="noopener noreferrer"&gt;LibreTrack&lt;/a&gt; - Private, cross-platform package tracking app by &lt;a href="https://github.com/proninyaroslav" rel="noopener noreferrer"&gt;Yaroslav Pronin&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Social Network
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/aleksanderwozniak/deer" rel="noopener noreferrer"&gt;Deer&lt;/a&gt; - Minimalist Todo Planner built using BLoC pattern by &lt;a href="https://github.com/aleksanderwozniak" rel="noopener noreferrer"&gt;Aleksander Woźniak&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mdanics/fluttergram" rel="noopener noreferrer"&gt;FlutterGram&lt;/a&gt; - Complete Instagram based on Firestore &amp;amp; Google Functions by &lt;a href="https://github.com/mdanics" rel="noopener noreferrer"&gt;MDanics&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rohan20/flutter-chat-app" rel="noopener noreferrer"&gt;Flutter Chat App&lt;/a&gt; - A one-to-one chat app built on Flutter with firebase authentication and image sharing capability by &lt;a href="https://github.com/rohan20" rel="noopener noreferrer"&gt;Rohan Taneja&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/iampawan/FlutterWhatsAppClone" rel="noopener noreferrer"&gt;FlutterWhatsAppClone&lt;/a&gt; - Building a WhatsApp Clone in Flutter by &lt;a href="https://github.com/iampawan" rel="noopener noreferrer"&gt;Pawan Kumar&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fablue/lime-flutter" rel="noopener noreferrer"&gt;Lime&lt;/a&gt; - Lime social network by Sebastian Sellmair.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/efortuna/memechat" rel="noopener noreferrer"&gt;Meme Chat&lt;/a&gt; - Chat app on Flutter, using Firebase, Google Sign In, and device camera integration by a team of Googlers.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Ivaskuu/tinder_cards" rel="noopener noreferrer"&gt;Tinder Card&lt;/a&gt; - Tinder like cards swipe effect by &lt;a href="https://github.com/Ivaskuu/" rel="noopener noreferrer"&gt;Ivascu Adrian&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/TheAlphamerc/flutter_twitter_clone" rel="noopener noreferrer"&gt;Fwitter&lt;/a&gt; - Fully functional Twitter clone built in flutter framework using Firebase realtime database and storage by &lt;a href="https://github.com/TheAlphamerc" rel="noopener noreferrer"&gt;Sonu Sharma&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ahmedgulabkhan/GroupChatApp" rel="noopener noreferrer"&gt;GroupChatApp&lt;/a&gt; - Group chat application using Flutter and Firebase, where users can register and create groups or join already existing groups and start conversing with each other by &lt;a href="https://github.com/ahmedgulabkhan" rel="noopener noreferrer"&gt;Ahmed Gulab Khan&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/robertodoering/harpy" rel="noopener noreferrer"&gt;Harpy&lt;/a&gt; - A Twitter app built with Flutter &lt;a href="https://github.com/robertodoering/harpy" rel="noopener noreferrer"&gt;Roberto Doering&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Big-Fig/Fediverse.app" rel="noopener noreferrer"&gt;Fedi&lt;/a&gt; - Open-source client for Pleroma and Mastodon social networks by &lt;a href="https://github.com/Big-Fig" rel="noopener noreferrer"&gt;Big-Fig&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/redsolver/skyfeed" rel="noopener noreferrer"&gt;Skyfeed&lt;/a&gt; - Alternative to Twitter by &lt;a href="https://github.com/redsolver" rel="noopener noreferrer"&gt;RedSolver&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Shopping
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/1hanzla100/flutter-yumniastic" rel="noopener noreferrer"&gt;Yumniastic Food Shop App&lt;/a&gt; - Online food delivery service app and Django API by &lt;a href="https://github.com/1hanzla100/" rel="noopener noreferrer"&gt;1hanzla100&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Tarikul711/flutter-ecommerce" rel="noopener noreferrer"&gt;E-Commerce App&lt;/a&gt; - Ecommerce app UI and API integration by &lt;a href="https://github.com/Tarikul711/" rel="noopener noreferrer"&gt;Md Tarikul Islam&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Widle-Studio/Grocery-App" rel="noopener noreferrer"&gt;Grocery-App&lt;/a&gt; - Flutter Grocery Shopping App by &lt;a href="https://github.com/Widle-Studio" rel="noopener noreferrer"&gt;Widle&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/searchy2/FlutterGames" rel="noopener noreferrer"&gt;Flutter Games&lt;/a&gt; - Flutter app for purchasing and renting games by &lt;a href="https://github.com/searchy2" rel="noopener noreferrer"&gt;Ray Li&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Ivaskuu/plantly" rel="noopener noreferrer"&gt;Plantly&lt;/a&gt; - App concept where you can purchase and get info of plants by &lt;a href="https://github.com/Ivaskuu/" rel="noopener noreferrer"&gt;Ivascu Adrian&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/gdgluanda/rapidinho" rel="noopener noreferrer"&gt;Rapidinho&lt;/a&gt; - Unofficial delivery app for Rapidinho made by &lt;a href="https://github.com/gdgluanda" rel="noopener noreferrer"&gt;GDG Luanda
&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/LaCoro/ConsumerFlutterApp" rel="noopener noreferrer"&gt;LaCoro Q-commerce app&lt;/a&gt; - An open source quick commerce app in flutter by &lt;a href="https://github.com/LaCoro" rel="noopener noreferrer"&gt;LaCoro&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/woosignal/flutter-woocommerce-app" rel="noopener noreferrer"&gt;Flutter WooCommerce app&lt;/a&gt; - A ready-made app template for WooCommerce stores by &lt;a href="https://github.com/woosignal" rel="noopener noreferrer"&gt;WooSignal&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Tools
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/dart-flitter/flitter" rel="noopener noreferrer"&gt;Flitter&lt;/a&gt; - Glitter app by &lt;a href="https://twitter.com/HadrienLejard" rel="noopener noreferrer"&gt;Hadrien Lejard&lt;/a&gt; and &lt;a href="https://twitter.com/kevin_segaud" rel="noopener noreferrer"&gt;Kevin Segaud&lt;/a&gt;. It uses Redux and Jaguar.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Samaritan1011001/Trovami" rel="noopener noreferrer"&gt;Trovami&lt;/a&gt; - A Live location app created in Flutter using Firebase as the backend by &lt;a href="https://github.com/Samaritan1011001" rel="noopener noreferrer"&gt;ManojNB&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/bimsina/wallpaper" rel="noopener noreferrer"&gt;Wallpaper&lt;/a&gt; - Wallpaper App made with Flutter with Dynamic Theming by &lt;a href="https://github.com/bimsina" rel="noopener noreferrer"&gt;Bibek Timsina&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/memspace/zefyr" rel="noopener noreferrer"&gt;Zefyr&lt;/a&gt; - Soft and gentle rich text editing for Flutter applications by &lt;a href="https://github.com/memspace" rel="noopener noreferrer"&gt;Memspace&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/shaxxx/Signalmeter2" rel="noopener noreferrer"&gt;Enigma Signal Meter&lt;/a&gt; - Align your satellite dish by reading signal from satellite receiver by &lt;a href="https://krkadoni.com" rel="noopener noreferrer"&gt;Krkadoni&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/bipin000/jagnik" rel="noopener noreferrer"&gt;Jagnik&lt;/a&gt; - Simple elegant Photo Text Editing tool  in flutter by &lt;a href="https://github.com/bipin000" rel="noopener noreferrer"&gt;Bipin Chandra Tripathi&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pichillilorenzo/flutter_browser_app" rel="noopener noreferrer"&gt;Flutter Browser App&lt;/a&gt; - A Full-Featured Mobile Browser App by &lt;a href="https://github.com/pichillilorenzo" rel="noopener noreferrer"&gt;Lorenzo Pichilli&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/MDSADABWASIM/You" rel="noopener noreferrer"&gt;You&lt;/a&gt; — An app that checks what internet knows about you by &lt;a href="https://github.com/MDSADABWASIM" rel="noopener noreferrer"&gt;Md Sadab Wasim&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/1hanzla100/flutter-weather" rel="noopener noreferrer"&gt;Weather&lt;/a&gt; - Weather App Built with Flutter and OpenWeatherMap API by  &lt;a href="https://github.com/1hanzla100/" rel="noopener noreferrer"&gt;1hanzla100&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ArizArmeidi/FlutterWeather" rel="noopener noreferrer"&gt;FlutterWeather&lt;/a&gt; - Weather App with clean and modern UI by &lt;a href="https://github.com/ArizArmeidi" rel="noopener noreferrer"&gt;Ariz Armeidi&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/KyleKun/one_second_diary" rel="noopener noreferrer"&gt;One Second Diary&lt;/a&gt; - Minimalist Video Diary app by &lt;a href="https://github.com/KyleKun" rel="noopener noreferrer"&gt;KyleKun&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Travel
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/MarcinusX/flutter_ui_challenge_flight_search" rel="noopener noreferrer"&gt;Flight search&lt;/a&gt; - Flight search app by &lt;a href="https://github.com/MarcinusX" rel="noopener noreferrer"&gt;Marcin Szałek&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/bluemix/tourism-demo" rel="noopener noreferrer"&gt;Tourism&lt;/a&gt; - A Flutter tourism app by &lt;a href="https://github.com/bluemix/" rel="noopener noreferrer"&gt;Abdulmomen Kadum&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Ivaskuu/travel-guide_app" rel="noopener noreferrer"&gt;Travel Guide&lt;/a&gt; - Travel guide app by &lt;a href="https://github.com/Ivaskuu/" rel="noopener noreferrer"&gt;Ivascu Adrian&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/devclub-iitd/ShareACab" rel="noopener noreferrer"&gt;ShareACab&lt;/a&gt; - Cab Sharing App for college students by &lt;a href="https://github.com/devclub-iitd/" rel="noopener noreferrer"&gt;DevClub IIT Delhi&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://creativecommons.org/publicdomain/zero/1.0/" rel="noopener noreferrer"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/http%3A%2F%2Fmirrors.creativecommons.org%2Fpresskit%2Fbuttons%2F88x31%2Fsvg%2Fcc-zero.svg" alt="CC0" width="88" height="31"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Resources
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/tortuvshin/open-source-flutter-apps" rel="noopener noreferrer"&gt;open-source-flutter-apps&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://flutterrepos.com/" rel="noopener noreferrer"&gt;A curated list of awesome Flutter frameworks, libraries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>PHP Libraries for sending and parsing email</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Sat, 04 Dec 2021 14:08:53 +0000</pubDate>
      <link>https://dev.to/devfan/php-libraries-for-sending-and-parsing-email-1m7h</link>
      <guid>https://dev.to/devfan/php-libraries-for-sending-and-parsing-email-1m7h</guid>
      <description>&lt;h2&gt;
  
  
  PHP Email Libraries for sending and parsing email.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/tijsverkoyen/CssToInlineStyles" rel="noopener noreferrer"&gt;CssToInlineStyles&lt;/a&gt; - A library to inline CSS in email templates.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/willdurand/EmailReplyParser" rel="noopener noreferrer"&gt;Email Reply Parser&lt;/a&gt; - An email reply parser library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/nojacko/email-validator" rel="noopener noreferrer"&gt;Email Validator&lt;/a&gt; - A small email address validation library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tedious/Fetch" rel="noopener noreferrer"&gt;Fetch&lt;/a&gt; - An IMAP library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mautic/mautic" rel="noopener noreferrer"&gt;Mautic&lt;/a&gt; - Email marketing automation&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/PHPMailer/PHPMailer" rel="noopener noreferrer"&gt;PHPMailer&lt;/a&gt; - Another mailer solution.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/barbushin/php-imap" rel="noopener noreferrer"&gt;PHP IMAP&lt;/a&gt; - A library to access mailboxes via POP3, IMAP and NNTP.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Stampie/Stampie" rel="noopener noreferrer"&gt;Stampie&lt;/a&gt; - A library for email services such as &lt;a href="https://sendgrid.com/" rel="noopener noreferrer"&gt;SendGrid&lt;/a&gt;, &lt;a href="https://postmarkapp.com" rel="noopener noreferrer"&gt;PostMark&lt;/a&gt;, &lt;a href="https://www.mailgun.com/" rel="noopener noreferrer"&gt;MailGun&lt;/a&gt; and &lt;a href="https://mailchimp.com/features/transactional-email/" rel="noopener noreferrer"&gt;Mandrill&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://swiftmailer.symfony.com" rel="noopener noreferrer"&gt;SwiftMailer&lt;/a&gt; - A mailer solution.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/symfony/mailer" rel="noopener noreferrer"&gt;Symfony Mailer&lt;/a&gt; - A powerful library for creating and sending emails. &lt;/li&gt;
&lt;li&gt;&lt;a href="https://bestofphp.com/" rel="noopener noreferrer"&gt;A curated list of awesome PHP libraries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>File Systems implemented in Go</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Sat, 04 Dec 2021 13:08:48 +0000</pubDate>
      <link>https://dev.to/devfan/file-systems-implemented-in-go-45e7</link>
      <guid>https://dev.to/devfan/file-systems-implemented-in-go-45e7</guid>
      <description>&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/spf13/afero" rel="noopener noreferrer"&gt;afero&lt;/a&gt; - A FileSystem Abstraction System for Go&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fsnotify/fsnotify" rel="noopener noreferrer"&gt;fsnotify&lt;/a&gt; - Cross-platform file system notifications for Go.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/juicedata/juicefs" rel="noopener noreferrer"&gt;juicefs&lt;/a&gt; - A distributed POSIX file system built on top of Redis and S3.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/GoogleCloudPlatform/gcsfuse" rel="noopener noreferrer"&gt;gcsfuse&lt;/a&gt; - A user-space file system for interacting with Google Cloud Storage.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/git-lfs/git-lfs" rel="noopener noreferrer"&gt;git-lfs&lt;/a&gt; - Git extension for versioning large files.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/coreos/go-systemd" rel="noopener noreferrer"&gt;go-systemd&lt;/a&gt; - Go bindings to systemd socket activation, journal, D-Bus, and unit files.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/kahing/goofys" rel="noopener noreferrer"&gt;goofys&lt;/a&gt; - A high-performance, POSIX-ish Amazon S3 file system written in Go.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/geohot/minikeyvalue" rel="noopener noreferrer"&gt;minikeyvalue&lt;/a&gt; - A ~1000 line distributed key value store.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/chrislusf/seaweedfs" rel="noopener noreferrer"&gt;seaweedfs&lt;/a&gt; - SeaweedFS is a simple and highly scalable distributed file system for small files.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/ovh/svfs" rel="noopener noreferrer"&gt;svfs&lt;/a&gt; - A virtual file system over Openstack Swift built upon fuse.&lt;a href="https://golangrepo.com/" rel="noopener noreferrer"&gt;https://golangrepo.com/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>Awesome Golang Audio and Music Libraries</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Sat, 04 Dec 2021 06:50:54 +0000</pubDate>
      <link>https://dev.to/devfan/awesome-golang-audio-and-music-libraries-3lg1</link>
      <guid>https://dev.to/devfan/awesome-golang-audio-and-music-libraries-3lg1</guid>
      <description>&lt;h2&gt;
  
  
  Audio and Music
&lt;/h2&gt;

&lt;p&gt;&lt;em&gt;Libraries for manipulating audio.&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/mewkiz/flac" rel="noopener noreferrer"&gt;flac&lt;/a&gt; - Native Go FLAC encoder/decoder with support for FLAC streams.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Comcast/gaad" rel="noopener noreferrer"&gt;gaad&lt;/a&gt; - Native Go AAC bitstream parser.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/DylanMeeus/GoAudio" rel="noopener noreferrer"&gt;GoAudio&lt;/a&gt; - Native Go Audio Processing Library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/dh1tw/gosamplerate" rel="noopener noreferrer"&gt;gosamplerate&lt;/a&gt; - libsamplerate bindings for go.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/bogem/id3v2" rel="noopener noreferrer"&gt;id3v2&lt;/a&gt; - ID3 decoding and encoding library for Go.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/gen2brain/malgo" rel="noopener noreferrer"&gt;malgo&lt;/a&gt; - Mini audio library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tosone/minimp3" rel="noopener noreferrer"&gt;minimp3&lt;/a&gt; - Lightweight MP3 decoder library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/go-mix/mix" rel="noopener noreferrer"&gt;mix&lt;/a&gt; - Sequence-based Go-native audio mixer for music apps.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/go-music-theory/music-theory" rel="noopener noreferrer"&gt;music-theory&lt;/a&gt; - Music theory models in Go.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/hajimehoshi/oto" rel="noopener noreferrer"&gt;Oto&lt;/a&gt; - A low-level library to play sound on multiple platforms.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/gordonklaus/portaudio" rel="noopener noreferrer"&gt;PortAudio&lt;/a&gt; - Go bindings for the PortAudio audio I/O library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/rakyll/portmidi" rel="noopener noreferrer"&gt;portmidi&lt;/a&gt; - Go bindings for PortMidi.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/mccoyst/vorbis" rel="noopener noreferrer"&gt;vorbis&lt;/a&gt; - "Native" Go Vorbis decoder (uses CGO, but has no dependencies).
&lt;a href="https://golangd.com/" rel="noopener noreferrer"&gt;Awesome Go libraries&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
      <category>audio</category>
    </item>
    <item>
      <title>Swift Utilities for writing to and reading from the device log</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Sat, 04 Dec 2021 06:30:43 +0000</pubDate>
      <link>https://dev.to/devfan/swift-utilities-for-writing-to-and-reading-from-the-device-log-5gc3</link>
      <guid>https://dev.to/devfan/swift-utilities-for-writing-to-and-reading-from-the-device-log-5gc3</guid>
      <description>&lt;h3&gt;
  
  
  Logging
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;Utilities for writing to and reading from the device log&lt;/em&gt; &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/tadija/AEConsole" rel="noopener noreferrer"&gt;AEConsole&lt;/a&gt; - Customizable Console UI overlay with debug log on top of your iOS App.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/emaloney/CleanroomLogger" rel="noopener noreferrer"&gt;CleanroomLogger&lt;/a&gt; - Configurable and extensible high-level logging API that is simple, lightweight and performant.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/SwiftStudies/Duration" rel="noopener noreferrer"&gt;Duration&lt;/a&gt; 🐧 - Lightweight logging library focused on reporting timings for operations.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/bannzai/gedatsu" rel="noopener noreferrer"&gt;Gedatsu&lt;/a&gt; - Provide readable format about AutoLayout error console log.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Kitura/HeliumLogger" rel="noopener noreferrer"&gt;HeliumLogger&lt;/a&gt; 🐧 - IBM's lightweight logging framework.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/hemangshah/printer" rel="noopener noreferrer"&gt;Printer&lt;/a&gt; - A fancy logger for your next app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/sushichop/Puppy" rel="noopener noreferrer"&gt;Puppy&lt;/a&gt; 🐧 - A flexible logging library that supports multiple transports and platforms.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/cookpad/puree-ios" rel="noopener noreferrer"&gt;Puree&lt;/a&gt; - A log collector for iOS.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/goktugyil/QorumLogs" rel="noopener noreferrer"&gt;QorumLogs&lt;/a&gt; - Logging Utility for Xcode &amp;amp; Google Docs.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/onevcat/Rainbow" rel="noopener noreferrer"&gt;Rainbow&lt;/a&gt; 🐧 - Delightful console output.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/SwiftyBeaver/SwiftyBeaver" rel="noopener noreferrer"&gt;SwiftyBeaver&lt;/a&gt; 🐧 - Multi-platform logging during development &amp;amp; release.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Cosmo/TinyConsole" rel="noopener noreferrer"&gt;TinyConsole&lt;/a&gt; - A tiny log console to display information while using your iOS app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tonystone/tracelog" rel="noopener noreferrer"&gt;TraceLog&lt;/a&gt; 🐧 - Dead Simple: logging the way it's meant to be!  Runs on iOS, macOS, and Linux.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/wojteklu/Watchdog" rel="noopener noreferrer"&gt;Watchdog&lt;/a&gt; - Utility for logging excessive blocking on the main thread.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/tapwork/WatchdogInspector" rel="noopener noreferrer"&gt;WatchdogInspector&lt;/a&gt; - A logging tool to show the current framerate (fps) in the status bar of your iOS app.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Nike-Inc/Willow" rel="noopener noreferrer"&gt;Willow&lt;/a&gt; - Willow is a powerful, yet lightweight logging library.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/DaveWoodCom/XCGLogger" rel="noopener noreferrer"&gt;XCGLogger&lt;/a&gt; - Full featured &amp;amp; Configurable logging utility with log levels, timestamps, and line numbers.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://swiftobc.com/" rel="noopener noreferrer"&gt;A curated list of awesome Swift frameworks, libraries and software&lt;/a&gt;&lt;/p&gt;

</description>
      <category>swift</category>
      <category>log</category>
    </item>
    <item>
      <title>Awesome flutter image components</title>
      <dc:creator>Tony Larry</dc:creator>
      <pubDate>Sat, 04 Dec 2021 06:25:32 +0000</pubDate>
      <link>https://dev.to/devfan/awesome-flutter-image-components-4gad</link>
      <guid>https://dev.to/devfan/awesome-flutter-image-components-4gad</guid>
      <description>&lt;h3&gt;
  
  
  Image
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://flutterrepos.com/lib/serenader2014-flutter_carousel_slider-flutter-image" rel="noopener noreferrer"&gt;Carousel Slider&lt;/a&gt; [1161⭐] - Carousel slider widget, support infinite scroll and custom child widget by &lt;a href="https://github.com/serenader2014" rel="noopener noreferrer"&gt;serenader&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/pulyaevskiy/parallax-image" rel="noopener noreferrer"&gt;Parallax Image&lt;/a&gt; [238⭐] - Image parallax by &lt;a href="https://github.com/pulyaevskiy" rel="noopener noreferrer"&gt;Anatoly Pulyaevskiy&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/renancaraujo/photo_view" rel="noopener noreferrer"&gt;Photo View&lt;/a&gt; [1461⭐] - Scalable image view with loading placeholder by &lt;a href="https://github.com/renancaraujo" rel="noopener noreferrer"&gt;Renan C. Araújo&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/dnfield/flutter_svg" rel="noopener noreferrer"&gt;SVG&lt;/a&gt; [1259⭐] - SVG parsing, rendering, and widget library by &lt;a href="https://github.com/dnfield" rel="noopener noreferrer"&gt;Dan Field&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/hnvn/flutter_image_cropper" rel="noopener noreferrer"&gt;Image Cropper&lt;/a&gt; [811⭐] - Crop your images support ratio, rotation, zoom by &lt;a href="https://github.com/hnvn" rel="noopener noreferrer"&gt;HungHD&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/renefloor/flutter_cached_network_image" rel="noopener noreferrer"&gt;Cached Network Image&lt;/a&gt; [1882⭐] - Show images from the internet and keep them in the cache directory by.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/xvrh/lottie-flutter" rel="noopener noreferrer"&gt;Lottie&lt;/a&gt; [627⭐] - Use airbnb's popular &lt;a href="https://airbnb.design/lottie/" rel="noopener noreferrer"&gt;After Effects Animation library&lt;/a&gt; by &lt;a href="https://github.com/xvrh/lottie-flutter" rel="noopener noreferrer"&gt;xvrh&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/renancaraujo/bitmap" rel="noopener noreferrer"&gt;Bitmap&lt;/a&gt; [126⭐] - Perform Bitmap manipulations (such as contrast and exposure) with a help from the Dart FFI by &lt;a href="https://github.com/renancaraujo" rel="noopener noreferrer"&gt;Renan C. Araújo&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/xclud/flutter_crop" rel="noopener noreferrer"&gt;Crop&lt;/a&gt; [169⭐] - Crop any widget/image in Android, iOS, Web and Desktop by &lt;a href="https://github.com/xclud/" rel="noopener noreferrer"&gt;Mahdi K. Fard&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Image Picker
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://github.com/flutter/plugins/tree/master/packages/image_picker" rel="noopener noreferrer"&gt;Image Picker&lt;/a&gt; - Images Selection by &lt;a href="http://www.collinjackson.com" rel="noopener noreferrer"&gt;Collin Jackson&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/fluttercandies/flutter_wechat_assets_picker" rel="noopener noreferrer"&gt;WeChat Assets Picker&lt;/a&gt; [788⭐] - Assets picker in WeChat style, support multi assets by &lt;a href="https://github.com/AlexV525" rel="noopener noreferrer"&gt;Alex Li&lt;/a&gt;.
&lt;a href="https://flutterrepos.com/" rel="noopener noreferrer"&gt;Awesome Flutter libraries&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

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