Skip to content

Instantly share code, notes, and snippets.

View Borod4r's full-sized avatar

Ivan Gadzhega Borod4r

View GitHub Profile
^((([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+(\\.([a-z]|\\d|[!#\\$%&\'\\*\\+\\-\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+)*)|((\\x22)((((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(([\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]|\\x21|[\\x23-\\x5b]|[\\x5d-\\x7e]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(\\\\([\\x01-\\x09\\x0b\\x0c\\x0d-\\x7f]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]))))*(((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(\\x22)))@((([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))\\.)+(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0
@Borod4r
Borod4r / Support_for_Single_Pass_Instanced_Rendering.patch
Created July 18, 2019 12:42
Farland Skies - Low Poly : Support for Single Pass Instanced Rendering
Index: Assets/Farland Skies/Low Poly/Shaders/LowPolySkybox.shader
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- Assets/Farland Skies/Low Poly/Shaders/LowPolySkybox.shader (revision f7d4f5a635024a416281d68bf3f41fae11268f8d)
+++ Assets/Farland Skies/Low Poly/Shaders/LowPolySkybox.shader (date 1563453196180)
@@ -105,6 +105,14 @@
// Structs
// -----------------------------------------
@Borod4r
Borod4r / RepositoryInformation.cs
Created November 21, 2019 09:24
Git repo Info from C# script
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
class RepositoryInformation : IDisposable
{
public static RepositoryInformation GetRepositoryInformationForPath(string path, string gitPath = null)
{
var repositoryInformation = new RepositoryInformation(path, gitPath);
@Borod4r
Borod4r / .gitignore
Created February 4, 2024 15:30
.gitignore for Unity projects
# ===================================================
# Unity folders
# ===================================================
/[Bb]uild/
/[Bb]uilds/
/[Ll]ibrary/
/[Ll]ogs/
/[Mm]emoryCaptures/
/[Oo]bj/
@Borod4r
Borod4r / .gitattributes
Created June 30, 2024 15:15
.gitattributes template for Untiy (based on https://github.com/gitattributes/gitattributes)
# =====================================
# Common
# =====================================
# Common settings that generally should always be used with your language specific settings
# Auto detect text files and perform LF normalization
* text=auto
#