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
[ | |
{ | |
"metadata": { | |
"author": { | |
"c": [ | |
{ | |
"c": "John", | |
"t": "Str" | |
}, | |
{ |
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
#!/usr/bin/osascript | |
(* | |
Script written by Naupaka Zimmerman | |
March 17, 2017 | |
MIT License | |
Copyright (c) 2017 Naupaka Zimmerman |
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
\RequirePackage{latexbug} | |
\documentclass{article} | |
\usepackage{mathspec} | |
\defaultfontfeatures{Ligatures=TeX} | |
\setromanfont{Palatino} | |
\setsansfont{Helvetica} | |
\begin{document} | |
\section{Introduction} |
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
# nvidia-settings: X configuration file generated by nvidia-settings | |
# nvidia-settings: version 367.35 (buildd@lgw01-18) Tue Aug 9 10:11:49 UTC 2016 | |
Section "ServerLayout" | |
Identifier "Layout0" | |
Screen 0 "Screen0" 0 0 | |
Screen 1 "Screen1" 1920 0 | |
InputDevice "Keyboard0" "CoreKeyboard" | |
InputDevice "Mouse0" "CorePointer" | |
Option "Xinerama" "0" |
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
<w:document xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas" xmlns:mo="http://schemas.microsoft.com/office/mac/office/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main" xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml" xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml" xmlns:wpg="http://schemas.microsoft.com/of |
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
>> Screen('Preference', 'Verbosity', 8); | |
>> VBLSyncTest | |
ans = | |
0 | |
RandR: 1024x768 (0x228) 65.0MHz | |
h: width 1024 start 1048 end 1184 total 1344 skew 0 | |
v: height 768 start 771 end 777 total 806 |
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
>> Screen('Preference', 'Verbosity', 8); | |
PTB-INFO: Display ':0' : X-Screen 0 : Assigning primary output as 5 with RandR-CRTC 0 and GPU-CRTC 0. | |
>> VBLSyncTest | |
ans = | |
0 | |
RandR: 1920x1080 (0x224) 148.5MHz | |
h: width 1920 start 2008 end 2052 total 2200 skew 0 |
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
on run | |
tell application "System Events" | |
keystroke "c" using command down | |
delay 0.5 | |
do shell script "id=$(pbpaste); open \"bookends://sonnysoftware.com/$id\"" | |
end tell | |
end run |
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
<text:p> | |
<draw:frame text:anchor-type="as-char" draw:style-name="fr1" svg:width="95%"> | |
<draw:text-box> | |
<text:p> | |
<draw:frame text:anchor-type="as-char" draw:z-index="1" > | |
<draw:image xlink:href="Test1.png" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad"/> | |
</draw:frame> | |
</text:p> | |
<text:p>Figure 1—Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah Blah</text:p> | |
</draw:text-box> |
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
function testptb( ) | |
Screen('preference','skipsynctests',2) | |
backgroundColour = [0.3 0.3 0.3]; | |
name = 'test'; | |
%-----dots stimulus | |
n = dotsStimulus(); | |
n.name = name; | |
n.size = 5; |