11th May 2021
Computer Science⚑
GNULinux⚑
(../computer_science/gnu_linux/latex.md)⚑
-
New: LaTeX change tables names in Spanish.
Change the captions from “Cuadro: ” to “Tabla: ”.
(../computer_science/gnu_linux/postgresql.md)⚑
-
New: Delete a table.
DROP TABLE "{table_name}";
Programming⚑
(../python_basics.md)⚑
-
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.
(../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/pandas.md)⚑
-
New: Pandas DataFrame to SQL database.
pandas.DataFrame.to_sql()
writes records stored in aDataFrame
to a SQL database.