11th May 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}";
Programming⚑
Basics⚑
-
New: Python os.listdir().
os.listdir(path='.')
returns a list containing the names of the entries in the directory given by path.
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.