Skip to content

Instantly share code, notes, and snippets.

@AliFlux
AliFlux / FluentAnimationCommunity.md
Last active April 24, 2017 13:54
Fluent Animation Community Post

Fluent Animation - Animate and queue almost anything without headaches.

[picture]

A new fluent way to solve the decade old problem of queuing animations pretty easily. A simple example:

Animating a simple GameObject

Fluent.Animation.New()
 .With(gameObject)
@AliFlux
AliFlux / FluentAnimation.md
Last active December 17, 2017 01:46
Fluent Animation documentation

Fluent.Animation Documentation

A Unity3D plugin that makes it incredibly easy animate almost anything using fluent functions. Fluent Animation takes a procedural/functional way of solving the decade old animation queue and callback hell problem.

Download Now

Features

  • Move, rotate, scale almost anything
  • Execute animations in parallel
@AliFlux
AliFlux / ExiftoolProcess.cs
Last active January 27, 2024 08:56
Process exiftool tags using C#
public static Dictionary<string, string> getExifDataViaTool(string sourceFile, string parameters = "-a")
{
var result = new Dictionary<string, string>();
// escaping path command line
sourceFile = Regex.Replace(sourceFile, @"(\\*)" + "\"", @"$1\$0");
sourceFile = Regex.Replace(sourceFile, @"^(.*\s.*?)(\\*)$", "\"$1$2$2\"");
var argumentsString = parameters + " " + sourceFile;
@AliFlux
AliFlux / Environment configuration.md
Created November 7, 2015 14:27
TSERP Environment Configuration

Server Environment Configuration

Domain names

Two domain names are required to provide a better UX for end-users.

  1. ERP domain name (for main site, links to the Load Balancer)
  2. DAV domain name (for CDN and filesystem, links to Apache)

These domains would be linked to access points on the system via a static public IP.