The gist containing this content and be found here.
conda create -n kindle python=3.7 pip six fuzzysearch fundamentals tabulate pandas
conda activate kindle
pip install PyMuPDF| #!/bin/bash | |
| # Archives a specified website including all sub-pages and outputs a single PDF file | |
| # Requires the following tools to be installed: | |
| # - wget | |
| # - wkhtmltopdf | |
| # - gs (ghostscript) | |
| # Installation: |
The gist containing this content and be found here.
conda create -n kindle python=3.7 pip six fuzzysearch fundamentals tabulate pandas
conda activate kindle
pip install PyMuPDFThe big reason to do this is that LLDB has no ability to "follow-fork-mode child", in other words, a multi-process target that doesn't have a single-process mode (or, a bug that only manifests when in multi-process mode) is going to be difficult or impossible to debug, especially if you have to run the target over and over in order to make the bug manifest. If you have a repeatable bug, no big deal, break on the fork from the parent process and attach to the child in a second lldb instance. Otherwise, read on.
Don't make the mistake of thinking you can just brew install gdb. Currently this is version 10.2 and it's mostly broken, with at least two annoying bugs as of April 29th 2021, but the big one is https://sourceware.org/bugzilla/show_bug.cgi?id=24069
$ xcode-select install # install the XCode command-line toolsIn Adobe Flash Player versions newer than 32.0.0.344 they added a "Timebomb" for the EOL.
the player would refuse to run any custom flash content after 12/01/2021,
instead it would just show this
So knowing this, Lets crack it!
I acturally started looking into this before the 12/01/2021 hit, but only recently did i acturally discover a way to bypass the killswitch
(also- im aware i was not the first to do this, but i still did do it)
| /* Need to copy an entire folder from one Google Drive account to another Google Drive account? | |
| * 1. Right-click on original folder in Google Drive | |
| * 2. Share with the destination Google account | |
| * 3. Go into destination account's Google Drive | |
| * 4. Find the shared folder under "Shared with me" | |
| * 5. Select all the files (Ctrl-A / Cmd-A) | |
| * 6. Right-click, Make a copy | |
| * 7. Create a New Folder in destination account's Google Drive | |
| * 8. Go to Recent | |
| * 9. Select all recently copied files and move to the new folder |
| #!/bin/bash | |
| ################################################################################ | |
| # | |
| # This script automates the installation of the mFi controller software on the | |
| # Raspberry Pi. | |
| # | |
| # http://www.technologist.site/ubnt | |
| # | |
| ################################################################################ |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| #!/bin/bash | |
| ZT_NETWORK="NETWORK_ID" | |
| # colors | |
| RCol='\033[0m' # Text Reset | |
| LGra='\033[0;37m'; | |
| Red='\033[0;31m'; | |
| Gre='\033[0;32m'; | |
| Yel='\033[0;33m'; |
| #include <sys/ioctl.h> | |
| #include <errno.h> | |
| #include <string.h> | |
| #include <stdio.h> | |
| #include <linux/vt.h> | |
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <fcntl.h> | |
| #include <linux/kd.h> | |
| #include <linux/keyboard.h> |