Skip to content

Instantly share code, notes, and snippets.

View omidkrad's full-sized avatar

Omid K. Rad omidkrad

  • SF Bay Area
View GitHub Profile
@omidkrad
omidkrad / Aurora-Lang.md
Last active April 3, 2025 18:10
Aurora - a new general-purpose programming language designed by AI

Prompt: using all the knowledge you have about all programming languages, invent a new general purpose programming language that can become the ultimate standard programming language for humans before the age of AI. Show me some examples of the major features in this programming language and what makes it stand out from everything else.

Let me introduce you to Aurora, a new general-purpose programming language designed to be the ultimate standard for human developers in the era just before AI programming ascends. Aurora is born from decades of lessons learned across countless languages—it fuses the readability of Python, the safety and performance of Rust, the expressiveness of Swift, and the metaprogramming power of Lisp. Its design philosophy centers on clarity, safety, expressiveness, and, uniquely, built‑in AI integration as a first‑class citizen in the language.


Key Features

  • Multi-Paradigm Flexibility:
    Aurora supports functional, imperative, object‑oriented, and reactive p
using System.Linq;
using System.Reflection;
namespace System.Data.Linq
{
/// <summary>
/// LINQ-to-SQL extension methods
/// </summary>
public static class EntityExtensionMethods
{
@omidkrad
omidkrad / notes.md
Last active August 29, 2015 14:26
Steps to compact a Virtual Hard Disk

Steps to compact a Virtual Hard Disk

From inside VM (guest):

  1. Disk Cleanup -> Cleanup system files
  2. Turn off VM

From outside VM (host):

  1. Attach VHD as a drive (for example V:)
  2. Delete pagefile.sys and swapfile.sys if you don't want them to be in the parent VHD. They will be created again in the child VHD when Windows starts.
  3. defrag V: /h /u /v /x
@omidkrad
omidkrad / Clean-IISExpress.ps1
Last active August 24, 2021 21:24
Delete IISExpress sites using PowerShell
Set-Alias appcmd "$env:ProgramFiles\IIS Express\appcmd.exe"
appcmd list site /text:SITE.NAME | % { appcmd delete site $_ }
# or remove IISExpress directory
Remove-Item -Recurse $env:USERPROFILE\Documents\IISExpress
@omidkrad
omidkrad / git-tips.md
Last active August 29, 2015 14:20
Git Tips

Git Tips

Reviving a discarded commit

You created a commit but then discarded it with git reset --hard <SHA> without first syncing it with the server repository (GitHub). Use this PowerShell command to find the SHA of the discarded commit.

Get-ChildItem -Path ..git\objects??* -Recurse | sort -Property CreationTime -Descending | select -first 1 | % { $.FullName.Substring($.FullName.Length-41).Replace('', '') }

@omidkrad
omidkrad / gist:4b6933fac239221fc012
Last active August 29, 2015 14:07
Script to remove nuget.targets import from all .csproj files
# Migrating MSBuild-Integrated solutions to use Automatic Package Restore
# http://docs.nuget.org/docs/workflows/migrating-to-automatic-package-restore
# See also: http://weblogs.asp.net/jongalloway/scripting-net-project-migration-to-automatic-nuget-package-restore
# and: https://github.com/owen2/AutomaticPackageRestoreMigrationScript
findstr /s /m /i NuGet.targets *.*proj | % {$file = get-item $_; $txt = Get-Content $file | Select-String "nuget`.targets" -NotMatch; $txt | Set-Content $file -Encoding UTF8 }
findstr /s /m /i RestorePackages *.*proj | % {$file = get-item $_; $txt = Get-Content $file | Select-String "RestorePackages" -NotMatch; $txt | Set-Content $file -Encoding UTF8 }
@omidkrad
omidkrad / ExecJavaScript.ps1
Last active April 10, 2023 18:12
PowerShell function to run JavaScript/JQuery and return results back to PS, with timeout
# PowerShell function to run JavaScript/JQuery and return results back to PS, with timeout
# some web page with jQuery in it
$url = "http://jquery.com/"
Function ResetTimer
{
$script:startTime = [DateTime]::Now
}
// This is an attempt to implement the Null-propagating operator ?. as extension methods.
//
// I was not able to do it in a single method that would work with both value types and
// reference types as return type. Maybe there's a way to do it or use overloads?
public static class ExtensionMethods
{
/// <summary>
/// Use this method to safely invoke properties, methods or other members of a nullable
@omidkrad
omidkrad / moment.lang.fa.js
Created December 18, 2012 00:13
Persian language localization settings for momentjs.
// moment.js language configuration
// language : persian (fa)
// author : Omid K. Rad : https://github.com/omidkrad
(function () {
// Notes: Persian culture specs are taken from: http://pastehtml.com/view/clt3qjk84.html
// The document is old but the data is valid. Use RTL embedding for correct formatting.
// Month names are transliterated French from Gregorian calendar. For dates based on Persian
// calendar, see this related project: http://intldate.codeplex.com
var lang = {
months: "ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اُکتبر_نوامبر_دسامبر".split("_"),