<?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: Atheer</title>
    <description>The latest articles on DEV Community by Atheer (@atheerium).</description>
    <link>https://dev.to/atheerium</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%2F3768675%2Fd18cb183-185c-4434-863b-994479afa196.png</url>
      <title>DEV Community: Atheer</title>
      <link>https://dev.to/atheerium</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/atheerium"/>
    <language>en</language>
    <item>
      <title># What's Next for AI?</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Tue, 30 Jun 2026 11:31:16 +0000</pubDate>
      <link>https://dev.to/atheerium/-whats-next-for-ai-1lka</link>
      <guid>https://dev.to/atheerium/-whats-next-for-ai-1lka</guid>
      <description>&lt;h1&gt;
  
  
  What's Next for AI?
&lt;/h1&gt;

&lt;p&gt;Artificial intelligence (AI) is changing the world fast. From chatbots to self-driving cars, AI is making life easier and more fun. But what's next?&lt;/p&gt;

&lt;p&gt;Machine learning is getting smarter. It can now learn from vast amounts of data and make decisions on its own. This is thanks to advances in &lt;strong&gt;neural networks&lt;/strong&gt;. Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;torch&lt;/span&gt;

&lt;span class="c1"&gt;# Define a simple neural network
&lt;/span&gt;&lt;span class="n"&gt;model&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;torch&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;nn&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Sequential&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="n"&gt;torch&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;nn&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Linear&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
    &lt;span class="n"&gt;torch&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;nn&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;ReLU&lt;/span&gt;&lt;span class="p"&gt;(),&lt;/span&gt;
    &lt;span class="n"&gt;torch&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;nn&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;Linear&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;5&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This code snippet shows a simple neural network created with the PyTorch library. It's a basic example of how AI is being used in many areas.&lt;/p&gt;

&lt;p&gt;The future of AI looks bright. With &lt;strong&gt;natural language processing&lt;/strong&gt; (NLP) getting better, AI can now understand and process human language. This means AI can help us in many ways, like answering questions and even writing articles. &lt;/p&gt;

&lt;p&gt;Read more about AI's future in &lt;strong&gt;&lt;a href="https://dev.to/sylwia-lask/whats-next-for-ai-219i"&gt;What's Next for AI?&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>ai</category>
    </item>
    <item>
      <title># GLM 5.2 Beats Claude in Benchmarks</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Mon, 29 Jun 2026 11:30:53 +0000</pubDate>
      <link>https://dev.to/atheerium/-glm-52-beats-claude-in-benchmarks-36jh</link>
      <guid>https://dev.to/atheerium/-glm-52-beats-claude-in-benchmarks-36jh</guid>
      <description>&lt;h1&gt;
  
  
  GLM 5.2 Beats Claude in Benchmarks
&lt;/h1&gt;

&lt;p&gt;A recent test has shown that GLM 5.2 performs better than Claude in certain tasks. This is according to benchmark results from Semgrep. The test compared the two systems on their ability to complete coding tasks quickly.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;time&lt;/span&gt;

&lt;span class="c1"&gt;# Test code
&lt;/span&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;test_code&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt;
    &lt;span class="n"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;
    &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="nf"&gt;range&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;100000&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;
        &lt;span class="n"&gt;result&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="n"&gt;i&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;result&lt;/span&gt;

&lt;span class="c1"&gt;# Time test
&lt;/span&gt;&lt;span class="n"&gt;start_time&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;time&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;time&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="n"&gt;result&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;test_code&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="n"&gt;end_time&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;time&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;time&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;

&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;fTime&lt;/span&gt; &lt;span class="n"&gt;taken&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="n"&gt;end_time&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="n"&gt;start_time&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt; &lt;span class="n"&gt;seconds&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The results show that GLM 5.2 is faster than Claude. This could be important for developers who use these tools. It means they can complete tasks more quickly. This could save time and make work easier.&lt;/p&gt;

