Skip to content

Instantly share code, notes, and snippets.

View Pendrokar's full-sized avatar

Yanis Lukes Pendrokar

View GitHub Profile
@Pendrokar
Pendrokar / git.bat
Last active January 25, 2017 18:27
Access Git in command prompt from within 'Bash on Ubuntu on Windows' environment by having this within environment variables. I am not a good Batch script writer though.
@echo off
SETLOCAL EnableDelayedExpansion
rem Get drive letter along with the colon and backslash
SET _cdDrive=%cd:~0,3%
rem Get drive letter
SET mntPath=%_cdDrive:~0,1%
rem mnt/<driveLetter> is lower case, has to be converted
call :LoCase mntPath
SET mntPath=/mnt/%mntPath%/
@iamphilrae
iamphilrae / phpMyAdmin Export Filename Template, Including Date and Time
Last active April 3, 2024 20:30
phpMyAdmin Export Filename Template, Including Date and Time
@DATABASE@__%Y-%m-%d_%H-%M-%S
@pigeon6
pigeon6 / Unlit-CastShadow.shader
Created December 7, 2012 23:11
Unlit texture shader which casts shadow on Forward/Defered
// Unlit texture shader which casts shadow on Forward/Defered
Shader "Unlit/Texture CastShadow" {
Properties {
_MainTex ("Base (RGB) Trans (A)", 2D) = "white" {}
}
SubShader {
Tags {"Queue"="Opaque" }
LOD 100