This file contains 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
while 1 | |
{ | |
IfWinExist Choose Profile | |
{ | |
WinActivate | |
Send {Enter} | |
} | |
} |
This file contains 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
@ECHO OFF | |
rem Add item to Launchy Runner with: | |
rem Program: C:\path\to\evernoteadd.bat | |
rem Arguments: "$$" "$$" | |
rem The %~2 removes the opening and closing quotes in the argument | |
echo %~2 | "C:\Program Files (x86)\Evernote\Evernote\ENScript.exe" createNote /n "_INBOX" /i %1 |
This file contains 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
@ECHO OFF | |
rem Add item to Launchy Runner with: | |
rem Program: C:\path\to\evernoteaddnotitle.bat | |
rem Arguments: "$$" | |
rem The %~2 removes the opening and closing quotes in the argument | |
echo %~1 | "C:\Program Files (x86)\Evernote\Evernote\ENScript.exe" createNote /n "_INBOX" |
This file contains 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
#!/usr/bin/python | |
# A Wake on LAN program that allows you to send magic packets over the Internet | |
import socket, struct | |
class Waker(): | |
def makeMagicPacket(self, macAddress): | |
# Take the entered MAC address and format it to be sent via socket | |
splitMac = str.split(macAddress,':') | |
# Pack together the sections of the MAC address as binary hex |
This file contains 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
library(nFactors) | |
ev <- eigen(cor(all.data[self.reports])) | |
ap <- parallel(subject = nrow(all.data), var = ncol(all.data[self.reports]), | |
rep = 100, cent = 0.05) | |
nS <- nScree(x = ev$values, aparallel = ap$eigen$qevpea) | |
plotnScree(nS) |
This file contains 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
\documentclass{article} | |
\title{This Is My First Document} | |
\author{Ryan Schuetzler} | |
\begin{document} | |
\maketitle | |
\section{Introduction (Header 1)} |
This file contains 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
@article{ackoff_management_1961, | |
title = {Management Misinformation Systems}, | |
volume = {14}, | |
pages = {147-156}, | |
number = {4}, | |
journaltitle = {Management Science}, | |
author = {Ackoff, R L}, | |
date = {1961} | |
} |
This file contains 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
\documentclass{article} | |
\title{Now We're Citing} | |
\author{Ryan Schuetzler} | |
\usepackage[backend=bibtex,style=authoryear]{biblatex} | |
\addbibresource{library.bib} |
This file contains 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
\documentclass{article} | |
\title{Now We're Citing} | |
\author{Ryan Schuetzler} | |
\usepackage[backend=bibtex,style=authoryear]{biblatex} | |
\addbibresource{blog.bib} | |
\begin{document} |
This file contains 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
\begin{figure}[ht] | |
\centering | |
\includegraphics{smiley.png} | |
\end{figure} |
OlderNewer