Skip to content

Instantly share code, notes, and snippets.

View cihadturhan's full-sized avatar
🐇
Ready!

Cihad Turhan cihadturhan

🐇
Ready!
View GitHub Profile
@cihadturhan
cihadturhan / boxshadow.css
Created June 12, 2018 22:10
medium-article-links
.item {
/* stack many of them */
box-shadow: 0 5px 10px red, 0 20px 25px green;
}

This is Not a Game - The Game

Privacy Policy

Effective date: July 6, 2018

This is Not a Game - The Game ("us", "we", or "our") operates the website and the This is Not a Game - The Game mobile application (the "Service").

This page informs you of our policies regarding the collection, use, and disclosure of personal data when you use our Service and the choices you have associated with that data.

We use your data to provide and improve the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.

@cihadturhan
cihadturhan / execute.cs
Created March 13, 2021 23:05
Execute ffmpeg from unity on MacOS
// Make sure you have ffmpeg installed at /usr/local/bin/ffmpeg
static void ExecuteProcessTerminal(string inputFileDir)
{
try
{
var outputFileName = Regex.Replace(inputFileDir, @"\.(mp4|mov|MP4|MOV)", ".wav", RegexOptions.IgnoreCase);
ProcessStartInfo startInfo = new ProcessStartInfo()
{