Skip to content

Instantly share code, notes, and snippets.

@jbyte2009
jbyte2009 / NetSuiteApiClient.cs
Created April 22, 2025 18:24
How to use NetSuite REST API with OAuth 2 and C# .NET - New Authorization for April 2025
NetSuite Machine to Machine (M2M) Authentication to authenticate and retrieve an access token.
Visual Studio 2022
Application: Class Library
.NET Core 6 - C#
Package: Portable.BouncyCastle
=========================================
@shinyzhu
shinyzhu / GooglePoints.cs
Last active December 26, 2025 06:20
Encode/Decode Polyline Algorithm Format in C#
/// <summary>
/// See https://developers.google.com/maps/documentation/utilities/polylinealgorithm
/// </summary>
public static class GooglePoints
{
/// <summary>
/// Decode google style polyline coordinates.
/// </summary>
/// <param name="encodedPoints"></param>
/// <returns></returns>