<?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: Aries_unknown</title>
    <description>The latest articles on DEV Community by Aries_unknown (@abdullahzulfiqar).</description>
    <link>https://dev.to/abdullahzulfiqar</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%2F1352500%2Fe77dd067-d726-4237-9f51-c32e556f45e3.jpeg</url>
      <title>DEV Community: Aries_unknown</title>
      <link>https://dev.to/abdullahzulfiqar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abdullahzulfiqar"/>
    <language>en</language>
    <item>
      <title>Quickstart with pytorch (Part-1)</title>
      <dc:creator>Aries_unknown</dc:creator>
      <pubDate>Sun, 03 Aug 2025 14:33:19 +0000</pubDate>
      <link>https://dev.to/abdullahzulfiqar/quickstart-with-pytorch-part-1-2h52</link>
      <guid>https://dev.to/abdullahzulfiqar/quickstart-with-pytorch-part-1-2h52</guid>
      <description>&lt;p&gt;PyTorch is one of the widely used deep learning libraries .Learning it has many benefits. Today we will start to learn about basic of pyTorch.&lt;/p&gt;

&lt;h2&gt;
  
  
  Importing Libraries
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import torch
from torch import nn
from torch.utils.data import DataLoader
from torchvision import datasets
from torchvision.transforms import ToTensor
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;importing torch&lt;/li&gt;
&lt;li&gt;then we are importing the Dataloader form torch.utils.data which help to iter over the data &lt;/li&gt;
&lt;li&gt;then importing dataset from pytorchvision &lt;/li&gt;
&lt;li&gt;lastly importing the transforms function that will transform the data to tensor of we could say array &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Loading Dataset
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# Download training data from open datasets.
training_data = datasets.FashionMNIST(
    root="data",
    train=True,
    download=True,
    transform=ToTensor(),
)

# Download test data from open datasets.
test_data = datasets.FashionMNIST(
    root="data",
    train=False,
    download=True,
    transform=ToTensor(),

)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Making two variables training and testing to load the dataset of fashion items and transforming it
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;## Create the dataloader 
We will create the data loader to iterate through 
batch_size = 64

# Create data loaders.
train_dataloader = DataLoader(training_data, batch_size=batch_size)
test_dataloader = DataLoader(test_data, batch_size=batch_size)

for X, y in test_dataloader:
    print(f"Shape of X [N, C, H, W]: {X.shape}")
    print(f"Shape of y: {y.shape} {y.dtype}")
    break
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Will be continue from part-2&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>ai</category>
      <category>deeplearning</category>
    </item>
    <item>
      <title>From Student Struggle to SaaS Startup: Solving Invoicing with InvoiceTastic</title>
      <dc:creator>Aries_unknown</dc:creator>
      <pubDate>Sun, 23 Feb 2025 08:02:01 +0000</pubDate>
      <link>https://dev.to/abdullahzulfiqar/from-student-struggle-to-saas-startup-solving-invoicing-with-invoicetastic-j88</link>
      <guid>https://dev.to/abdullahzulfiqar/from-student-struggle-to-saas-startup-solving-invoicing-with-invoicetastic-j88</guid>
      <description>&lt;p&gt;Hey dev.to community,&lt;/p&gt;

&lt;p&gt;I'm a student developer with a passion for building things that solve real-world problems. Lately, that problem was invoicing.&lt;/p&gt;

&lt;p&gt;Like many of you, I've been freelancing alongside my studies. It's a great way to gain experience and earn some extra cash, but it comes with its own set of challenges. One of the biggest hurdles I faced was managing invoices and tracking payments.&lt;/p&gt;

&lt;p&gt;I started with the usual suspects: spreadsheets and free online invoice generators. But they all fell short. Spreadsheets were messy, and the free tools were clunky and unprofessional. I was spending way too much time on admin work, time I could have spent coding or studying.&lt;/p&gt;

&lt;p&gt;The Pain Points:&lt;/p&gt;

&lt;p&gt;Manual Invoicing: Time-consuming and prone to errors.&lt;br&gt;
Payment Tracking: No clear overview of which invoices were paid and which weren't.&lt;br&gt;
Late Payments: Awkwardly chasing clients for payments.&lt;br&gt;
Time Management: Juggling development work and administrative tasks.&lt;br&gt;
The Solution: InvoiceTastic&lt;/p&gt;

&lt;p&gt;As a developer, I thought, "Why not build my own solution?" And that's exactly what I did. I created InvoiceTastic, a SaaS platform designed to automate the entire invoicing process.&lt;/p&gt;

&lt;p&gt;Tech Stack:&lt;/p&gt;

&lt;p&gt;Next.Js, and Api Routing&lt;br&gt;
Datbase: Postgres Neon&lt;br&gt;
Payment: Stripe&lt;/p&gt;

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

&lt;p&gt;Simple Invoice Creation: Generate professional invoices in minutes.&lt;br&gt;
Automated Reminders: Send gentle reminders for overdue payments.&lt;br&gt;
Real-Time Payment Tracking: Monitor payment status at a glance.&lt;br&gt;
Customizable Templates: Create invoices that match your brand.&lt;/p&gt;

&lt;p&gt;Challenges and Learnings:&lt;/p&gt;

&lt;p&gt;Balancing Development with Studies: It was a challenge to manage my time effectively.&lt;br&gt;
Learning New Technologies: I had to learn new skills and technologies along the way.&lt;br&gt;
Deployment and Scaling: Getting the platform live and ready for users.&lt;br&gt;
The Result:&lt;/p&gt;

&lt;p&gt;InvoiceTastic has helped me streamline my invoicing process and focus on what I love: coding. I'm no longer stressing about late payments or spending hours on admin work.&lt;/p&gt;

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

&lt;p&gt;I'm sharing my experience to inspire other developers and to get feedback on InvoiceTastic. If you're a freelancer or small business owner struggling with invoicing, I encourage you to check it out: &lt;a href="https://invoicetastic.vercel.app/" rel="noopener noreferrer"&gt;Click Here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm also keen to hear your thoughts on the tech stack I used and any suggestions for improvements.&lt;/p&gt;

&lt;p&gt;Thanks for reading!&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%2Fa4agabag055hf6gknw4f.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%2Fa4agabag055hf6gknw4f.png" alt="Image description" width="800" height="458"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>startup</category>
      <category>programming</category>
      <category>ai</category>
    </item>
    <item>
      <title>Fine tune your pre-trained model using this notebook</title>
      <dc:creator>Aries_unknown</dc:creator>
      <pubDate>Thu, 14 Mar 2024 17:29:31 +0000</pubDate>
      <link>https://dev.to/abdullahzulfiqar/fine-tune-your-pre-trained-model-using-this-notebook-5067</link>
      <guid>https://dev.to/abdullahzulfiqar/fine-tune-your-pre-trained-model-using-this-notebook-5067</guid>
      <description>&lt;p&gt;Get your notebook from here : &lt;a href="https://github.com/AbdullahZulfikar/fine-tune-models-with-this-notebook"&gt;https://github.com/AbdullahZulfikar/fine-tune-models-with-this-notebook&lt;/a&gt;&lt;br&gt;
Feel free to discuss how to use this notebook and how to use a safetensor after training.&lt;/p&gt;

</description>
      <category>machinelearning</category>
      <category>python</category>
      <category>huggingface</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
