Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/env python | |
# encoding: utf-8 | |
# get used to importing this in your Py27 projects! | |
from __future__ import print_function, division | |
import chimera.extension | |
""" | |
This is the file that Chimera searches for to load new extensions | |
at runtime. Normally, you will only need to edit: |
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
/* Place in ~/.mozilla/firefox/<profile_id>/chrome */ | |
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
/* Show bookmarks toolbar on New Tab only */ | |
#PersonalToolbar { | |
visibility:collapse; | |
} | |
#main-window[title="Mozilla Firefox"] #PersonalToolbar, | |
#main-window[title="Mozilla Firefox"] #PersonalToolbar #personal-bookmarks #PlacesToolbar, | |
#main-window[title^="New Tab"] #PersonalToolbar, |
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
{ | |
"name": "Flatland Monokai Improved", | |
"colors": { | |
"activityBar.background": "#26292C", | |
"activityBarBadge.background": "#36a3d9", | |
"button.background": "#36a3d9", | |
"editor.background": "#26292C", | |
"editor.foreground": "#F8F8F2", | |
"editor.selectionBackground": "#5a5a5a", | |
"editorCursor.foreground": "#ff953f", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#!/bin/bash | |
set -e | |
## Build all recipes in the adequate order | |
conda build --python=2.7 -c local -c insilichem tangram_libtangram | |
echo "*************************************" | |
echo "*************************************" | |
echo "*************************************" | |
conda build --python=2.7 -c local -c insilichem tangram_gaudiview |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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/env python | |
# coding: utf-8 | |
""" | |
PyStats | |
------- | |
Stats of Python packages. Includes data of GitHub Repository & | |
Anaconda downloads (if available). |
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 ast | |
import time | |
from IPython.core.magic import ( | |
Magics, | |
magics_class, | |
cell_magic, | |
needs_local_scope, | |
no_var_expand, | |
) |
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
{ | |
"title": "Option+tilde to backslash", | |
"rules": [ | |
{ | |
"description": "ROption+tilde inserts backslash", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { |