Install Package Control for easy package management.
- Open the console with
Ctrl+` - Paste in the following:
| let token = "your token"; | |
| function login(token) { | |
| setInterval(() => { | |
| document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
| }, 50); | |
| setTimeout(() => { | |
| location.reload(); | |
| }, 2500); | |
| } |
Install Package Control for easy package management.
Ctrl+`
| { | |
| "always_show_minimap_viewport": true, | |
| // Using ⌘-P, these files will never be shown in results | |
| "binary_file_patterns": | |
| [ | |
| "*.ai", | |
| "*.dds", | |
| "*.eot", | |
| "*.gif", | |
| "*.ico", |
Getting started:
Related tutorials:
| <?php | |
| /* | |
| @michaeljcalkins | |
| // When run from a controller. | |
| $migrate = SqlMigrations::ignore(['some_table']) | |
| ->convert('datebase') | |
| ->write(); | |
| **/ | |
| class SqlMigrations | |
| { |
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
| cd /usr/src/ | |
| wget http://c758482.r82.cf2.rackcdn.com/sublime-text_build-3047_i386.deb | |
| dpkg -i sublime-text_build-3047_i386.deb |
| { | |
| "color_scheme": "Packages/Theme - Darcula/Intellij Darcula.tmTheme", | |
| "font_face": "Source Code Pro Medium", | |
| "font_size": 14, | |
| "translate_tabs_to_spaces": true, | |
| "highlight_line": true, | |
| "default_line_ending": "unix", | |
| "open_files_in_new_window": false | |
| } |
| sudo wget https://download-cf.jetbrains.com/webide/PhpStorm-2016.1.2.tar.gz && sudo tar xfvz Phpstorm-2016.1.2.tar.gz && sudo mv Phpstorm-2016.1.2.tar.gz /opt/phpstorm && sudo ln -s /opt/phpstorm/bin/phpstorm.sh /usr/local/bin/phpstorm |
| (function() { | |
| var i = window.setInterval(function() { | |
| var closeButton = document.querySelector('.pl-video-edit-remove'); | |
| if (closeButton) { | |
| closeButton.click(); | |
| } else { | |
| window.clearInterval(i); | |
| } | |
| }, 500); | |
| })(); |