[https://gist.github.com/theRemix/bf147e5f06542cdce3d0](MultiDimensional Arrays)
- create and work on a new branch called two_dimensional
- sample chai spec https://gist.github.com/theRemix/848d0c2e3224e783a021
[https://gist.github.com/theRemix/bf147e5f06542cdce3d0](MultiDimensional Arrays)
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
var originalMeteorCollection = Meteor.Collection; | |
Meteor.Collection = function () { | |
var collectionHooks = { | |
before: { | |
insert: [], | |
update: [], | |
remove: [] | |
}, | |
after: { |
Functions are great, they take data (input), do stuff with that data and then return it to you all shiny and fancy (output).
Below are some specifications for Functions to be built.
a
random Number valueb
random Number valueWe will be using both of these variables to pass as parameters
to the following functions that we will write. Pay close attention to the other variable names you will create as they will become input to other functions.
1. Edit `/etc/modprobe.d/alsa-base.conf` | |
2. Add this line to end: `/etc/modprobe.d/alsa-base.conf` |
This is my i3
config, using FontAwesome icons for i3status
.
Save files to ~/.i3
.
--- | |
- hosts: all | |
vars: | |
UBUNTU_COMMON_ROOT_PASSWORD: 'xxxxx' | |
UBUNTU_COMMON_DEPLOY_PASSWORD: 'xxxxx' | |
UBUNTU_COMMON_LOGWATCH_EMAIL: [email protected] | |
ubuntu_common_deploy_user_name: deploy | |
ubuntu_common_deploy_public_keys: | |
- ~/.ssh/id_rsa.pub |
import processing.sound.*; | |
// Declare the processing sound variables | |
SoundFile sample; | |
Amplitude rms; | |
// Declare a scaling factor | |
float scale = 5.0; | |
// Declare a smooth factor |
#!/usr/bin/env python | |
"""Split large file into multiple pieces for upload to S3. | |
S3 only supports 5Gb files for uploading directly, so for larger CloudBioLinux | |
box images we need to use boto's multipart file support. | |
This parallelizes the task over available cores using multiprocessing. | |
Usage: | |
s3_multipart_upload.py <file_to_transfer> <bucket_name> [<s3_key_name>] |