This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem uninstall `gem list | cut -d ' ' -f 1` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| highlight Cursor guifg=black guibg=white |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <body style="display: none;"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bundle exec rake db:migrate | |
| bundle exec bash |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Could not find a JavaScript runtime. | |
| See https://github.com/sstephenson/execjs for a list of available runtimes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . .\profile.example.ps1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class BuildUtils | |
| combine_source_files: (callback) -> | |
| self = @ | |
| fs.readdir './src', (err, files) -> | |
| self.error_handler err | |
| content = new Array() | |
| files = files.sort() | |
| for file, index in files when file.indexOf('.') isnt 0 then do (file, index) -> | |
| fs.readFile "./src/#{file}", 'utf8', (err, fileContent) -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Stop and start are really setters | |
| $('#slider').ramblingSlider('stop'); // => [div#slider] for method chaining | |
| $('#slider').ramblingSlider('start'); // => [div#slider] for method chaining | |
| $('#slider').ramblingSlider('effect'); // => 'random' | |
| $('#slider').ramblingSlider('option'); // => Object with all options | |
| $('#slider').ramblingSlider('option', 'speed'); // => 400 | |
| $('#slider').ramblingSlider('effect', 'boxRain'); // => [div#slider] for method chaining | |
| $('#slider').ramblingSlider('option', 'speed', 600); // => [div#slider] for method chaining | |
| $('#slider').ramblingSlider('option', 'startSlide'); // => 0 | |
| $('#slider').ramblingSlider('option', 'startSlide', 2); // => throws error "Slider already running. Option 'startSlide' cannot be changed." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| slice.animate { height: "#{slider.height()}px", opacity: '1.0' }, settings.speed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh-keygen -t rsa -C youremail@yourdomain.com |