<?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: Md. Shafiuddin Shajib</title>
    <description>The latest articles on DEV Community by Md. Shafiuddin Shajib (@mdshafiuddinshajib).</description>
    <link>https://dev.to/mdshafiuddinshajib</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2688257%2F29e0ff63-7370-4b36-a261-a9f3f96fe485.png</url>
      <title>DEV Community: Md. Shafiuddin Shajib</title>
      <link>https://dev.to/mdshafiuddinshajib</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mdshafiuddinshajib"/>
    <language>en</language>
    <item>
      <title>Get $150 in Free AI Credits and Use Codex Directly in VS Code</title>
      <dc:creator>Md. Shafiuddin Shajib</dc:creator>
      <pubDate>Wed, 19 Aug 2026 11:33:23 +0000</pubDate>
      <link>https://dev.to/mdshafiuddinshajib/get-150-in-free-ai-credits-and-use-codex-directly-in-vs-code-431o</link>
      <guid>https://dev.to/mdshafiuddinshajib/get-150-in-free-ai-credits-and-use-codex-directly-in-vs-code-431o</guid>
      <description>&lt;p&gt;There is currently a promotional opportunity for developers to claim &lt;strong&gt;$150 in free AI credits&lt;/strong&gt; and use them with agentic coding tools such as &lt;strong&gt;Codex&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claim the free AI credit here:&lt;/strong&gt; &lt;a href="https://agentrouter.org/register?aff=nc22" rel="noopener noreferrer"&gt;Get $150 Free AI Credit&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Get the credit first
&lt;/h2&gt;

&lt;p&gt;Open the link above and create your account.&lt;/p&gt;

&lt;p&gt;• Sign up with GitHub when available&lt;br&gt;
• Complete the required account verification&lt;br&gt;
• Open your dashboard and check the promotional credit balance&lt;br&gt;
• Create an API key from the dashboard&lt;br&gt;
• Keep the API key private and never commit it to Git&lt;/p&gt;

&lt;p&gt;The promotional amount and eligibility can change, so check the balance shown in your account after registration.&lt;/p&gt;
&lt;h2&gt;
  
  
  Connect it to Codex in VS Code for windows
&lt;/h2&gt;

&lt;p&gt;Once the account and API key are ready, install the official &lt;strong&gt;Codex&lt;/strong&gt; extension in VS Code.&lt;/p&gt;

&lt;p&gt;Open:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;VS Code → Extensions → search for Codex → Install&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Then configure Codex to use the external provider.&lt;/p&gt;

&lt;p&gt;Open by shortcut key windows + R and Search :&lt;/p&gt;

&lt;p&gt;&lt;code&gt;%USERPROFILE%\.codex\config.toml&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;A typical provider configuration looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight toml"&gt;&lt;code&gt;&lt;span class="py"&gt;model&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"gpt-5.6-sol"&lt;/span&gt;
&lt;span class="py"&gt;model_provider&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"agentrouter"&lt;/span&gt;
&lt;span class="py"&gt;model_reasoning_effort&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"medium"&lt;/span&gt;

&lt;span class="nn"&gt;[model_providers.agentrouter]&lt;/span&gt;
&lt;span class="py"&gt;name&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"AgentRouter"&lt;/span&gt;
&lt;span class="py"&gt;base_url&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"https://agentrouter.org/v1"&lt;/span&gt;
&lt;span class="py"&gt;wire_api&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"responses"&lt;/span&gt;
&lt;span class="py"&gt;experimental_bearer_token&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"YOUR_AGENTROUTER_API_KEY"&lt;/span&gt;

&lt;span class="nn"&gt;[windows]&lt;/span&gt;
&lt;span class="py"&gt;sandbox&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;"unelevated"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Replace &lt;code&gt;YOUR_AGENTROUTER_API_KEY&lt;/code&gt; with your own key.&lt;/p&gt;

&lt;p&gt;Save the file, then reload VS Code.&lt;/p&gt;

&lt;p&gt;After that, Codex can route your coding requests through the configured provider instead of relying only on a directly billed OpenAI API account.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this is useful
&lt;/h2&gt;

&lt;p&gt;For developers working on real projects, this can be useful for:&lt;/p&gt;

&lt;p&gt;• Code generation and refactoring&lt;br&gt;
• Debugging existing codebases&lt;br&gt;
• Reviewing architecture and implementation decisions&lt;br&gt;
• Writing tests&lt;br&gt;
• Working across larger project files&lt;br&gt;
• Switching between different AI coding providers when needed&lt;/p&gt;

