I hereby claim:
- I am gasi on github.
- I am gasi (https://keybase.io/gasi) on keybase.
- I have a public key whose fingerprint is 7BF9 745C 13E2 588A 7ACB 4524 20D2 7861 FE0A 06B2
To claim this, I am signing this object:
# Install OpenSSH server and SSH client | |
yum install -y openssh-server | |
yum install -y openssh-clients | |
# Install passwd | |
yum install -y passwd | |
# Set root password | |
passwd | |
# TODO: Enter new root password |
I hereby claim:
To claim this, I am signing this object:
stylus --print ./hash.styl | |
express = require 'express-streamline' | |
app = express() | |
# Throw sync error | |
fail = -> throw new Error 'FAIL!' | |
app.get '/good', (req, res, _) -> | |
fail() # Throw sync error without async function call |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Image Pyramid Demo</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0,user-scalable=no"> | |
<script src="pyramiddemo.js"></script> | |
<style> | |
body { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Image Pyramid Demo</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0,user-scalable=no"> | |
<script src="pyramiddemo.js"></script> | |
<style> | |
body { |
Verifying that +gasi is my openname (Bitcoin username). https://onename.io/gasi |
/* compile with: | |
* | |
* gcc -g -Wall composite.c `pkg-config vips --cflags --libs` | |
*/ | |
#include <stdio.h> | |
#include <vips/vips.h> | |
/* Composite images `src` and `dst`. | |
*/ |
/* | |
* Compile with: | |
* | |
* gcc -g -Wall resize-alpha.c `pkg-config vips --cflags --libs` -o resize-alpha | |
* | |
* Run with: | |
* | |
* ./resize-alpha in out interpolation | |
* | |
* Examples: |