The SOURCE of knowledge for Perl regular expressions (REGEX):
https://perldoc.perl.org/perlre.html
PCRE is the most common REGEX flavor.
Why use Google and Stack Overflow, when you could consult the source?
The SOURCE of knowledge for Perl regular expressions (REGEX):
https://perldoc.perl.org/perlre.html
PCRE is the most common REGEX flavor.
Why use Google and Stack Overflow, when you could consult the source?
The SOURCE of knowledge for common Linux command line utilities:
https://www.gnu.org/software/coreutils/manual/coreutils.html
Why use Google and Stack Overflow, when you could consult the source?
I hereby claim:
To claim this, I am signing this object:
Visual Studio Code is a popular and feature-rich IDE: https://code.visualstudio.com/
During the initial setup for source control (SCM) integration, especially in Mac OS X, you might encounter a "no source control providers" error.
After you verified that Git is installed on your system, use the command line to clone/check out a Git project.
JSON Lines text format, also called newline-delimited JSON, is a convenient format for storing structured data that may be processed one record at a time.
Files in JSON Lines format usually carry the extension .jsonl
.
Official Site for JSON Lines Format: http://jsonlines.org/
https://pascalprecht.github.io/posts/pretty-print-json-in-vim/
Create a file name pretty_print_json.vim
with the following content:
:%!python3 -m json.tool
:wq
If you only have Python 2 on your system, then remove the "3" after "python":
https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options
Note: Use --outdir
option of soffice
to specify a custom output directory.
find "`pwd`" -type f -iname "*.xls*" -exec soffice --headless --convert-to csv:"Text - txt - csv (StarCalc)":9,34,76,1,,0,false,true,true "{}" \;