Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. Working in Windows is inevitable if the office are still tied with Microsoft services. Here's some tips on how to make Windows 10 Pro work for you. This document gets updated ocassionally.
  2.  
  3. ## Desktop account
  4.  
  5. - Create a local Windows user at first and set it up as an administrator. This allows you to be particular with the dirname C:\Users\{username}. I tend to stick with the username used in github as it's prominent in git bash, e.g. paoloumali-sw@pc. This saves you from extra effort on aesthetics later on.
  6. - Login with the local desktop account. Once in, create a Microsoft account for your google office email (applicable if you have G Suite enabled on an office domain). Having both MS and Google associated on one email may prove useful later on when you need to integrate services using MS and Google APIs as you'll be sticking with just one email. To bring most of your desktop configuration on Windows, switch the account to use a Microsoft-based account. This can be done in MS Settings > Accounts. It will change your login but it will use the same C:\Users\{userDir}
  7. - If company use a work email, which provisions licenses like Microsoft Office, etc., simply go to MS Settings > Accounts > Access work or school and add your email there.
  8.  
  9. ## Files in the cloud
  10.  
  11. You may need to bring files with you and have them accessible anywhere you go, any pc you use. The easy option is to have files in the cloud. Google drive may be a better option if you're using Android, but I already went with OneDrive so I'll stick with it for now.
  12.  
  13. ### OneDrive
  14.  
  15. Your Microsoft account will get 5GB free OneDrive space. This won't be enough for work. Unlink that account and switch to the MS work email given you. It usually has 1TB space. During setup, it will ask you for the desire dir loc for OneDrive. I tend to bring all my docs and files on a separate drive partition on a user dir, e.g. H:\paoloumali-sw.
  16.  
  17. ### MS User dirs
  18.  
  19. You will use mostly Downloads, Desktop, Documents, Pictures (Win key + Print Screen goes to a screenshots folder under it). From these, only Downloads need not roam. I moved them to the H partition.
  20.  
  21. - H:\paoloumali-sw\Downloads
  22. - H:\paoloumali-sw\OneDrive - SW\Desktop
  23. - H:\paoloumali-sw\OneDrive - SW\Documents
  24. - H:\paoloumali-sw\OneDrive - SW\Pictures
  25.  
  26. ### Project dirs
  27.  
  28. Use this for any code projects. Most will be on a git repo so they need not roam
  29.  
  30. - H:\paoloumali-sw\projects
  31. - H:\paoloumali-sw\projects\php
  32. - H:\paoloumali-sw\projects\ruby\rails\blog1
  33.  
  34. ## Chrome
  35.  
  36. Most work now are done in a hosted web app. All you need is a browser. I use Chrome since we use mostly Google-based service. Also, Chrome persona is handy.
  37.  
  38. - Settings > On startup > Continue where you left off
  39. - Settings > Downloads > Location change to your Downloads folder in H drive.
  40.  
  41. ### Browser extensions
  42.  
  43. - LastPass
  44. - Grammarly
  45. - Tab Modifier (allow rules like one tab all the time for SF domain, etc)
  46.  
  47. ## Git Bash
  48.  
  49. Microsoft now has WSL but I tend to go back to using Git bash.
  50.  
  51. ### Dotfiles
  52.  
  53. I keep a private repo of my dotfiles. Some items that are useful
  54.  
  55. ```
  56. /h/paoloumali-sw/dotfiles/.bash_aliases
  57. /h/paoloumali-sw/dotfiles/.bash_history
  58. /h/paoloumali-sw/dotfiles/.bash_profile
  59. /h/paoloumali-sw/dotfiles/.bash_ssh_aliases
  60. /h/paoloumali-sw/dotfiles/.bashrc
  61. /h/paoloumali-sw/dotfiles/.editorconfig
  62. /h/paoloumali-sw/dotfiles/.gitconfig
  63. /h/paoloumali-sw/dotfiles/.gitignore_global
  64. /h/paoloumali-sw/dotfiles/.minttyrc
  65. /h/paoloumali-sw/dotfiles/.ssh/
  66. # better vim
  67. /h/paoloumali-sw/dotfiles/.vim/
  68. /h/paoloumali-sw/dotfiles/.vim_runtime/
  69. /h/paoloumali-sw/dotfiles/.viminfo
  70. ```
  71.  
  72. ## Suggested drive partitions
  73.  
  74. - C for Windows
  75. - H for project specific files, symlinked user folders like Downloads, Desktop, etc.
  76. - F for public files, media, e.g. _dev_installers, linux isos
  77. - E for work specific apps like installation for slack, git, ruby, nodejs, etc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement