Showing posts with label tech_stuff. Show all posts
Showing posts with label tech_stuff. Show all posts

Friday, March 20, 2020

10 second skip button in youtube



Youtube accessibility option:

So, while playing youtube video it start showing  "10 second skip button"(both forward and backward) always. In order to hide those buttons I need to press on X on the top right corner *every* single time.

I was quite annoyed about this option and figured out how to disable it.

Click on your profile -> Settings -> Accessibilty -> Accessibility Player. You need to turn off Accessibility player option.
That's it :)


#tech_stuff

Friday, February 28, 2020

chrome restart - without losing tabs




Chrome has a feature which allows you to restart Chrome without losing any open tabs.


Type  chrome://restart in the Address bar, you will notice the browser shut down and restart.

All previously opened tabs - and any other windows with Chrome open - will now be restored.

#tech_stuff 

Tuesday, February 25, 2020

air gapped installation




An “airgapped” environment is a network that has no path to inbound or outbound internet traffic at all. Some enterprise customers require that you deliver a package they can install in their airgapped environment.
#techstuff

Monday, February 24, 2020

epub file in fedora



You can install FBreader to open epub files in fedora. 

yum search fbreader

While opening the program open it is "FBreader".

#tech_stuff

Tuesday, February 11, 2020

flake8 - static analysis tool for python



flake8 is a linting (static analysis of source code) tool.

You can run flake8 against a  python file / entire project itself.


More details here:
http://flake8.pycqa.org/en/latest/index.html

#tech_stuff