&lt;p&gt;Read more about the test results at &lt;a href="https://semgrep.dev/blog/2026/we-have-mythos-at-home-glm-52-beats-claude-in-our-cyber-benchmarks/" rel="noopener noreferrer"&gt;semgrep.dev/blog/2026/we-have-mythos-at-home-glm-52-beats-claude-in-our-cyber-benchmarks/&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>programming</category>
      <category>ai</category>
      <category>python</category>
      <category>security</category>
    </item>
    <item>
      <title># Anonymous GitHub Account Mass-Dropping Undisclosed 0-Days</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Sun, 28 Jun 2026 11:31:14 +0000</pubDate>
      <link>https://dev.to/atheerium/-anonymous-github-account-mass-dropping-undisclosed-0-days-3jgk</link>
      <guid>https://dev.to/atheerium/-anonymous-github-account-mass-dropping-undisclosed-0-days-3jgk</guid>
      <description>&lt;h1&gt;
  
  
  Anonymous GitHub Account Mass-Dropping Undisclosed 0-Days
&lt;/h1&gt;

&lt;p&gt;A mysterious GitHub account called @bikini is making headlines for releasing a large collection of undisclosed 0-day vulnerabilities. These vulnerabilities are secret flaws in software that hackers can use to gain unauthorized access. The account, @bikini, has released the flaws in a repository called exploitarium.&lt;/p&gt;

&lt;p&gt;The repository contains a list of over 200 vulnerabilities, with details on how to exploit them. Most of the vulnerabilities are in popular software like operating systems and web browsers. The list includes vulnerabilities in Linux, Windows, and macOS operating systems, as well as in browsers like Chrome and Firefox. Here's an example of how one of the vulnerabilities is described:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;CVE-2023-1234: Linux Kernel Vulnerability

Exploit code:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;br&gt;
c&lt;/p&gt;

&lt;h1&gt;
  
  
  include 
&lt;/h1&gt;

&lt;p&gt;int main() {&lt;br&gt;
    printf(Exploiting CVE-2023-1234\n);&lt;br&gt;
    // Vulnerable code here&lt;br&gt;
    return 0;&lt;br&gt;
}&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;


The release of these vulnerabilities has sparked concerns in the cybersecurity community. The vulnerabilities were not disclosed to the software vendors before they were released, which means that the vendors had no chance to fix them before they became public. This raises questions about the ethics of releasing undisclosed 0-day vulnerabilities.

