This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#CONVERT SOLFLARE PRIVATE KEY FORMAT (decimal json) INTO HELIUM WALLET PRVATE KEY FORMAT (base58) | |
#pip install base58 | |
import json | |
import base58 | |
# Your Solana private key as a JSON array of integers | |
solana_private_key_json = '[79, 60, 46, 159, 168, 210, 229, 181, 155, 62, 45, 118, 26, 77, 75, 81, 205, 71, 201, 184, 159, 45, 110, 19, 200, 162, 167, 210, 229, 181, 195, 214]' | |
# Parse the JSON array to a list of integers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Concurrent; | |
using System.Diagnostics; | |
using System.Reflection; | |
using SkiaSharp; | |
using SkiaSharp.Views.Maui; | |
using Animation = SkiaSharp.Skottie.Animation; | |
namespace Skottie; | |
/// <summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Xamarin.iOS | |
# Build a Xamarin.iOS project. | |
# Add steps that install certificates, test, sign, and distribute an app, save build artifacts, and more: | |
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin | |
trigger: | |
- release/store | |
pool: | |
vmImage: 'macos-latest' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Vapolia | |
{ | |
public interface IScreenLocation | |
{ | |
PointF GetCoordinates(VisualElement view); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 1. load https://www.linkedin.com/mynetwork/ | |
// 2. make sure your LinkedIn is in English | |
// 3. paste this script on chrome dev tools at your own risk | |
async function moreConnectionsPlease() { | |
// maximum limit of Connect buttons clicked | |
const LIMIT = 500; | |
// wait in ms before each scroll | |
const SCROLL_TIMEOUT = 600; | |
// bulk scroll will scroll this amount of times |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Xamarin iOS | |
using System; | |
using System.Runtime.InteropServices; | |
using CoreAnimation; | |
using CoreGraphics; | |
using Foundation; | |
using UIKit; | |
namespace Vapolia.Ios.Lib.Ui | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Android.App; | |
using Android.Content; | |
using Android.Content.Res; | |
using Android.Graphics; | |
using Android.Renderscripts; | |
using Android.Runtime; | |
using Android.Util; | |
using Android.Views; | |
using R = VfrApp.Droid.Resource; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Restoring NuGet packages... | |
To prevent NuGet from restoring packages during build, open the Visual Studio Options dialog, click on the NuGet Package Manager node and uncheck 'Allow NuGet to download missing packages during build.' | |
Running restore with 8 concurrent jobs. | |
Reading project file C:\Dev\repos\Company\Company.AirAppApp\AirApp.Core\AirApp.csproj. | |
Reading project file C:\Dev\repos\Company\Company.AirAppApp\AirApp.Droid\AirApp.Droid.csproj. | |
Reading project file C:\Dev\repos\Company\Company.AirAppApp\Company2.Toolbox\Company2.Toolbox.csproj. | |
Reading project file C:\Dev\repos\Company\Company.AirAppApp\AirApp.iOS\AirApp.iOS.csproj. | |
The restore inputs for 'Company2.Toolbox' have not changed. No further actions are required to complete the restore. | |
Committing restore... | |
Assets file has not changed. Skipping assets file writing. Path: C:\Dev\repos\Company\Company.AirAppApp\Company2.Toolbox\obj\project.assets.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Android.Content; | |
using Android.Runtime; | |
using Android.Support.Design.Widget; | |
using Android.Support.V4.View; | |
using Android.Support.V4.Widget; | |
using Android.Support.V7.Widget; | |
using Android.Util; | |
using Android.Views; | |
using Object = Java.Lang.Object; |
NewerOlder