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
if (komodo.view) { komodo.view.setFocus() }; | |
komodo.doCommand('cmd_save') | |
ko.run.output.kill(-1); | |
setTimeout(function(){ | |
ko.run.runEncodedCommand(window, '%(python) -i \"%F\" {\'cwd\': u\'%D\'}'); | |
}, 100); |
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
I keep forgetting how to do this... | |
To play audio in Safari on the iPad using javascript you have to create the audio node in response to a user event. You have to give the audio node a legal url and call load. Then reuse that same node to play sounds in the future. | |
In jquery mobile I bound to the 'tap' event on body. If I haven't already created the audio object I create it there. Then I can use it later. |
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
$(function(){ | |
/* poll for commands to run. I mostly use it with window.location.reload(true); */ | |
function remoteCommand() { | |
$.ajax({ | |
url: "/wp-content/themes/thr3/remoteCommand.php", | |
cache: false, | |
timeout: 100000, | |
success: function(data) { | |
if (data != 'no') { |
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
# I couldn't get the GUI tools to do the right thing so I edited the generated file by hand. | |
# the key magic is the Option Rotate right along with the placement | |
# nvidia-xconfig: X configuration file generated by nvidia-xconfig | |
# nvidia-xconfig: version 295.40 ([email protected]) Thu Apr 5 22:33:07 PDT 2012 | |
Section "ServerLayout" | |
Identifier "Layout0" | |
Screen 0 "Screen0" 0 0 | |
InputDevice "Keyboard0" "CoreKeyboard" |
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
Section "Monitor" | |
Identifier "Monitor0" | |
VendorName "Unknown" | |
ModelName "SHARP HDMI" | |
HorizSync 15.0 - 75.0 | |
VertRefresh 23.0 - 76.0 | |
Option "DPMS" | |
EndSection | |
Section "Screen" |
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
<!--?xml version="1.0"?>--> | |
<!--DOCTYPE fontconfig SYSTEM "fonts.dtd">--> | |
<!-- ~/.fonts.conf for per-user font configuration --> | |
<fontconfig> | |
<alias> | |
<family>sans-serif</family> | |
<prefer> | |
<family>Ubuntu</family> | |
</prefer> | |
</alias> |
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
'''Comp116 support module with tools for downloading assignments, lecture notes, and exams''' | |
import urllib | |
import os | |
import os.path as osp | |
import urlparse | |
import json | |
import time | |
ATTEMPTS = 10 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.