- Form History - https://stephanmahieu.github.io/fhc-home/
- Shell Directory Management - https://github.com/mcwoodle/shell-directory-management/blob/master/README.md
- Browser Extensions
- https://addons.mozilla.org/en-US/firefox/addon/screenshot-capture-annotate/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search
Friday, May 28, 2021
Productivity Tools
Monday, May 24, 2021
Wednesday, May 19, 2021
Updating Or committing packages recursively
for dir in ~/projects/git/*; do (cd "$dir" && git pull); done
Tuesday, May 18, 2021
Friday, February 26, 2021
Chrome url to highlight text
When you navigate to this link you will see "allow" words in the page highlighted
https://en.wikipedia.org/wiki/Library_acquisitions#:~:text=allow
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
>>>
Subscribe to:
Posts (Atom)