I hereby claim:
- I am randname on github.
- I am randname (https://keybase.io/randname) on keybase.
- I have a public key ASBs6BK85bg5G6713qw7sykPHpGYUxDKRCa74R9mcpxR4Qo
To claim this, I am signing this object:
| from tkinter import * | |
| from PIL import ImageTk,Image | |
| import time | |
| import os | |
| targetImageWidth = 850 | |
| targetImageHeight = 400 | |
| inputImageWidth = 0 | |
| inputImageHeight = 0 |
I hereby claim:
To claim this, I am signing this object:
| <html> | |
| <head> | |
| <style> | |
| .buttonInImage { | |
| position: relative; | |
| width: 100%; | |
| max-width: 400px; | |
| margin-left: auto; | |
| margin-right: auto; | |
| } |
| #!/bin/sh | |
| [ -z "$@" ] && echo "Usage: $( basename $0 ) MESSAGE" && exit 1 | |
| [ ! -f ~/.ifttt ] && echo "~/.ifttt not found" && exit 1 | |
| . ~/.ifttt | |
| [ -z "$IFTTT_KEY" ] && echo "Please set your IFTTT key in ~/.ifttt" && exit 1 |
| [Theme] | |
| DisplayName=Solarized Dark | |
| [Control Panel\Desktop] | |
| PicturePosition=4 | |
| [VisualStyles] | |
| Path= | |
| ColorStyle=NormalColor | |
| Size=NormalSize |
Last updated: 07/10/2019
Your feedback will be much appreciated, so either leave a comment below or PM @randName on Telegram.
| fulladder = """aS{0}:=ODD(A{0},B{0},C{1}); | |
| C{0}:=OR(AND(A{0},B{0}),AND(C{1},ODD(A{0},B{0})));""" | |
| def koggestone(i, l, maxi): | |
| g = "G{2}{1}:=OR(G{3}{1},AND(P{3}{1},{4}));" | |
| p = "\nP{2}{1}:=AND(P{3}{1},P{3}{0});" | |
| i -= 1 | |
| s = 2 ** l | |
| if i + s >= maxi: | |
| return "" |
| #!/usr/bin/env python2 | |
| import numpy as np | |
| import cv2 as cv | |
| def FCD( src, mask ): | |
| A_THRESH = [ 2, 1 ] | |
| sobel_x = cv.Sobel( src, cv.CV_32F, 1, 0, ksize = 5 ) |