Skip to content

Instantly share code, notes, and snippets.

@Eseperio
Eseperio / all-file-extensions.json
Created July 16, 2019 09:50
List of all file extensions with description (listed on wikipedia) in JSON format.
{
"0": {
"descriptions": [
"Compressed harddisk data"
]
},
"1": {
"descriptions": [
"Fax",
"Roff/nroff/troff/groff source for manual page"
.php
.html
.txt
.htm
.aspx
.asp
.js
.css
.pgsql.txt
.mysql.txt
@novaTopFlex
novaTopFlex / novaTopFlexPhil.txt
Last active April 26, 2024 12:57
novaTopFlex Philosophy
novaTopFlex values user identity and integrity.
Therefore, in addition to necessary terms and guidelines, obvious ethical rules must also be obeyed at all times.
Obviously, you must follow all terms from applicable licenses for novaTopFlex software.
To further increase integrity, novaTopFlex values the ability to foster a safe environment for the creator society.
In the best effort to ensure that software snippets remain on GitHub, novaTopFlex will ensure that only the truth is provided at all times.
While restricted-access features are prohibited on GitHub, novaTopFlex does not guarantee that Linux software will also be compatible with Microsoft Windows or Apple macOS. novaTopFlex also cannot guarantee that software from one version of the Python programming language will operate successfully on other versions. For instance, software that may be written in the Python 3.12 (or later) language in 2023 or 2024 (or later) may not guarantee compatibility with newer (or older) versions of the script.
Additions to
@novaTopFlex
novaTopFlex / Programming.md
Last active April 18, 2024 18:46
Programming Standards Set by the novaTopFlex Philosophy

Introduction

Programming languages often require modules for full operation, yet many of the necessary modules have not been implemented by default. When programmers refer to "batteries" they often refer to the inclusion of a diverse range of modules in default installations of various programming languages, yet many more modules may remain undiscovered in default installations.

Philosophy

Modules Required

In various programming languages, useful information is best provided through the implementation of modules. With modules, one may not necessary be forced to write code that may be impossible to write without the applicable modules. For instance, on a default Python interpreter, one may not access the file system until the os module is imported. A large portion of system information remains undiscovered until the sys module is imported. And for graphical design, modules like tkinter or wxPython are often necessary with the Python interpreters.

Modules Not Available

Depending on the program