May of 2021
Computer Science⚑
Android⚑
(../computer_science/android/devices/curtana.md)⚑
- New: Xiaomi Redmi Note 9S ROMs.
(../computer_science/android/apps/osmand.md)⚑
- New: OsmAnd export favorites.
(../computer_science/android/safetynet.md)⚑
-
New: Android SafetyNet.
(https://developer.android.com/training/safetynet) is a mechanism now included by default in Android that detects device tampering, bad URLs, potentially harmful apps, and fake users and reports it to other apps.
(../computer_science/gnu_linux/virt-manager.md)⚑
-
New: Virt-manager.
(https://virt-manager.org/) is a desktop user interface for managing virtual machines through libvirt. It primarily targets KVM VMs, but also manages Xen and LXC (linux containers).
-
New: Virt-manager guest additions.
To enable features such as shared clipboard, drag and drop, etc. between the host and the guest.
-
New: Download video with subs.
- New: Youtube-dl parallel downloads.
(../computer_science/gnu_linux/debian.md)⚑
-
New: Select the fastest Debian mirror.
Install and run
netselect-apt
to choose the best Debian mirror by downloading the full mirror list and using netselect to find the fastest/closest one.
(../computer_science/gnu_linux/latex.md)⚑
-
New: LaTeX change tables names in Spanish.
Change the captions from “Cuadro: ” to “Tabla: ”.
(../computer_science/gnu_linux/luks.md)⚑
- New: Using a keyfile for LUKS.
(../computer_science/gnu_linux/postgresql.md)⚑
-
New: Delete a table.
DROP TABLE "{table_name}";
-
New: PostgresSQL get column names.
- New: PostgreSQL column names and type.
- New: PostgreSQL query escaping.
- New: PostgreSQL parallelization conf.
- New: PostgreSQL select database.
- New: PostgreSQL GROUP BY reference.
(../computer_science/gnu_linux/woeusb.md)⚑
-
New: WoeUSB.
(https://github.com/WoeUSB/WoeUSB) is a Microsoft Windows® USB installation media preparer for GNU+Linux.
winbugs⚑
(../computer_science/windows/wintousb.md)⚑
-
New: WinToUSB.
(https://www.easyuefi.com/wintousb/) is a Windows To Go (WTG) creator. It is not open source, it has a free (of charge) version. It is distributed as a Windows executable.
Fuck winbugs.
(../computer_science/hardware/t14_amd_gen1.md)⚑
- New: BIOS upgrade instructions.
(../computer_science/hardware/asus_prime_b450_plus.md)⚑
- New: Asus B450 BIOS update.
Programming⚑
(../python_basics.md)⚑
-
New: Python
re
module.The (https://docs.python.org/3/library/re.html) module provides regular expression matching operations similar to those found in Perl.
-
New: Python os.listdir().
(https://docs.python.org/3/library/os.html#os.listdir) returns a list containing the names of the entries in the directory given by path.
-
New: Python time module.
Measure elapsed time between two points.
-
New: Python web regex editor.
Try your RegEx at (https://pythex.org/).
(../computer_science/programming/python/jupyter.md)⚑
-
New: Import Jupyter Python notebook.
(https://github.com/ipython/ipynb) is a package/module importer for importing code from Jupyter Notebook files (.ipynb).
(../computer_science/programming/python/json.md)⚑
-
New: Python json module.
(https://docs.python.org/3/library/json.html?highlight=json#module-json) is a JSON encoder and decoder for Python.
(../computer_science/programming/python/networkx.md)⚑
-
New: NetworkX graph from digraph.
Use
networkx.DiGraph.to_undirected(reciprocal=False, as_view=False)
. -
New: NetworkX subgraph filtering.
To get a subgraph of another by filtering nodes and or edges, use
networkx.classes.graphviews.subgraph_view(G, filter_node=<function no_filter>, filter_edge=<function no_filter>)
.
(../computer_science/programming/python/pandas.md)⚑
-
New: Pandas DataFrame to SQL database.
pandas.DataFrame.to_sql()
writes records stored in aDataFrame
to a SQL database.
(../computer_science/programming/python/snippets.md)⚑
- New: Python create a directory snippet.
- New: Python snippet to download a file.
Languages⚑
Turkish⚑
(../languages/turkish/grammar/noun_cases.md)⚑
-
New: Turkish noun cases.
Turkish generally uses noun cases (ismin hal ekleri) instead of prepositions.
Other⚑
-
New: Python isinstance.
To check if an object is an instance of a class use (https://docs.python.org/2/library/functions.html#isinstance).
-
New: PostgreSQL PGTune.
You can use (https://pgtune.leopard.in.ua/#/) to calculate configuration for PostgreSQL based on the maximum performance for a given hardware configuration.