Skip to content

Instantly share code, notes, and snippets.

View willluongo's full-sized avatar

Will Luongo willluongo

View GitHub Profile

Keybase proof

I hereby claim:

  • I am willluongo on github.
  • I am willluongo (https://keybase.io/willluongo) on keybase.
  • I have a public key ASAHcthDgf3Ufi7e9F3AlqpIAfo8TxIGm_bb_P8eULUm3Ao

To claim this, I am signing this object:

#chat-box.ubuntu.hidden-xs
.closed
.pull-right
= link_to_function content_tag(:i, nil, class: 'glyphicon glyphicon-chevron-up').html_safe, 'chat.show()'
.m-l-small
= link_to_function 'Chat with us', 'chat.show()'
.opened{style: 'display: none'}
.header
.pull-right
= link_to_function content_tag(:i, nil, class: 'glyphicon glyphicon-plus-sign').html_safe, 'chat.maximize()', class: 'maximize', style: 'display: none'
@willluongo
willluongo / ArduinoIdeas.md
Last active December 23, 2015 17:09
General Ideas for Arduino Projects

Ideas for the Arduino

Pong

A row of yellow LEDs with a red LED on each end, each end has one push button. The red LEDs represent the goals. When a player presses their button, it acts a stopper for the duration of one light of movement.

Possible details

  • Goal keeper (penultimate) LEDs would be three color LEDs, so the LED can change color while "blocking
@willluongo
willluongo / Arduino.sublime-build
Created September 23, 2013 04:06
Arduino build for Sublime Text using ino(https://github.com/amperka/ino)
{
"selector": "source.arduino",
"cmd": ["ino", "build"],
"variants": [
{ "cmd": ["ino", "upload"],
"name": "Run"
}
]
@willluongo
willluongo / gist:5599427
Created May 17, 2013 14:33
GPU issue on Mac Pro
5/16/13 11:57:09.000 PM kernel[0]: GPU Hang State = 0x00000000
5/16/13 11:57:09.000 PM kernel[0]: AMDCypressGraphicsAccelerator: ** Device in slot: SLOT-1 **
5/16/13 11:57:09.000 PM kernel[0]: ** GPU Debug Info Start **
5/16/13 11:57:09.000 PM kernel[0]: 0x00006898
5/16/13 11:57:09.000 PM kernel[0]: 0x00000091
5/16/13 11:57:09.000 PM kernel[0]: 0x00000001
5/16/13 11:57:09.000 PM kernel[0]: 0x00000018
5/16/13 11:57:09.000 PM kernel[0]: 0x00009040
5/16/13 11:57:09.000 PM kernel[0]: 0x00000001
5/16/13 11:57:09.000 PM kernel[0]: 0x00000001
@willluongo
willluongo / GuessingGame.rb
Created November 27, 2010 23:27
Guessing Game implemented in Ruby
class GuessingGame
def initialize
@upper_limit=100
@lower_limit=1
@guess=50
@quit = false
until self.quit_playing
self.comp_guess
self.input = gets.chomp.to_i
end