Skip to content

Instantly share code, notes, and snippets.

View RockyGitHub's full-sized avatar
🏠
Working from home

Chris Davidoff RockyGitHub

🏠
Working from home
  • 05:53 (UTC -06:00)
View GitHub Profile
@sinbad
sinbad / LightFlickerEffect.cs
Last active September 15, 2024 15:08
Unity simple & fast light flicker script
using UnityEngine;
using System.Collections.Generic;
// Written by Steve Streeting 2017
// License: CC0 Public Domain http://creativecommons.org/publicdomain/zero/1.0/
/// <summary>
/// Component which will flicker a linked light while active by changing its
/// intensity between the min and max values given. The flickering can be
/// sharp or smoothed depending on the value of the smoothing parameter.
@piccaso
piccaso / ssh.cs
Last active August 6, 2024 19:59
ssh.net Example - Keybased Authentication, File Upload, Shell Commands
/*
get SSH.NET (BSD License: http://sshnet.codeplex.com/license)
with NuGet:
>Install-Package SSH.NET -Version 2013.4.7
or just get the dll from here: http://j.mp/sshNet
*/
using System;