- Move assets to /src
- Fix rails_admin custom stylesheets (app/assets/stylesheets/rails_admin)
- Copy package.json
- Copy gulpfile.js
- Controllers
- Copy calcentral_config_controller.rb (app/controllers/calcentral_config_controller.rb)
- Bootstrapcontroller
- update index method
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
| // ==UserScript== | |
| // @name Udemy // Add Playback rates | |
| // @namespace christianvuerings | |
| // @version 0.2 | |
| // @description | |
| // @author Christian Vuerings (christianvuerings) | |
| // @include https://*.udemy.com/* | |
| // @grant none | |
| // ==/UserScript== |
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
| // javascript:(function(){if(!document.getElementById('gestalt-usuage-visualizer')) {var script = document.createElement('script');script.id = 'gestalt-usuage-visualizer';script.src = 'Scripts/Script1.js';document.head.appendChild(script);}})(); | |
| const style = document.createElement('style'); | |
| style.type = 'text/css'; | |
| style.innerHTML = ` | |
| *[class]:not([class^="_"]) { border: solid 1px #ff0000; } | |
| `; | |
| document.getElementsByTagName('head')[0].appendChild(style); |
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
| // Gestalt release notes generation | |
| // 1. Go to https://github.com/pinterest/gestalt/commits/master | |
| // 2. Run the script below | |
| [...document.querySelectorAll('.commit-title')] | |
| .map(commitTitle => `* ${commitTitle.innerText.replace(' …', '')}`) | |
| .join("\n"); |
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
| // 1. Go to https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules | |
| // 2. Run the following script: | |
| (() => { | |
| let output = {}; | |
| [...document.querySelectorAll('.files .js-navigation-item .content a[title]')] | |
| .forEach(file => output[`jsx-a11y/${file.getAttribute('title').replace('.md', '')}`] = 2) | |
| console.log(JSON.stringify(output, null, 4)); | |
| })() |
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
| { | |
| "terms": [ | |
| { | |
| "startTerm": "Fall", | |
| "startTermYear": "2014", | |
| "endTerm": "Spring", | |
| "endTermYear": "2015", | |
| "totalOffered": 60000, | |
| "totalAccepted": 43500, | |
| "categories": [ |
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
| .uc-prototype { | |
| color: #474747; | |
| margin: 0; | |
| font-family: Arial,sans-serif; | |
| font-size: 13px; | |
| font-weight: 400; | |
| line-height: 1.5; | |
| padding: 20px; | |
| } | |
| /* Hide Hacks */ |
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
| { | |
| "standups": { | |
| "20140317": { | |
| "time": "22" | |
| }, | |
| "20140318": { | |
| "time": "20" | |
| }, | |
| "20140319": { | |
| "time": "32" |
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
| var inputs = document.querySelectorAll('input'); | |
| for (var i = 0; i < inputs.length; i++) { inputs[i].setAttribute('autocomplete', 'on') }; |