Skip to content

Instantly share code, notes, and snippets.

View PTimofeev's full-sized avatar

Pavel Timofeev PTimofeev

  • Quest
  • Saint-Petersburg
View GitHub Profile
@PTimofeev
PTimofeev / ColonasLightTheme.StorableColorTheme.ps1xml
Last active March 3, 2016 18:29
Colonas Light Color Theme
<?xml version="1.0" encoding="utf-16"?>
<StorableColorTheme xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Keys>
<string>ErrorForegroundColor</string>
<string>ErrorBackgroundColor</string>
<string>WarningForegroundColor</string>
<string>WarningBackgroundColor</string>
<string>VerboseForegroundColor</string>
<string>VerboseBackgroundColor</string>
<string>DebugForegroundColor</string>
##################################################################
# /etc/elasticsearch/elasticsearch.yml
#
# Base configuration for a write heavy cluster
#
# Cluster / Node Basics
cluster.name: logng
# Node can have abritrary attributes we can use for routing
tail -n 0 -f file.txt
@PTimofeev
PTimofeev / frontendDevlopmentBookmarks.md
Created October 28, 2015 11:20 — forked from dypsilon/frontendDevlopmentBookmarks.md
A badass list of frontend development resources I collected over time.
@PTimofeev
PTimofeev / RigidbodyMassCalculator.cs
Created December 23, 2015 13:15 — forked from FreyaHolmer/RigidbodyMassCalculator.cs
Used to approximate a proper mass value for all the colliders in a given Rigidbody
using UnityEngine;
using System.Linq;
[RequireComponent(typeof(Rigidbody))]
public class RigidbodyMassCalculator : MonoBehaviour {
public float density = 1f;
public bool recalculateOnAwake = true;
Rigidbody rb;
@PTimofeev
PTimofeev / bash-cheatsheet.sh
Created March 28, 2017 12:12 — forked from LeCoupa/bash-cheatsheet.sh
Bash CheatSheet for UNIX Systems
#!/bin/bash
#####################################################
# Name: Bash CheatSheet for Mac OSX
#
# A little overlook of the Bash basics
#
# Usage:
#
# Author: J. Le Coupanec
# Date: 2014/11/04