Each day at our company, developers are required to document their activities, painstakingly jotting down their daily work and future plans. A monotonous chore that I just really dislike.
So now, there's a scribe for that :
Each day at our company, developers are required to document their activities, painstakingly jotting down their daily work and future plans. A monotonous chore that I just really dislike.
So now, there's a scribe for that :
Photographers wade through thousands of photos every shoot, and some crops are far from optimal. A smart crop tool can assist these photographers, provide a baseline for them to work from, and automate the crops for many photos.
A good algorithm for finding objects in photos is the YOLO algorithm (You Only Look Once). A pretrained network that works well is the darknet network by Joseph Chet Redmon. This can be imported into Mathematica as a binary file through this code [^1]:
leayReLU[alpha_] := ElementwiseLayer[Ramp[#] - alpha*Ramp[-#] &]
| #!/bin/bash | |
| scrot /tmp/screen.png | |
| xwobf -s 11 /tmp/screen.png | |
| i3lock --textcolor=ffffff00 --insidecolor=ffffff1c --ringcolor=ffffff3e --linecolor=ffffff00 --keyhlcolor=00000080 --ringvercolor=00000000 --separatorcolor=22222260 --insidevercolor=0000001c --ringwrongcolor=00000055 --insidewrongcolor=0000001c -i /tmp/screen.png | |
| rm /tmp/screen.png |
| #---- Generated by tint2conf 9757 ---- | |
| # See https://gitlab.com/o9000/tint2/wikis/Configure for | |
| # full documentation of the configuration options. | |
| #------------------------------------- | |
| # Backgrounds | |
| # Background 1: Panel, Tooltip | |
| rounded = 0 | |
| border_width = 0 | |
| border_sides = TBLR | |
| background_color = #16161d 63 |
| bar-list = ["topbar"]; | |
| topbar: { | |
| // List of all blocks | |
| block-list: ["workspaces", "space", "title", "cpu", "memory", "network", "date"]; | |
| font: "Droid Sans Mono 8" | |
| // set monitor if you wish: | |
| // monitor: "HDMI-1"; |
| class BSTnode(object): | |
| """ | |
| Representation of a node in a binary search tree. | |
| Has a left child, right child, and key value, and stores its subtree size. | |
| """ | |
| def __init__(self, parent, t): | |
| """Create a new leaf with key t.""" | |
| self.key = t | |
| self.parent = parent | |
| self.left = None |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteRule (.*) ./index.php?id=$1 [L] | |
| </IfModule> |