19th Week of 2021
Computer Science⚑
GNULinux⚑
Latex⚑
-
New: LaTeX change tables names in Spanish.
Change the captions from “Cuadro: ” to “Tabla: ”.
PostgreSQL⚑
-
New: Delete a table.
DROP TABLE "{table_name}";
-
New: PostgresSQL get column names.
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).
Pandas⚑
-
New: Pandas DataFrame to SQL database.
pandas.DataFrame.to_sql()
writes records stored in aDataFrame
to a SQL database.
Other⚑
-
New: Python isinstance.
To check if an object is an instance of a class use
isinstance(object, class)
.