npm install -g npm@4
Wednesday, December 20, 2017
Friday, December 15, 2017
Bluetooth keyboard shortcut on iOS 11
Spotlight search.
Change keyboard language.
Go to home.
Volume up/down.
Mute Volume.
CMD + Space
Change keyboard language.
CTRL + Space
Go to home.
CMD + H
Volume up/down.
F12/F13
Mute Volume.
F11
Wednesday, December 13, 2017
Align center tab in Ant Design
Add next style option to the tab component.
tabBarStyle={{textAlign: 'center'}}
100% height in Ant Design
In ant design you want to 100% height of some component.
Add next style option.
Add next style option.
style={{height:"100vh"}}
Thursday, December 7, 2017
Add permanently ssh key on macOS
Run next command.
Add config file in "~/.ssh/" with next contents.
Key option is AddKeysToAgent, UseKeychain.
ssh-add -K ~/.ssh/[YOUR_PRIVATE_KEY]
Add config file in "~/.ssh/" with next contents.
Host github.com
HostName github.com
User enzinier
PreferredAuthentications publickey
IdentityFile /Users/jason/.ssh/enzinier-GitHub
AddKeysToAgent yes
UseKeychain yes
Key option is AddKeysToAgent, UseKeychain.
Subscribe to:
Posts (Atom)