def wrap(string, before: "<", after: ">")
"#{before}#{string}#{after}" # no need to retrieve options from a hash
end
# optional
- Install AusKey software
- Show file contents of
/Library/Internet Plug-Ins/JavaAppletPlugin.plugin
- Move .JAR files from
/Library/Java/Extensions
to/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/ext
UPDATE 16/11/2013: AusKey no longer requires software to be installed on Mac OS X so these steps are no longer necessary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Congressional Bills 113th Congress] | |
[From the U.S. Government Printing Office] | |
[H.R. 3361 Reported in House (RH)] | |
Union Calendar No. 334 | |
113th CONGRESS | |
2d Session | |
H. R. 3361 | |
[Report No. 113-452, Parts I and II] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################################ | |
####################### READING THE RELEVANT FILES ######################################### | |
train.data <- read.csv("train_sample.csv") | |
## Set seed for reproducing the random numbers | |
set.seed(10001) | |
## This is to confirm the selection of trade_price_last{1-10} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Commits in HEAD | |
7bfce6fe * origin/master origin/HEAD master Merge pull request #1658 from braddunbar/history-window | |
|\ | |
a4243413 | * Fix #1653 - Ensure that `History` can be used outside of the browser. | |
|/ | |
da18e002 * Merge branch 'master' of github.com:documentcloud/backbone | |
|\ | |
161c3a21 | * Merge pull request #1656 from braddunbar/sortby-groupby - http://gitelephant.cypresslab.net/backbone-js/commit/161c3a21d7c3d43445478cee8f64f6ddb996822e | |
| |\ | |
c344201f | | * Fix #1655 - sortBy & groupBy use attributes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# only deploy when on the master | |
# add this file to .git/hooks in your repo | |
# add your preferred cloud storage account | |
dest="Dropbox" | |
branch=$(git rev-parse --abbrev-ref HEAD) | |
if [ "master" == "$branch" ]; then | |
echo "Deploying to $dest" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################## | |
# sails | |
######################## | |
.sails | |
.waterline | |
.rigging | |
.tmp | |
######################## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using UnityEditor; | |
using UnityEngine; | |
using System.Collections.Generic; | |
using UnityObject = UnityEngine.Object; | |
public static class SelectReferencesUtils { | |
[MenuItem("Assets/Select Intances On Scene", false, 30)] | |
static void SelectInstances() { | |
Selection.objects = GetReferencesOfAsset(Selection.objects); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP | |
Its easy to make GUIDs in PHP. Below is clean code using windows COM to get GUIDs. When the PHP creates GUIDs or UUIDs they are V4 guids. | |
$guid = com_create_guid(); | |
echo $guid; | |
If you are not a on windows based platform you can roll this code for making GUIDs in PHP: | |
function getGUID(){ |