Proxy (A-Z) | Methods | Status Code | Override Headers | Exposed Headers | Follow Redirect | Timeout | Size Limit | Rate Limit |
---|---|---|---|---|---|---|---|---|
allorigins | β All | β (Always 200) | β | β | β | β | β | 20/min |
cloudflare-cors-anywhere | β All | β Mirror | β | β | β | β | β | β |
codetabs | β (only GET) | β (Always 200) | β | β | β | β | 625KB | 5/sec |
cors-anywhere (heroku) | β All | β Mirror | β | β | β (max. 5) | β | β | 50/hour |
Starting from macOS 15, sudo spctl --master-disable
is no longer supported to disable Gatekeeper.
We need to disbale it with Configuration Profiles.
- Create a new configuration profile, an XML file with
.mobileconfig
extension, refer the sample file in this gist - replace the UUID with your own, you can use
uuidgen
in terminal to generate a new one
Calibre does not keep track of the last time you opened a book, but your filesystem does. Or at least, it kinda does. Thankfully you can use Calibre template functions and custom columns to make use of this information.
- Go to
Preferences -> Advanced -> Template Functions
- Select the
Function
field at the bottom left of the window
Picking the right architecture = Picking the right battles + Managing trade-offs
- Clarify and agree on the scope of the system
- User cases (description of sequences of events that, taken together, lead to a system doing something useful)
- Who is going to use it?
- How are they going to use it?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
A quadtree is a tree data structure in which each internal node has exactly four children. Quadtrees are most often used to | |
partition a two-dimensional space by recursively subdividing it into four quadrants or regions. The regions may be square or | |
rectangular, or may have arbitrary shapes. | |
More on | |
https://en.wikipedia.org/wiki/Quadtree | |
Thanks to Jim for such an excellent visual representation on http://jimkang.com/quadtreevis/ | |