Skip to content

Instantly share code, notes, and snippets.

View habib-sadullaev's full-sized avatar

habib sadullaev habib-sadullaev

  • Uzbekistan
View GitHub Profile
open System.Numerics
module NumericLiteralG =
let inline FromZero () : #INumber<'a> = 'a.Zero
let inline FromOne () : #INumber<'a> = 'a.One
let inline FromInt32 (number: int) : #INumber<'a> = 'a.CreateChecked(number)
let (*) x y : #IMultiplyOperators<'a, 'a, 'a> = 'a.op_Multiply(x, y)
let (/) x y : #IDivisionOperators<'a, 'a, 'a> = 'a.op_Division(x, y)
type IRef =
abstract member Ref: unit -> byref<int>
type C() =
let mutable num = 10
member _.Get() = num
member _.Ref() = &num
interface IRef with
member this.Ref() = &this.Ref()
using System;
using System.Linq;
using System.Linq.Expressions;
static class _
{
static void Deconstruct(this BinaryExpression x,
out ExpressionType type,
out Expression left,
out Expression right)
using System;
using System.Text.Json;
var value = new { name = default(string)! };
//method #1
value = (dynamic)JsonSerializer.Deserialize("""{ "name": "xyz" }""", value.GetType())!;
Console.WriteLine(value);
//method #1
@habib-sadullaev
habib-sadullaev / Revoke temp session token for AWS
Last active March 4, 2024 11:13
temporary credentials for an Amazon Web Services account or IAM user. The credentials consist of an access key ID, a secret access key, and a security token
#r "nuget:AWSSDK.SecurityToken"
open Amazon
open Amazon.Runtime.CredentialManagement
open Amazon.SecurityToken
open Amazon.SecurityToken.Model
let awsCredentials profile =
let chain = CredentialProfileStoreChain()
match chain.TryGetAWSCredentials profile with
@habib-sadullaev
habib-sadullaev / Dynamic dispatch LINQ
Last active December 12, 2023 10:17
Dynamic dispatching LINQ for non-generic `IQueryable` and `LambdaExpression`
#r "nuget: FSharp.Interop.Dynamic"
open System
open System.Collections
open System.Linq.Expressions
open System.Linq
open FSharp.Interop.Dynamic
// query.Select(selector)
let select (selector: LambdaExpression) (query: IQueryable) : IQueryable =
type dlist<'a> = ('a list -> 'a list) list
let dmap f (xs: dlist<'a>) : dlist<'a> = List.map f :: xs
let drun (xs: dlist<'a>) = List.foldBack (<|) xs []
let inline cons x xs = x :: xs
let drange from count =
let rec loop curr acc : dlist<int> =