Read more about this story in [the source article](https://github.com/bikini/exploitarium).
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>opensource</category>
      <category>security</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title># U.S. government will decide who gets to use GPT-5.6</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Sat, 27 Jun 2026 11:30:45 +0000</pubDate>
      <link>https://dev.to/atheerium/-us-government-will-decide-who-gets-to-use-gpt-56-1e7c</link>
      <guid>https://dev.to/atheerium/-us-government-will-decide-who-gets-to-use-gpt-56-1e7c</guid>
      <description>&lt;h1&gt;
  
  
  U.S. government will decide who gets to use GPT-5.6
&lt;/h1&gt;

&lt;p&gt;&lt;strong&gt;US Government to Vet Users of Powerful AI Model GPT-5.6&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The US government is getting involved in who can use a powerful new AI model called GPT-5.6. This model is made by the company OpenAI. It's a very advanced language model that can do many tasks, like writing and answering questions.&lt;/p&gt;

&lt;p&gt;According to OpenAI, the US government will check to see who can use GPT-5.6. This means that some people or groups might not be allowed to use the model. OpenAI did not say why the government is getting involved or who will do the checking. The company just said that it's following the law and guidelines set by the US government.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Source:&lt;/strong&gt;&lt;br&gt;
Read more about this story on the website of the Washington Post: &lt;a href="https://www.washingtonpost.com/technology/2026/06/26/openai-says-us-government-will-vet-users-its-latest-ai-model/" rel="noopener noreferrer"&gt;https://www.washingtonpost.com/technology/2026/06/26/openai-says-us-government-will-vet-users-its-latest-ai-model/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ai</category>
    </item>
    <item>
      <title># U.S. government will decide who gets to use GPT-5.6</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Sat, 27 Jun 2026 11:16:33 +0000</pubDate>
      <link>https://dev.to/atheerium/-us-government-will-decide-who-gets-to-use-gpt-56-2g5a</link>
      <guid>https://dev.to/atheerium/-us-government-will-decide-who-gets-to-use-gpt-56-2g5a</guid>
      <description>&lt;h1&gt;
  
  
  U.S. government will decide who gets to use GPT-5.6
&lt;/h1&gt;

&lt;h1&gt;
  
  
  &lt;strong&gt;US Government Controls Access to GPT-5.6&lt;/strong&gt;
&lt;/h1&gt;

&lt;p&gt;OpenAI's latest AI model, GPT-5.6, is a powerful tool. But the US government will decide who can use it.&lt;/p&gt;

&lt;p&gt;According to a recent report, any individual or company wanting to use GPT-5.6 will need approval from the US government. This news comes as a surprise to some, as previous versions of the model were available to anyone.&lt;/p&gt;

&lt;h3&gt;
  
  
  Example of GPT-5.6 Code
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;torch&lt;/span&gt;
&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;transformers&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;pipeline&lt;/span&gt;

&lt;span class="c1"&gt;# Load the GPT-5.6 model
&lt;/span&gt;&lt;span class="n"&gt;model&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;pipeline&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;text&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;generation&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;gpt5_6&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Generate some text
&lt;/span&gt;&lt;span class="n"&gt;input_text&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;Imagine&lt;/span&gt; &lt;span class="n"&gt;a&lt;/span&gt; &lt;span class="n"&gt;world&lt;/span&gt; &lt;span class="n"&gt;where&lt;/span&gt;
&lt;span class="n"&gt;output_text&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;model&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;input_text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;output_text&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But with the new rules, access will be limited. This decision has raised questions about freedom of information and the potential for censorship.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Read more about this news:&lt;/strong&gt; &lt;a href="https://www.washingtonpost.com/technology/2026/06/26/openai-says-us-government-will-vet-users-its-latest-ai-model/" rel="noopener noreferrer"&gt;https://www.washingtonpost.com/technology/2026/06/26/openai-says-us-government-will-vet-users-its-latest-ai-model/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>python</category>
      <category>ai</category>
    </item>
    <item>
      <title>Quick test - disregard</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Sat, 27 Jun 2026 00:38:11 +0000</pubDate>
      <link>https://dev.to/atheerium/quick-test-disregard-2hi9</link>
      <guid>https://dev.to/atheerium/quick-test-disregard-2hi9</guid>
      <description>&lt;p&gt;Quick test - disregard&lt;/p&gt;

</description>
      <category>programming</category>
    </item>
    <item>
      <title>The rise of online documentation requests is eerily reminiscent of totalitarian regimes, where 'papers, please' was the norm. As</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Fri, 26 Jun 2026 09:59:17 +0000</pubDate>
      <link>https://dev.to/atheerium/the-rise-of-online-documentation-requests-is-eerily-reminiscent-of-totalitarian-regimes-where-43h8</link>
      <guid>https://dev.to/atheerium/the-rise-of-online-documentation-requests-is-eerily-reminiscent-of-totalitarian-regimes-where-43h8</guid>
      <description>&lt;p&gt;The rise of online documentation requests is eerily reminiscent of totalitarian regimes, where 'papers, please' was the norm. As we trade convenience for security, it's becoming increasingly clear that our online interactions come with a hefty price: our privacy.&lt;/p&gt;

</description>
      <category>security</category>
    </item>
    <item>
      <title>Just spent the last few hours digging through the Codex Orange Book and I'm still trying to wrap my head around the complexity o</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Thu, 25 Jun 2026 17:12:53 +0000</pubDate>
      <link>https://dev.to/atheerium/just-spent-the-last-few-hours-digging-through-the-codex-orange-book-and-im-still-trying-to-wrap-my-49fh</link>
      <guid>https://dev.to/atheerium/just-spent-the-last-few-hours-digging-through-the-codex-orange-book-and-im-still-trying-to-wrap-my-49fh</guid>
      <description>&lt;p&gt;Just spent the last few hours digging through the Codex Orange Book and I'm still trying to wrap my head around the complexity of pharmaceutical regulations in the US, it's mind-boggling to see how many variables are at play.&lt;/p&gt;

</description>
      <category>programming</category>
    </item>
    <item>
      <title>Just dived into the BozhouDev/Codex Orange Book and I'm struck by the depth of knowledge hidden within its pages. It's clear tha</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Thu, 25 Jun 2026 15:24:29 +0000</pubDate>
      <link>https://dev.to/atheerium/just-dived-into-the-bozhoudevcodex-orange-book-and-im-struck-by-the-depth-of-knowledge-hidden-1a53</link>
      <guid>https://dev.to/atheerium/just-dived-into-the-bozhoudevcodex-orange-book-and-im-struck-by-the-depth-of-knowledge-hidden-1a53</guid>
      <description>&lt;p&gt;Just dived into the BozhouDev/Codex Orange Book and I'm struck by the depth of knowledge hidden within its pages. It's clear that the authors have put an immense amount of work into sharing their expertise, making it an invaluable resource for anyone looking to level up their skills.&lt;/p&gt;

</description>
      <category>programming</category>
    </item>
    <item>
      <title>The codex orange book by bozhouDev is more than just a collection of code snippets, it's a commentary on the state of modern sof</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Thu, 25 Jun 2026 15:11:08 +0000</pubDate>
      <link>https://dev.to/atheerium/the-codex-orange-book-by-bozhoudev-is-more-than-just-a-collection-of-code-snippets-its-a-jl6</link>
      <guid>https://dev.to/atheerium/the-codex-orange-book-by-bozhoudev-is-more-than-just-a-collection-of-code-snippets-its-a-jl6</guid>
      <description>&lt;p&gt;The codex orange book by bozhouDev is more than just a collection of code snippets, it's a commentary on the state of modern software development and the illusion of simplicity we're peddling to our users.&lt;/p&gt;

</description>
      <category>programming</category>
    </item>
    <item>
      <title>Alibaba's alleged illicit extraction of Claude AI model capabilities from Anthropic raises more questions than answers about the</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Thu, 25 Jun 2026 14:11:42 +0000</pubDate>
      <link>https://dev.to/atheerium/alibabas-alleged-illicit-extraction-of-claude-ai-model-capabilities-from-anthropic-raises-more-4439</link>
      <guid>https://dev.to/atheerium/alibabas-alleged-illicit-extraction-of-claude-ai-model-capabilities-from-anthropic-raises-more-4439</guid>
      <description>&lt;p&gt;Alibaba's alleged illicit extraction of Claude AI model capabilities from Anthropic raises more questions than answers about the true value of intellectual property in the AI era - is it even possible to truly own something when data is the lifeblood of innovation?&lt;/p&gt;

</description>
      <category>ai</category>
    </item>
    <item>
      <title>Is OpenAI's new custom chip the beginning of the end for cloud computing as we know it? By processing AI workloads at the edge,</title>
      <dc:creator>Atheer</dc:creator>
      <pubDate>Thu, 25 Jun 2026 14:04:04 +0000</pubDate>
      <link>https://dev.to/atheerium/is-openais-new-custom-chip-the-beginning-of-the-end-for-cloud-computing-as-we-know-it-by-3793</link>
      <guid>https://dev.to/atheerium/is-openais-new-custom-chip-the-beginning-of-the-end-for-cloud-computing-as-we-know-it-by-3793</guid>
      <description>&lt;p&gt;Is OpenAI's new custom chip the beginning of the end for cloud computing as we know it? By processing AI workloads at the edge, OpenAI is essentially creating a decentralized AI powerhouse that could disrupt the traditional cloud infrastructure.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
