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
>> edit runIsoluminant.m | |
>> IsoLum | |
--->>> runIsoluminant Started! | |
---> screenManager: Sync Tests enabled. | |
PTB-INFO: This is Psychtoolbox-3 for GNU/Linux X11, under Matlab 64-Bit (Version 3.0.14 - Build date: Jun 8 2017). | |
PTB-INFO: Support status on this operating system release: Linux 4.10.0-28-lowlatency Supported. |
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 to Export Bookends Notes to OPML file v1.18 | |
--Written by Dave Glogowski (modified by iandol) | |
--07 August 2017 | |
-- | |
--This script converts Bookends references and associated notes into an OPML structured file which can then be imported into Scrivener's research folder. | |
--Each reference is a top level card which contains the Title, Author, Date, Type, Publisher, Abstract, and Bookends citation key | |
--If there are notes associated with a reference, each note creates its own subordinate note card with the Page number (if any), note header, quotes, | |
--comments, and keywords (tags). This allows you to individually review each comment and change its status (label) within Scrivener. | |
-- |
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
[ 3.535] | |
X.Org X Server 1.19.3 | |
Release Date: 2017-03-15 | |
[ 3.535] X Protocol Version 11, Revision 0 | |
[ 3.535] Build Operating System: Linux 4.4.0-83-generic x86_64 Ubuntu | |
[ 3.535] Current Operating System: Linux aristotle-unix 4.10.0-33-generic #37-Ubuntu SMP Fri Aug 11 10:55:28 UTC 2017 x86_64 | |
[ 3.535] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.10.0-33-generic.efi.signed root=UUID=e53ea4cd-ff04-4303-a97d-f53700b05bd0 ro quiet splash vt.handoff=7 | |
[ 3.536] Build Date: 17 July 2017 02:38:00PM | |
[ 3.536] xorg-server 2:1.19.3-1ubuntu1.1 (For technical support please see http://www.ubuntu.com/support) | |
[ 3.536] Current version of pixman: 0.34.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
function ProceduralGaussBlob(ngabors, nlines) | |
PsychDefaultSetup(2); | |
if nargin < 1 || isempty(ngabors) | |
ngabors = 200; | |
end | |
screenid = max(Screen('Screens')); | |
Screen('Preference', 'SkipSyncTests', 1) |
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
>> BitsPlusIdentityClutTest | |
BitsPlusPlus: Connecting to Bits# device via serial port [/dev/ttyACM0], as provided by configuration file [/home/aristotle/.Psychtoolbox/BitsSharpConfig.txt]. | |
BitsPlusPlus: Device information: | |
You can run extended diagnostics and fixes if you answer the following question | |
with yes. However, we recommend first running this script once, answering no. Then | |
if that at least somewhat succeeds, save the closest to good result via 's' key, | |
then rerun the script and answer yes, to either fix remaining errors and glitches, |
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
BitsPlusPlus: Connecting to Bits# device via serial port [/dev/ttyACM1], as provided by configuration file [/home/aristotle/.Psychtoolbox/BitsSharpConfig.txt]. | |
BitsPlusPlus: Device information: | |
BitsPlusPlus: $ProductType;Display++; | |
BitsPlusPlus: $SerialNumber;D6A01148 | |
BitsPlusPlus: $FirmwareDate;26/09/2017 15:45; | |
You can run extended diagnostics and fixes if you answer the following question | |
with yes. However, we recommend first running this script once, answering no. Then | |
if that at least somewhat succeeds, save the closest to good result via 's' key, | |
then rerun the script and answer yes, to either fix remaining errors and glitches, |
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="no"?> | |
<opml version="1.0"> | |
<head> | |
<title>Bookends References Export</title> | |
<dateCreated>Thursday, 26 April 2018 at 10:42:11</dateCreated> | |
</head> | |
<body> | |
<outline text="Storm et al., 2017 (ID:59115)" _note="Consciousness Regained: Disentangling Mechanisms, Brain Systems, and Behavioral Responses. | |
Cite: [@storm2017a] | |
--------------------------- |
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
% install https://github.com/iandol/opticka/archive/master.zip first | |
clear s d | |
% this sets up the PTB screen | |
s = screenManager('verbose',false,'blend',true,... | |
'bitDepth','FloatingPoint32Bit',... % try FloatingPoint32Bit EnableBits++Mono++Output EnableBits++Bits++Output | |
'debug',false,... % don't check for dropped frames etc. | |
'windowed', [],... %empty is full screen | |
'screen', [],... %empty chooses the highest avilable screen | |
'srcMode','GL_SRC_ALPHA', 'dstMode', 'GL_ONE_MINUS_SRC_ALPHA',... | |
'backgroundColour',[0.5 0.5 0.5]); %change background colour here |
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
-- Launch "System Preferences", open the "Displays" options and change to the "Display" tab | |
tell application "System Preferences" | |
activate | |
set the current pane to pane id "com.apple.preference.displays" | |
reveal anchor "displaysDisplayTab" of pane id "com.apple.preference.displays" | |
end tell | |
local index1, index2, index3, indexToUse | |
set index1 to 3 |