May of 2021
Computer Science⚑
Android⚑
Xiaomi Redmi Note 9S⚑
- New: Xiaomi Redmi Note 9S ROMs.
OsmAnd⚑
- New: OsmAnd export favorites.
SafetyNet⚑
-
New: Android SafetyNet.
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.
GNULinux⚑
-
New: Virt-manager.
Virtual Machine Manager 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.
Debian⚑
-
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.
Latex⚑
-
New: LaTeX change tables names in Spanish.
Change the captions from “Cuadro: ” to “Tabla: ”.
LUKS⚑
- New: Using a keyfile for LUKS.
PostgreSQL⚑
-
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.
WoeUSB⚑
-
New: WoeUSB.
WoeUSB/WoeUSB is a Microsoft Windows® USB installation media preparer for GNU+Linux.
winbugs⚑
WinToUSB⚑
-
New: WinToUSB.
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.
Hardware⚑
- New: BIOS upgrade instructions.
Asus Prime B450 Plus motherboard⚑
- New: Asus B450 BIOS update.
Programming⚑
Basics⚑
-
New: Python
re
module.The
re
module provides regular expression matching operations similar to those found in Perl. -
New: Python os.listdir().
os.listdir(path='.')
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 Pythex.
Python⚑
-
New: Import Jupyter Python notebook.
ipython/ipynb is a package/module importer for importing code from Jupyter Notebook files (.ipynb).
json⚑
-
New: Python json module.
json
is a JSON encoder and decoder for Python.
NetworkX⚑
-
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>)
.
Pandas⚑
-
New: Pandas DataFrame to SQL database.
pandas.DataFrame.to_sql()
writes records stored in aDataFrame
to a SQL database.
Snippets⚑
- New: Python create a directory snippet.
- New: Python snippet to download a file.
Languages⚑
Turkish⚑
Noun cases⚑
-
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
isinstance(object, class)
. -
New: PostgreSQL PGTune.
You can use PGTune to calculate configuration for PostgreSQL based on the maximum performance for a given hardware configuration.