I hereby claim:
- I am alexnederlof on github.
- I am alexnederlof (https://keybase.io/alexnederlof) on keybase.
- I have a public key whose fingerprint is BDC4 6641 4245 59E6 A643 5B05 3F07 D02F 8650 B123
To claim this, I am signing this object:
#!/bin/bash | |
# Note that this script requires you to have | |
# an X window running on Display :90 | |
# This can be done by running: /usr/bin/Xvfb :90 -ac -screen 0 1024x768x8 & | |
# | |
# You can save this script as /etc/init.d/selenium to start and stop selenium | |
PORT=4443 | |
DESC="Selenium server" |
#!/bin/sh | |
WEBDIR=yourwebdir | |
WORKSPACE=your/workspace | |
TEX_FILE_NAME=your_file | |
echo | |
echo "**** Pulling changes into Live [Hub's post-update hook]" | |
echo |
#!/bin/bash | |
# | |
# This script will create a file with random URLs and a file with random domain names. | |
# It makes use of the site http://www.randomwebsite.com | |
# | |
# You should have curl and grep installed to run this. | |
SITES_FILE=sites.txt | |
SITES_NORMALIZED=sites_normalized.txt |
import java.lang.annotation.ElementType; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.RetentionPolicy; | |
import java.lang.annotation.Target; | |
import java.util.concurrent.TimeUnit; | |
public final class CacheAnnotations { | |
/** | |
* Set the "Max-age" Cache header. |
public class Test { | |
static class MyProvider implements Provider<EmbeddedBrowser> { | |
@Override | |
public EmbeddedBrowser get() { | |
EmbeddedBrowser browser2; | |
browser2 = newFireFoxBrowser(); | |
return browser2; | |
} |
#!/bin/bash | |
##### | |
# | |
# Deploy a PDF file annotated with the latest git version | |
# to your Amazon S3 bucket. | |
# | |
# This script requires you are running on a Mac with | |
# homebrew installed and a S3 bucket setup. | |
# |
#!/bin/bash | |
### | |
# A Script that automatically recompiles your | |
# Latex in the background on Mac OS X. | |
### | |
# Options | |
BIN_PATH=/usr/texbin | |
FILE=thesis | |
WATCH_FILE=chapters |
I hereby claim:
To claim this, I am signing this object:
kind: Deployment | |
apiVersion: extensions/v1beta1 | |
metadata: | |
name: bar | |
spec: | |
template: | |
metadata: | |
labels: | |
app: bar | |
spec: |
# Deploy with | |
# aws cloudformation update-stack --stack-name your-static-site --template-body file://cloudfront.yaml | |
AWSTemplateFormatVersion: 2010-09-09 | |
Description: Stack for static website hosting | |
Parameters: | |
IamCertificateId: | |
Type: String | |
Description: Use the ID from from the create-certificate.sh script | |
Default: xslidfjlskdfj |