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": { | |
| "name": "Eisenberger & Platzman Sum Rules" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { | |
| "cells": [ | |
| { |
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": { | |
| "name": "Eisenberger & Platzman Sum Rules" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { | |
| "cells": [ | |
| { |
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
| diff --git a/modules/completion/init.zsh b/modules/completion/init.zsh | |
| index 38ab423..9743966 100644 | |
| --- a/modules/completion/init.zsh | |
| +++ b/modules/completion/init.zsh | |
| @@ -104,7 +104,7 @@ zstyle ':completion:*:*:*:users' ignored-patterns \ | |
| zstyle '*' single-ignored show | |
| # Ignore multiple entries. | |
| -zstyle ':completion:*:(rm|kill|diff):*' ignore-line yes | |
| +zstyle ':completion:*:(rm|kill|diff):*' ignore-line other |
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
| <!-- Actual data has been stripped for obvious reasons --> | |
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>signature</key><data><!-- ~172B ENCODED DATA --></data> | |
| <key>certs</key> | |
| <array> | |
| <data><!-- ~1K ENCODED DATA --></data> | |
| </array> |
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
| import gtk | |
| def drag_begin(widget, context): | |
| print "Calling context.drag_abort()" | |
| # why doesn't this do anything? | |
| context.drag_abort(gtk.gdk.CURRENT_TIME) | |
| def drag_data_get(widget, context, selection, target_type, time): | |
| print "Data get" | |
| label = widget.get_label() |