Sunday, November 14, 2021

Win10 Duplicate accounts at login screen - how to remove

 Add a NEW user through user accounts settings.

Then login as new user, and delete the old user.

Monday, November 8, 2021

Adding A Flatiron Customization To Your Terminal

 

Adding A Flatiron Customization To Your Terminal

  1. Start out by making a backup for your .bashrc

    mv .bashrc .bashrc.bak
    
  2. We will want a tool for converting Windows endings to Unix endings for our new .bashrc

    sudo apt-get install dos2unix
    
  3. download the new .bashrc

    curl -R "https://raw.githubusercontent.com/flatiron-school/dotfiles/master/.bashrc-windows" >> $HOME/.bashrc
    
  4. We'll use our converter to convert our bashrc to use the right unix endings:

    dos2unix .bashrc