Skip to content

Instantly share code, notes, and snippets.

View nofilenamed's full-sized avatar
no file named

NOFILENAMED nofilenamed

no file named
View GitHub Profile
@nofilenamed
nofilenamed / UIBlur.shader
Created October 11, 2019 20:44 — forked from JohannesMP/UIBlur.shader
UI.Image Blur Shader with layering and masking support
Shader "Custom/UIBlur"
{
Properties
{
[Toggle(IS_BLUR_ALPHA_MASKED)] _IsAlphaMasked("Image Alpha Masks Blur", Float) = 1
[Toggle(IS_SPRITE_VISIBLE)] _IsSpriteVisible("Show Image", Float) = 1
// Internally enforced by MAX_RADIUS
_Radius("Blur Radius", Range(0, 64)) = 1
@nofilenamed
nofilenamed / README.md
Created July 27, 2016 10:04 — forked from nickbudi/README.md
Budi's Counter-Strike: Global Offensive config

Budi's CS:GO Config

This is my constantly updated CS:GO autoexec config.

Put autoexec.cfg in ...\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg or take what you want from it and add to your autoexec config!

After the Wild West Simulator 2015 update, video.txt needs to be put in ...\Steam\userdata\<Steam3 ID>\730\local\cfg

Launch Options

@nofilenamed
nofilenamed / ipv6-mysql.php
Created May 11, 2016 18:16 — forked from gsdevme/ipv6-mysql.php
Shit for handling IPv6 & mysql storage
<?php
/**
* Shit for handling IPv6 & mysql storage, @gsphpdev
* Bloody headache... remember this Gavin!
*/
/**
* Only PHP 5.4+ has this function so need to add one if not
@nofilenamed
nofilenamed / Clickable svg in a-tag
Created January 10, 2016 22:19 — forked from ajuliano/Clickable svg in a-tag
Make SVG clickable in a-tag and with image fallback
/**
* Make SVG clickable in a-tag and with image fallback (perfect for logotypes)
*
* HTML:
* <a href="http://dystonia-europe.org" target="_blank" class="u--svg-inside">
* <object data="svg-image.svg" type="image/svg+xml"> <img src="fallback-image.png" /> </object>
* </a>
*
*/