Skip to content

Instantly share code, notes, and snippets.

View ciases's full-sized avatar

Dmitry Pashkovets ciases

View GitHub Profile
@ciases
ciases / get-scrollbar-width.md
Last active January 25, 2018 09:09
Get scrollbar width

Get scrollbar width

JS:

  function getScrollWidth() {
    var scrollDiv = document.createElement('div');
    scrollDiv.className = 'helper-scrollbar-width';
    document.body.appendChild(scrollDiv);

 var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
@ciases
ciases / README.md
Created March 20, 2018 10:07
How to quickly create a file in vim with CtrlP?

How to quickly create a file in vim with CtrlP?

  1. Find target folder with CtrlP
  2. Mark the path with <C-z>
  3. Enter filename and hit `` to create a new file
@ciases
ciases / readme.md
Created August 23, 2018 06:18
Restore GRUB after Windows 10 installation

I just had to run this in Windows as an administrator:

bcdedit /set {bootmgr} path \EFI\ubuntu\grubx64.efi