Skip to content

Instantly share code, notes, and snippets.

View avindra's full-sized avatar
🙏
Acepit

Avindra Goolcharan avindra

🙏
Acepit
View GitHub Profile
@avindra
avindra / old-nuke.ahk
Created June 6, 2016 01:23
CS GO: Jump to the top of silo on de_nuke
isFast = 1
XButton2::
Send {3} ; Use knife
Send {W down} ; Move forward
Sleep 690 ; ...
Send {Space} ; Jump at the right moment
Send {Ctrl down} ; Crouch
Sleep 1200 ; Hold it...
@avindra
avindra / Buffer.java
Created September 15, 2013 17:41
Text editor assignment - using a two stack buffer.
/*
* Avindra Goolcharan
* September 11, 2013
* CS 216 007 - Data Structures & Algorithms
* Assignment 2 - Two Stack Buffer
*/
import java.util.Stack;
public class Buffer