I hereby claim:
- I am ikr7 on github.
- I am ikr7 (https://keybase.io/ikr7) on keybase.
- I have a public key whose fingerprint is 9CB9 55E6 6179 0DC1 424D 0798 93E3 2CF4 EBFC 9881
To claim this, I am signing this object:
| """ | |
| usage: | |
| $ python sixel-mandelbrot.py | |
| or | |
| $ python sixel-mandelbrot.py 300 | |
| """ | |
| import sys | |
| import fcntl, termios, struct |
| import sys | |
| key = sys.argv[1] | |
| cipher = input() | |
| print(f'{key = !r}') | |
| print(f'{cipher = !r}') | |
| print() | |
| A = ord('A') |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>vtwi</title> | |
| <style> | |
| label { | |
| display: block; |
| <!DOCTYPE html> | |
| <html lang="en" dir="ltr"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Population Pyramid Simulation</title> | |
| <style media="screen"> | |
| body { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| position: relative; |
| #define STB_IMAGE_WRITE_IMPLEMENTATION | |
| #include <cstdio> | |
| #include <iostream> | |
| #include <vector> | |
| #include <complex> | |
| #include "stb_image.h" | |
| #include "stb_image_write.h" |
| <!DOCTYPE html> | |
| <html lang="en" dir="ltr"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Boid Simulation</title> | |
| <style media="screen"> | |
| body { | |
| font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | |
| position: relative; |
| Require Import List. | |
| Inductive Error : Set := | |
| | NotImplemented : Error | |
| | NotDeclared : Error | |
| | NotApplicable : Error | |
| | NotExpectedType : Error | |
| | SomethingWrong : Error | |
| . |
| #!/bin/bash | |
| IFNAME="wlp36s0" | |
| if [ "$1" = "off" ]; then | |
| nmcli device disconnect $IFNAME | |
| exit 0 | |
| fi | |
| if [ "$1" = "on" ]; then |
| // absolute value of z (equivalent of built-in function `length`) | |
| float cabs (vec2 z) { | |
| return length(z); | |
| } | |
| // complex conjugate of z | |
| vec2 cconj (vec2 z) { | |
| return vec2(z.x, -z.y); | |
| } |