- cmd-f Search & Find Text (in file)
- cmd-shift-f Search & Find Text (project wide)
- cmd-d Duplicate Current Line
- cmd-x Cut Current Line
- cmd-1 Project Directory Treeview
| secmen = 15 | |
| aday = 3 | |
| esitlik = secmen / aday | |
| ece = 0 | |
| efe = 0 | |
| ege = 0 | |
| gecersiz = 0 |
| // https://jsfiddle.net/gxRC9/502/ | |
| // var stickyOffset = $('.sticky').offset().top; | |
| $(window).scroll(function(){ | |
| var sticky = $('.sticky'), | |
| scroll = $(window).scrollTop(); | |
| // if (scroll >= stickyOffset) sticky.addClass('fixed'); | |
| if (scroll >= 200) sticky.addClass('fixed'); | |
| else sticky.removeClass('fixed'); | |
| }); |
Note: Some of these shortcuts have been remapped for my own convenience (Preferences->Keymap). These are Mac shortcuts, just use the Windows/Linux equivalent of the Cmd/Option/Ctrl/Del keys.
####Search, Go to, Navigation ####
Cmd + P - Search file
Cmd + Shift + O - Search everywhere
(I swapped the above two recently because I use Cmd + P to search for files most of the time).
| <?php | |
| /** | |
| * A helper file for Laravel 5, to provide autocomplete information to your IDE | |
| * Generated for Laravel 5.1.40 (LTS) on 2016-07-18. | |
| * | |
| * @author Barry vd. Heuvel <[email protected]> | |
| * @see https://github.com/barryvdh/laravel-ide-helper | |
| */ | |
| namespace { |
Examples of getting certificates from Let's Encrypt working on Apache, NGINX and Node.js servers.
I chose to use the manual method, you have to make a file available to verify you own the domain. Follow the commands from running
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt| <?php | |
| // API access key from Google API's Console | |
| define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
| $registrationIds = array( $_GET['id'] ); | |
| // prep the bundle | |
| $msg = array |