An example of how cell splitting could be achieved using examples from the Sparse Matrix Collection
Based on Force Layout & Matrix Market Format
facebook = require './facebook' | |
mongoose = require 'mongoose' | |
express = require 'express' | |
routes = require './routes' | |
http = require 'http' | |
path = require 'path' | |
app = express() | |
app.configure -> | |
app.set 'port', process.env.PORT || 3000 |
#!/bin/bash | |
# __ | |
# _____ ____ _/ |_ ____ ____ _______ | |
# / \ _/ __ \ \ __\_/ __ \ / _ \ \_ __ \ | |
# | Y Y \\ ___/ | | \ ___/ ( <_> ) | | \/ | |
# |__|_| / \___ > |__| \___ > \____/ |__| | |
# \/ \/ \/ | |
# | |
# .___ | |
# __| _/ __ __ _____ ______ |
An example of how cell splitting could be achieved using examples from the Sparse Matrix Collection
Based on Force Layout & Matrix Market Format
Links being severed over time inside of a convex hull
<!DOCTYPE html> | |
<!-- Content forthcoming --> |
# Gratefully borrowed and edited from | |
# http://blogs.msdn.com/b/microsoft_press/archive/2014/01/29/from-the-mvps-copying-a-virtual-machine-from-one-windows-azure-subscription-to-another-with-powershell.aspx | |
# Source VM | |
$sourceSubscriptionName = "Name of the source subscription" | |
$destSubscriptionName = "Name of the destination subscription" | |
Get-AzureVM | |
$vmName = "name-of-source-vm" |
library(ggplot2) | |
# calculates the output of a sigmoid neuron | |
# given the denormalized result of a perceptron | |
sigmoidize <- function(z) { | |
1 / (1+exp(-z)) | |
} | |
# normalizes the value of a perceptron | |
normalize <- function(input) { |
/** | |
* Originally created in JS Bin: http://jsbin.com/yetubi/edit?js,console | |
* Dependencies: lodash | |
* | |
* This script finds 4 whole number values that have a specific relationship. | |
* Specifically, the sum of the squares of 3 numbers when they equal the | |
* square root of the 4th number. In linear algebra terms, this calculates | |
* the absolute value of a vector [x, y, z] when all values and the result | |
* are whole numbers. This formula is also known to calculate the distance | |
* of a 3D point from zero: d = sqrt(x*x + y*y + z*z) |
# /etc/X11/xorg.conf.d/synaptics.conf | |
# More info: http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html | |
Section "InputClass" | |
Identifier "Touchpad catchall" | |
Driver "synaptics" | |
MatchIsTouchpad "on" | |
MatchDevicePath "/dev/input/event*" | |
Option "TapButton1" "1" # left click | |
Option "TapButton2" "3" # right click | |
Option "TapButton3" "2" # middle click |
! ~/.Xmodmap | |
! Activate with xmodmap ~/.Xmodmap | |
! | |
! Enable natural scrolling (horizonal and vertical) | |
! | |
pointer = 1 2 3 5 4 7 6 9 8 10 11 12 | |
! | |
! Swap Caps_Lock and Control_L |