&lt;p&gt;The important part is not simply getting free credits. It is being able to connect those credits to an &lt;strong&gt;actual coding workflow inside VS Code&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can also keep other providers configured and switch between them when your project requires a different model or account.&lt;/p&gt;

&lt;h3&gt;
  
  
  One practical point
&lt;/h3&gt;

&lt;p&gt;Do not paste your API key into source code, GitHub repositories, screenshots, or public configuration files. Store it securely and rotate it if it is ever exposed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Start here:&lt;/strong&gt; &lt;a href="https://agentrouter.org/register?aff=nc22" rel="noopener noreferrer"&gt;Get the $150 Free AI Credit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For developers already using Codex, this is one of the more interesting ways to experiment with &lt;strong&gt;free AI coding capacity&lt;/strong&gt; without immediately adding another recurring subscription.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>vscode</category>
      <category>llm</category>
      <category>api</category>
    </item>
    <item>
      <title>Run DeepSeek Locally in LM Studio: No Internet, No Server Issues – A ChatGPT-Like Experience with a User-Friendly UI</title>
      <dc:creator>Md. Shafiuddin Shajib</dc:creator>
      <pubDate>Mon, 03 Feb 2025 17:41:50 +0000</pubDate>
      <link>https://dev.to/mdshafiuddinshajib/heres-a-step-by-step-seo-friendly-guide-on-how-to-use-deepseek-v2-in-lm-studio-on-your-407i</link>
      <guid>https://dev.to/mdshafiuddinshajib/heres-a-step-by-step-seo-friendly-guide-on-how-to-use-deepseek-v2-in-lm-studio-on-your-407i</guid>
      <description>&lt;p&gt;&lt;strong&gt;"Run DeepSeek Locally in LM Studio: No Internet Needed, Works on Any PC – A Step-by-Step Guide"&lt;/strong&gt;  &lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Install LM Studio
&lt;/h2&gt;

&lt;p&gt;1️⃣ Visit &lt;a href="https://lmstudio.ai/" rel="noopener noreferrer"&gt;LM Studio’s official website&lt;/a&gt; and download the latest version for your operating system.&lt;br&gt;&lt;br&gt;
2️⃣ Install LM Studio by following the on-screen instructions.  &lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: Download the DeepSeek Model
&lt;/h2&gt;

&lt;p&gt;1️⃣ Open LM Studio after installation.&lt;br&gt;&lt;br&gt;
2️⃣ Go to the &lt;strong&gt;Model Catalog&lt;/strong&gt; section.&lt;br&gt;&lt;br&gt;
3️⃣ Search for &lt;strong&gt;DeepSeek&lt;/strong&gt; (either the general model or the coding-optimized version).&lt;br&gt;&lt;br&gt;
4️⃣ Choose the appropriate model size based on your system’s capability:  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Smaller models&lt;/strong&gt; (e.g., 7B) for lower-end systems with limited RAM.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Larger models&lt;/strong&gt; (e.g., 67B) for high-performance setups.
5️⃣ Click &lt;strong&gt;Download&lt;/strong&gt; and wait for it to finish.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💡 &lt;strong&gt;Tip:&lt;/strong&gt; If your PC has lower specs, start with a smaller model for a smoother experience.  &lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Load DeepSeek in LM Studio
&lt;/h2&gt;

&lt;p&gt;1️⃣ Once the model is downloaded, go to the &lt;strong&gt;Local Models&lt;/strong&gt; section.&lt;br&gt;&lt;br&gt;
2️⃣ Click on DeepSeek to load it.&lt;br&gt;&lt;br&gt;
3️⃣ Adjust GPU/CPU settings based on your system’s resources.&lt;br&gt;&lt;br&gt;
4️⃣ Click &lt;strong&gt;Start Chat&lt;/strong&gt; to begin using the model.  &lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: Enjoy an Offline, ChatGPT-Like Experience
&lt;/h2&gt;

&lt;p&gt;✅ No internet or cloud servers required—completely local!&lt;br&gt;&lt;br&gt;
✅ Works seamlessly for text-based and coding-related tasks.&lt;br&gt;&lt;br&gt;
✅ Customize performance settings for optimal speed and efficiency.  &lt;/p&gt;

&lt;p&gt;🚀 Now, you're ready to use DeepSeek on your PC without any server limitations!&lt;/p&gt;

</description>
      <category>deepseek</category>
      <category>ai</category>
      <category>chatgpt</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
