Skip to content

Instantly share code, notes, and snippets.

View AleksaDjordjic's full-sized avatar
🎯
Focusing

Aleksa Đorđić AleksaDjordjic

🎯
Focusing
View GitHub Profile
@AleksaDjordjic
AleksaDjordjic / ccx11.txt
Created July 27, 2021 14:28
Hetzner Cloud Benchmarks
curl -sL yabs.sh | bash -s -- -9
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
# Yet-Another-Bench-Script #
# v2021-06-05 #
# https://github.com/masonr/yet-another-bench-script #
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
Tue 27 Jul 2021 04:10:59 PM CEST
Basic System Information:
@AleksaDjordjic
AleksaDjordjic / MongoDBClient.cs
Last active August 9, 2021 20:34
Bit more advanced version of perviously uploaded MogoDB C# client for basic CRUD operations and Authorization
using MongoDB.Bson;
using MongoDB.Driver;
using Newtonsoft.Json;
using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
namespace MongoDBClient
{
public abstract class MongoObject
{
@AleksaDjordjic
AleksaDjordjic / MongoDBClient.cs
Created April 4, 2021 23:43
A simple MogoDB C# client for basic CRUD operations
using MongoDB.Bson;
using MongoDB.Driver;
using Newtonsoft.Json;
using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
namespace MongoDBClient
{
public abstract class MongoObject
{
using UnityEngine;
using UnityEngine.UI;
using static UnityEngine.UI.InputField;
public class NumberSelect : MonoBehaviour
{
[Header("References")]
[SerializeField] InputField input;
[SerializeField] Button increaseButton;
[SerializeField] Button decreaseButton;