Friday, May 28, 2021

Productivity Tools

  1. Form History - https://stephanmahieu.github.io/fhc-home/
  2. Shell Directory Management - https://github.com/mcwoodle/shell-directory-management/blob/master/README.md
  3. Browser Extensions
    1. https://addons.mozilla.org/en-US/firefox/addon/screenshot-capture-annotate/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search

Monday, May 24, 2021

My WIFI Network doesn't show up

  1. Windows 10 didn't show my home wifi network
  2. In device manager I install the Microsoft driver instead of the Intel driver as shown in the pic below
  3. My home network showed up and I was able to connect

Wednesday, May 19, 2021

Tuesday, May 18, 2021

gunzip recursively inplace

 gunzip recursively inplace in home directory

gunzip -r /home/auhuman

Friday, January 29, 2021

 Python : It is possible to Iterate and Add to a list simultaneously but not to a set

>>> for i in a:

...     print(i)

...     if i==10:

...             break

...     a.append(i+1)

... 

1

2

3

4

5

6

7

8

9

10

>>> 

>>> a = {1}

>>> for i in a:

...     print(i)

...     if i==10:

...             break

...     a.add(i+1)

... 

1

Traceback (most recent call last):

  File "<stdin>", line 1, in <module>

RuntimeError: Set changed size during iteration

>>>