Skip to content

Instantly share code, notes, and snippets.

View jeremy-breidenbach's full-sized avatar

Jeremy Breidenbach jeremy-breidenbach

View GitHub Profile
@jeremy-breidenbach
jeremy-breidenbach / jQueryDocumentReady.js
Created August 24, 2016 21:44
jQuery Document Ready
$( document ).ready(function() {
console.log( "ready!" );
});
@jeremy-breidenbach
jeremy-breidenbach / README.md
Created April 16, 2016 13:10
Chromebook "no sound" fix for Ubuntu

How to fix Chromebook "no sound" after installing Ubuntu

  • Open up a terminal window and type sudo alsa force-unload to kill the audio services
  • Replace the system’s sound config file with the downloaded version:
    • Type sudo cp ~/Downloads/asound.state /var/lib/alsa
  • Reboot your Chromebook
@jeremy-breidenbach
jeremy-breidenbach / 0_reuse_code.js
Created March 30, 2016 21:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console