This file contains hidden or 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
use std::collections::HashMap; | |
use rand::Rng; | |
/* | |
Make a shorten and restore method to shorten a url and expand it. | |
*/ | |
const ALPHAS : &str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; | |
struct ShortUrls { |
This file contains hidden or 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 System.Collections.Generic; | |
using System.IdentityModel.Tokens.Jwt; | |
using System.Linq; | |
using System.Net; | |
using System.Security.Claims; | |
using System.Text; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Google.Protobuf.WellKnownTypes; |
This file contains hidden or 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 Improbable; | |
using UnityEngine; | |
using Improbable.Character; | |
using Improbable.Gdk.GameObjectRepresentation; | |
using Improbable.Gdk.TransformSynchronization; | |
using Improbable.Worker.CInterop; | |
public class CharacterMovementBehavior : MonoBehaviour { | |
[Require] |
This file contains hidden or 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 System.Collections.Generic; | |
using System.Text; | |
using Microsoft.AspNetCore.Mvc; | |
using Newtonsoft.Json; | |
namespace Gnarlywood.Core.Sites | |
{ | |
public static class ActionResultHelper | |
{ |
This file contains hidden or 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; | |
using System.Collections.Generic; | |
using Improbable.Core; | |
using Improbable.CoreLibrary.Transforms.Local; | |
using Improbable.Gdk.GameObjectRepresentation; | |
using Improbable.Worker.CInterop; | |
using UnityEngine; | |
public class KineTransformClientReceiver : KineTransformReceiver | |
{ |