A command line utility to export Google Keep notes to markdown

A command line utility to export Google Keep notes to markdown files with metadata stored as a frontmatter header. Supports exporting: Simple notes List notes Images and Drawings Audio clips Link annotations Usage If you do not supply a username or password before running it, you will be prompted to input them. Usage: keep_export [OPTIONS] Options: –config FILE Read configuration from FILE. -u, –user TEXT Google account email (prompt if empty) [env var: GKEEP_USER; required] -p, –password TEXT Google account […]

Read more

Python’s missing debug print command and other development tools

Python’s missing debug print command and other development tools. For more information, see documentation. Install Just pip install devtools[pygments] pygments is not required but if it’s installed, output will be highlighted and easier to read. devtools has no other required dependencies except python 3.6, 3.7, or 3.8.If you’ve got python 3.6+ and pip installed, you’re good to go. Usage from devtools import debug whatever = [1, 2, 3] debug(whatever) Outputs: test.py:4 : whatever: [1, 2, 3] (list) That’s only the […]

Read more

A simple command-line utility for querying and monitoring GPU status

Just less than nvidia-smi? NOTE: This works with NVIDIA Graphics Devices only, no AMD support as of now. Contributions are welcome! Self-Promotion: A web interface of gpustat is available (in alpha)! Check out gpustat-web. Usage $ gpustat Options: –color : Force colored output (even when stdout is not a tty) –no-color : Suppress colored output -u, –show-user : Display username of the process owner -c, –show-cmd : Display the process name -f, –show-full-cmd : Display full command and cpu stats […]

Read more

A python command line toolfor archiving Twitter JSON

Collect data at the command line from the Twitter API (v1.1 and v2). Contributing Documentation The documentation is managed at ReadTheDocs. If you would like to improve the documentation you can edit the Markdown files in docs or add new ones. Then send a pull request and we can add it. To view your documentation locally you should be able to: pip install -r requirements-mkdocs.txt mkdocs serve open http://127.0.0.1:8000/ If you prefer you can create a page on the wiki […]

Read more

Instant coding answers via the command line in python

instant coding answers via the command line Sherlock, your neighborhood command-line sloth sleuth. Are you a hack programmer? Do you find yourself constantly Googling for how to do basic programming tasks? Suppose you want to know how to format a date in bash. Why open your browser and read through blogs (risking major distraction) when you can simply stay in the console and ask howdoi: $ howdoi format date bash > DATE=`date +%Y-%m-%d` howdoi will answer all sorts of queries: […]

Read more

PathPicker accepts a wide range of input — output from git commands

Facebook PathPicker is a simple command line tool that solves the perpetual problem of selecting files out of bash output. PathPicker will: Parse all incoming lines for entries that look like files Present the piped input in a convenient selector UI Allow you to either: Edit the selected files in your favorite $EDITOR Execute an arbitrary command with them It is easiest to understand by watching a simple demo: Examples After installing PathPicker, using it is as easy as piping […]

Read more

Adds flavor of interactive filtering to the traditional pipe concept of UNIX shell

__ ____ ___ ______________ / / / __ / _ / ___/ ___/ __ / / / /_/ / __/ / / /__/ /_/ / / / .___/___/_/ ___/____/_/ /_/ percol adds flavor of interactive selection to the traditional pipe concept on UNIX. What’s this percol is an interactive grep tool in your terminal. percol receives input lines from stdin or a file, lists up the input lines, waits for your input that filter/select the line(s), and finally outputs the […]

Read more

Magnificent app which corrects your previous console command

The Fuck is a magnificent app, inspired by a @liamosaur tweet, that corrects errors in previous console commands. Is The Fuck too slow? Try the experimental instant mode! More examples: ➜ apt-get install vim E: Could not open lock file /var/lib/dpkg/lock – open (13: Permission denied) E: Unable to lock the administration directory (/var/lib/dpkg/), are you root? ➜ fuck sudo apt-get install vim [enter/↑/↓/ctrl+c] [sudo] password for nvbn: Reading package lists… Done … ➜ git push fatal: The current branch […]

Read more
1 5 6 7 8 9 15