Skip to content

Instantly share code, notes, and snippets.

View Gerrilicious's full-sized avatar

Gereon Doerner Gerrilicious

  • RDS CONSULTING GmbH
  • Düsseldorf
View GitHub Profile
@meanpixel-mbr
meanpixel-mbr / EOSPseudoCode.cs
Created October 21, 2021 22:06
Pseudo Code Listing of Connecting, Logging In, and Listing Friends with EOS SDK
PlatformInterface.Initialize();
var interface = PlatformInterface.Create();
// Aufruf WebBrowser, Epic Kontovlogin zulassen
interface.GetAuthInterface().Login(callback => {
var userId = callback.LocalUserId;
@DanDiplo
DanDiplo / JS-LINQ.js
Last active July 19, 2024 03:02
JavaScript equivalents of some common C# LINQ methods. To help me remember!
// JS array equivalents to C# LINQ methods - by Dan B.
// First: This version using older JavaScript notation for universal browser support (scroll down for ES6 version):
// Here's a simple array of "person" objects
var people = [
{ name: "John", age: 20 },
{ name: "Mary", age: 35 },
{ name: "Arthur", age: 78 },
{ name: "Mike", age: 27 },
@theuntitled
theuntitled / DataContext.cs
Last active December 14, 2018 11:12
Elmah v1.2 POCO and Code First Migration
using System.Data.Entity;
using ProjectName.Models;
namespace ProjectName {
public class DataContext : DbContext {
internal DbSet<ElmahError> ElmahErrors { get; set; }
}