<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Welcome to Hml Blog. by Hml Sbd</title>
      <link>https://padlet.com/hmlblog/hmlblog</link>
      <description>©2026 Himal_Blog. All rights reserved</description>
      <language>en-us</language>
      <pubDate>2026-07-08 15:31:23 UTC</pubDate>
      <lastBuildDate>2026-08-08 03:00:05 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet-uploads-usc1.storage.googleapis.com/5931106386/370c7dd70d9520db17003d2722267d39/hml_logo_hml_letter_hml_letter_logo_design_initials_hml_logo_linked_with_circle_and_uppercase_monogram_logo_hml_typography_for_technology_business_and_real_estate_brand_vector.jpg</url>
      </image>
      <item>
         <title>Nepali Typing</title>
         <author>hmlblog</author>
         <link>https://padlet.com/hmlblog/hmlblog/wish/3979778415</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.easynepalityping.com/type-in-preeti" />
         <pubDate>2026-07-12 04:13:01 UTC</pubDate>
         <guid>https://padlet.com/hmlblog/hmlblog/wish/3979778415</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hmlblog/hmlblog/wish/3988641721</link>
         <description><![CDATA[<p>#include&lt;stdio.h&gt;</p><p>#include&lt;graphics.h&gt;</p><p>#include&lt;dos.h&gt;</p><p>#include&lt;conio.h&gt;</p><p>int main()</p><p>{</p><p>	int x,y,p,x1,y1,x2,y2,dx,dy,gd=DETECT,gm;</p><p>	initgraph(&amp;gd,&amp;gm,(char*)"");</p><p>	printf("Enter starting coordinates");</p><p>	scanf("%d%d",&amp;x1,&amp;y1);</p><p>	printf("Enter end coordinates");</p><p>	scanf("%d%d",&amp;x2,&amp;y2);</p><p>	dx=x2-x1;</p><p>	dy=y2-y1;</p><p>	x=x1;</p><p>	y=y1;</p><p>	p=2*dy-dx;</p><p>	while(x&lt;x2)</p><p>	{</p><p>		if(p&gt;=0)</p><p>		{</p><p>			putpixel(x,y,WHITE);</p><p>			y=y+1;</p><p>			x=x+1;</p><p>			p=p+2*dy-2*dx;</p><p>		}</p><p>		else</p><p>		{</p><p>			putpixel(x,y,WHITE);</p><p>			x=x+1;</p><p>			p=p+2*dy;</p><p>		}</p><p>		//x=x+1;</p><p>	}</p><p>	delay(100);</p><p>	getch();</p><p>	closegraph();</p><p>	return 0;</p><p>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2026-07-21 14:21:37 UTC</pubDate>
         <guid>https://padlet.com/hmlblog/hmlblog/wish/3988641721</guid>
      </item>
      <item>
         <title>openSSL Download 100%</title>
         <author>hmlblog</author>
         <link>https://padlet.com/hmlblog/hmlblog/wish/3990892432</link>
         <description><![CDATA[<p># ============================================</p><p># OpenSSL Complete Installation and Setup</p><p># Windows 10 / Windows 11</p><p># ============================================</p><p>Write-Host "============================================"</p><p>Write-Host "       OpenSSL Installation and Setup"</p><p>Write-Host "============================================"</p><p>Write-Host ""</p><p># Step 1: Check Administrator privileges</p><p>$currentUser = [Security.Principal.WindowsIdentity]::GetCurrent()</p><p>$principal = New-Object Security.Principal.WindowsPrincipal($currentUser)</p><p>if (-not $principal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {</p><p>    Write-Host "ERROR: Please run PowerShell as Administrator." -ForegroundColor Red</p><p>    exit</p><p>}</p><p>Write-Host "[1/6] Administrator privileges: OK" -ForegroundColor Green</p><p># Step 2: Check if OpenSSL is already installed</p><p>$opensslExe = Get-ChildItem "C:\Program Files\OpenSSL-Win64\bin\openssl.exe" -ErrorAction SilentlyContinue</p><p>if (-not $opensslExe) {</p><p>    Write-Host "[2/6] OpenSSL not found. Installing..." -ForegroundColor Yellow</p><p>    # Check if winget exists</p><p>    if (-not (Get-Command winget -ErrorAction SilentlyContinue)) {</p><p>        Write-Host "ERROR: winget is not available on this computer." -ForegroundColor Red</p><p>        Write-Host "Please install/update App Installer from Microsoft Store."</p><p>        exit</p><p>    }</p><p>    # Install OpenSSL</p><p>    winget install --id ShiningLight.OpenSSL.Light -e --accept-source-agreements --accept-package-agreements</p><p>    # Check again after installation</p><p>    $opensslExe = Get-ChildItem "C:\Program Files\OpenSSL-Win64\bin\openssl.exe" -ErrorAction SilentlyContinue</p><p>    if (-not $opensslExe) {</p><p>        Write-Host "ERROR: OpenSSL installation could not be located." -ForegroundColor Red</p><p>        exit</p><p>    }</p><p>} else {</p><p>    Write-Host "[2/6] OpenSSL is already installed." -ForegroundColor Green</p><p>}</p><p># Step 3: Set OpenSSL path</p><p>$opensslBin = "C:\Program Files\OpenSSL-Win64\bin"</p><p>Write-Host "[3/6] OpenSSL location found:" -ForegroundColor Green</p><p>Write-Host $opensslBin</p><p># Step 4: Add OpenSSL to System PATH</p><p>$systemPath = [Environment]::GetEnvironmentVariable("Path", "Machine")</p><p>if ($systemPath -notlike "*$opensslBin*") {</p><p>    Write-Host "[4/6] Adding OpenSSL to System PATH..." -ForegroundColor Yellow</p><p>    [Environment]::SetEnvironmentVariable(</p><p>        "Path",</p><p>        "$systemPath;$opensslBin",</p><p>        "Machine"</p><p>    )</p><p>    Write-Host "OpenSSL added to PATH successfully." -ForegroundColor Green</p><p>} else {</p><p>    Write-Host "[4/6] OpenSSL is already in System PATH." -ForegroundColor Green</p><p>}</p><p># Step 5: Refresh PATH for current PowerShell session</p><p>Write-Host "[5/6] Refreshing PATH..." -ForegroundColor Yellow</p><p>$env:Path = [Environment]::GetEnvironmentVariable("Path", "Machine") + ";" +</p><p>           [Environment]::GetEnvironmentVariable("Path", "User")</p><p># Step 6: Test OpenSSL</p><p>Write-Host "[6/6] Testing OpenSSL..." -ForegroundColor Yellow</p><p>Write-Host ""</p><p>$opensslCommand = Get-Command openssl.exe -ErrorAction SilentlyContinue</p><p>if ($opensslCommand) {</p><p>    Write-Host "============================================"</p><p>    Write-Host "       OpenSSL Setup Successful!"</p><p>    Write-Host "============================================"</p><p>    Write-Host ""</p><p>    Write-Host "OpenSSL Location:"</p><p>    Write-Host $opensslCommand.Source</p><p>    Write-Host ""</p><p>    Write-Host "OpenSSL Version:"</p><p>    openssl version</p><p>    Write-Host ""</p><p>    Write-Host "OpenSSL is ready to use." -ForegroundColor Green</p><p>} else {</p><p>    Write-Host "OpenSSL was installed, but the current PowerShell session cannot find it." -ForegroundColor Yellow</p><p>    Write-Host ""</p><p>    Write-Host "Please close PowerShell, open a NEW PowerShell window, and run:"</p><p>    Write-Host ""</p><p>    Write-Host "openssl version" -ForegroundColor Cyan</p><p>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2026-07-24 02:38:43 UTC</pubDate>
         <guid>https://padlet.com/hmlblog/hmlblog/wish/3990892432</guid>
      </item>
      <item>
         <title>opensslAltern</title>
         <author></author>
         <link>https://padlet.com/hmlblog/hmlblog/wish/3991229439</link>
         <description><![CDATA[<p>Windows PowerShell</p><p>Copyright (C) Microsoft Corporation. All rights reserved.</p><p>Try the new cross-platform PowerShell <a rel="noopener noreferrer nofollow" href="https://aka.ms/pscore6">https://aka.ms/pscore6</a></p><p>PS C:\Windows\system32&gt; # ============================================</p><p>PS C:\Windows\system32&gt; # OpenSSL Complete Installation and Setup</p><p>PS C:\Windows\system32&gt; # Windows 10 / Windows 11</p><p>PS C:\Windows\system32&gt; # ============================================</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; Write-Host "============================================"</p><p>============================================</p><p>PS C:\Windows\system32&gt; Write-Host "       OpenSSL Installation and Setup"</p><p>       OpenSSL Installation and Setup</p><p>PS C:\Windows\system32&gt; Write-Host "============================================"</p><p>============================================</p><p>PS C:\Windows\system32&gt; Write-Host ""</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; # Step 1 - Check Administrator privileges</p><p>PS C:\Windows\system32&gt; $currentUser = [Security.Principal.WindowsIdentity]::GetCurrent()</p><p>PS C:\Windows\system32&gt; $principal = New-Object Security.Principal.WindowsPrincipal($currentUser)</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; if (-not $principal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {</p><p>&gt;&gt;     Write-Host "ERROR: Please run PowerShell as Administrator." -ForegroundColor Red</p><p>&gt;&gt;     exit</p><p>&gt;&gt; }</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; Write-Host "[1/7] Administrator privileges: OK" -ForegroundColor Green</p><p>[1/7] Administrator privileges: OK</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; # Step 2 - Check Winget</p><p>PS C:\Windows\system32&gt; if (-not (Get-Command winget -ErrorAction SilentlyContinue)) {</p><p>&gt;&gt;     Write-Host "ERROR: winget is not installed." -ForegroundColor Red</p><p>&gt;&gt;     exit</p><p>&gt;&gt; }</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; Write-Host "[2/7] winget detected." -ForegroundColor Green</p><p>[2/7] winget detected.</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; # Step 3 - Install OpenSSL</p><p>PS C:\Windows\system32&gt; Write-Host "[3/7] Installing OpenSSL..." -ForegroundColor Yellow</p><p>[3/7] Installing OpenSSL...</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; winget install --id ShiningLight.OpenSSL.Light -e `</p><p>&gt;&gt;     --accept-package-agreements `</p><p>&gt;&gt;     --accept-source-agreements</p><p>Found an existing package already installed. Trying to upgrade the installed package...</p><p>No available upgrade found.</p><p>No newer package versions are available from the configured sources.</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; # Step 4 - Locate openssl.exe</p><p>PS C:\Windows\system32&gt; Write-Host "[4/7] Searching for openssl.exe..." -ForegroundColor Yellow</p><p>[4/7] Searching for openssl.exe...</p><p>PS C:\Windows\system32&gt;</p><p>PS C:\Windows\system32&gt; $opensslExe = Get-ChildItem "C:\" -Filter openssl.exe -Recurse -ErrorAction SilentlyContinue |</p><p>&gt;&gt;               Select-Object -First 1</p><p><br/></p>]]></description>
         <enclosure url="" />
         <pubDate>2026-07-24 12:19:20 UTC</pubDate>
         <guid>https://padlet.com/hmlblog/hmlblog/wish/3991229439</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/hmlblog/hmlblog/wish/3994799481</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads-usc1.storage.googleapis.com/6015524000/f9a1ba022febfbeeed7bf664b3038995/Ed_462_6th_semester.zip" />
         <pubDate>2026-07-30 11:05:36 UTC</pubDate>
         <guid>https://padlet.com/hmlblog/hmlblog/wish/3994799481</guid>
      </item>
   </channel>
</rss>
