verizon fios quantum router - switching from an old router to a new one

 


this is a guide about how to replace verizon fios quantum router G1100 with the exact same model. 

you can simple unplug everything and re-plug everything. it's as simple as that. 

but to make the transition smoother, i have some suggestions that you might like to follow. 

 

1. take pictures first. 

take some pictures before you start. there are at least two you want to take. 

a. take a picture of the new router's login information. 

 

b. take a picture of the old router's cable arrangement. if you have more than 2 cables plugged in to the router, it's easier this way.

 

 

2. don't remove the old router yet. we need to export the settings of the router. 

go to your browser and type in address bar: 192.168.1.1

log in your router. on the left pane, click on "save & restore settings". 


then on the top portion of the screen, choose "save as a file" and click "save configuration". 


a dialogue will pop up. the filename should be something like "configfile.bin", save it to desktop. 

 

3. now go ahead and swap out the old router. unplug everything. then plug in the cables to the same port as the old one. look at the picture you took and make sure they are plugged back to the corresponding ports. then wait for the new router to power up. 

 

4. when the light on the globe is steady, try to go to 192.168.1.1

you now need the new login password. it's on the first picture you took, "administrator password". 

after logging in, same as before, click "save & restore settings". 

on the lower part of the screen, Restore Options, choose "Load a File". and then click "Restore configuration".

 


a dialogue will pop up, go to desktop and choose the file we saved before,  "configfile.bin". 


the router will reboot and everything should be running as it used to. 


 

 



remove google 'people also search for' css doesn't work anymore

10/03/2020

i have been using css code in stylus to remove 'people also search for'. 

it's fast and light. 

the css i was using was found on this website here

and the code:

.s + div, .exp-outline { 
    display: none;
}

 

however, it does not work anymore since Oct, 2020. 

i couldn't find a new one to correct it. 

so the other option i found would be using ublocker. 

in the 'my filters' in the settings, copy and paste this,

 

www.google.com##[id^="eob_"]

 

 save it. and it will take care of the 'people also search for' box. 

 

 

 

spotlight constantly indexing and re-index every time after reboot

 i fixed the problem that spotlight constantly indexing issue.

symptoms: spotlight never achieved 100% indexing, constantly re-index, search results random and not useful

open terminal app, enter:

sudo mdutil -i off /

sudo rm -R /.Spotlight-V100

sudo mdutil -i on /

sudo mdutil -E /

then it will take time for spotlight to re-index everything. it will reach 100% index.

after that, every time after reboot, spotlight will re-scan everything. it might take up to two hours. ( i have two 4tb drives.) and then it will reach 100%.
the search results are good again. 


thanks to this post. this is where i found the solution. 



how to get rid of "sign in to example.com with google account" popup


use an ad-blocker to do it. 

i use ublock. open the dashboard, go to my filters, 

add this filter,


accounts.google.com/gsi/iframe/$subdocument

 

and apply changes. 

done. 

i got the info from this post here.

auto-hide bookmarks toolbar - firefox 80

just updated to firefox 80 and the autohide bookmarks toolbar function is broken. 

add in userchrome.css

here is the fix



#PersonalToolbar{
  --uc-bm-height: 20px; /* Might need to adjust if the toolbar has other buttons */
  --uc-bm-padding: 4px; /* Vertical padding to be applied to bookmarks */
  --uc-autohide-toolbar-delay: 600ms; /* The toolbar is hidden after 0.6s */
}

:root[uidensity="compact"] #PersonalToolbar{ --uc-bm-padding: 1px }
:root[uidensity="touch"] #PersonalToolbar{ --uc-bm-padding: 7px }

#PersonalToolbar:not([customizing]){
  position: relative;
  margin-bottom: calc(0px - var(--uc-bm-height) - 2 * var(--uc-bm-padding));
  transform: rotateX(90deg);
  transform-origin: top;
  transition: transform 135ms linear var(--uc-autohide-toolbar-delay) !important;
  z-index: 1;

}
#PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; }

/* SELECT BOOKMARKS TOOLBAR BEHAVIOR */
/* Comment out or delete either one of these to disable that behavior */

/* Show when urlbar is focused */
#nav-bar:focus-within + #PersonalToolbar{
  transition-delay: 100ms !important;
  transform: rotateX(0);
}


show bookmarks toolbar only on new tab - firefox 72

show on new tab as well we focus on address bar and search bar.
in userChrome.css add,

/*bookmarks toolbar on new tabs only */

#PersonalToolbar{
  --uc-bm-height: 20px; /* Might need to adjust if the toolbar has other buttons */
  --uc-bm-padding: 3px; /* Vertical padding to be applied to bookmarks */
}

:root[uidensity="compact"] #PersonalToolbar{ --uc-bm-padding: 1px }
:root[uidensity="touch"] #PersonalToolbar{ --uc-bm-padding: 6px }

#PersonalToolbar:not([customizing]){
  margin-bottom: calc(2px - var(--uc-bm-height) - 2 * var(--uc-bm-padding));
  transform: rotateX(90deg);
  transform-origin: top;
  transition: transform 135ms linear 600ms !important;
  z-index: 1;

}
#PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; }

/* SELECT BOOKMARKS TOOLBAR BEHAVIOR */
/* Comment out or delete either one of these to disable that behavior */

/* Show when urlbar is focused */
#nav-bar:focus-within + #PersonalToolbar{
  transition-delay: 100ms !important;
  transform: rotateX(0);
}


update*

in firefox 79, you need to enable loading of userChrome.css

follow this guide here


 

bookmarks toolbar remove favicon - firefox 72

to remove favicon on bookmarks toolbar in firefox 72,
in userChrome.css, add this,
(folder is shown as dropdown arrow)

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#personal-bookmarks .bookmark-item .toolbarbutton-icon {
 display:none!important;
}
#personal-bookmarks .bookmark-item[container] .toolbarbutton-menu-dropmarker {
 display: -moz-box !important;
}

verizon fios quantum router - switching from an old router to a new one

  this is a guide about how to replace verizon fios quantum router G1100 with the exact same model.  you can simple unplug everything and re...