Skip to content

Instantly share code, notes, and snippets.

@connerbrooks
connerbrooks / ucf-office.md
Last active August 29, 2015 14:06
UCF Office 365 Subscription

Microsoft Office with Your UCF 365 Account

  • Login to UCF Outlook
  • Go to the gear in the top left and click Office 365 Settings
  • Click on the software tab.
  • Scroll down and click install. Office will start downloading.
  • Login with your UCF Outlook account when the installer asks you to.
  • You can have 5 active installation.
@connerbrooks
connerbrooks / eustis.md
Last active August 29, 2015 14:05
VPN to eustis @ UCF

How to vpn to eustis at UCF

  • Install openconnect

  • Enter the following in terminal

# openconnect ucfvpn-1.vpn.ucf.edu
  • Now you can ssh/sftp to eustis
@connerbrooks
connerbrooks / intern-games.md
Last active August 29, 2015 14:04
intern games

Intern Game Notes

  • Like puzzle day

  • Full weekend event

    • Early saturday till some time Sunday.

Results

  • Things could go wrong.
@connerbrooks
connerbrooks / plan9_go.md
Last active August 29, 2015 14:02
Using Experimental Go 1.3 Plan9 Support

Using Go 1.3 with Plan9

Installing from source is fairly simple. You should be able to follow the instructions here. Fair warning, I am using 9front so your experience may differ. (mercurial is preinstalled)

My Steps

  • Create $home/go
  • Clone the repo into $home/go (I dropped the -u and release)
@connerbrooks
connerbrooks / glass.html
Created June 13, 2014 03:46
[wearscript] pebble spanish
<html style="width:100%; height:100%; overflow:hidden">
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<script>
// Fisher-Yates shuffling algorithm (http://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array)
@connerbrooks
connerbrooks / glass.html
Created April 17, 2014 14:57
[wearscript] Wake on Look at Screen
<html style="width:100%; height:100%; overflow:hidden">
<head>
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
WS.log('Welcome to WearScript');
WS.say('Welcome to WearScript');
@connerbrooks
connerbrooks / glass.html
Created April 16, 2014 17:26
[wearscript] test this
<html style="width:100%; height:100%; overflow:hidden">
<head>
<!-- You can include external scripts here like so... -->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>-->
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
@connerbrooks
connerbrooks / glass.html
Created April 12, 2014 07:48
[wearscript] iBeacons
<html style="width:100%; height:100%; overflow:hidden">
<head>
<!-- You can include external scripts here like so... -->
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/zepto/1.0/zepto.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.5.2/underscore-min.js"></script>-->
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
function server() {
@connerbrooks
connerbrooks / glass.html
Created April 11, 2014 01:42
[wearscript] Wifi Data Collection
<html style="width:100%; height:100%; overflow:hidden">
<head>
</head>
<body style="width:100%; height:100%; overflow:hidden; margin:0">
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<script>
var wifiTree;
function updateTree() {
WS.cardTree(wifiTree);
@connerbrooks
connerbrooks / whatidid.md
Created April 7, 2014 04:25
What I just did to the repository

Want to help you guys learn

I'm sorry I was the way I was

  • First I found a .gitignore specifically for android studio to use.
  • Then using
git rm {-r} <files to be removed>

I removed all the files from the project that did not belong in the repo (those that we added to the .gitignore).