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
%nprocshared=32 | |
%mem=224GB | |
# b3lyp/6-31+g(d,p) nmr=giao scrf=(pcm,solvent=chloroform) | |
default | |
0 1 | |
O -0.05311280116438866 0.04719143360853195 -0.3887166976928711 | |
C -0.03182637691497803 1.2160747051239014 -0.10816437005996704 | |
C -1.2521189451217651 2.0487711429595947 0.3111821115016937 |
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
""" | |
Fabric file to help with launching EC2 P2 instancesand | |
getting GPU support set up. Also installs latest | |
anaconda and then tensorflow. Use: | |
fab launch | |
# wait until you can ssh into the instance with | |
fab -R mygpu ssh |
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
;;http://www.gnu.org/software/emacs/manual/html_node/efaq/Binding-keys-to-commands.html | |
(add-hook 'python-mode-hook 'hs-minor-mode) | |
(global-set-key [C-return] 'hs-toggle-hiding) | |
(global-set-key [C-M-S-return] 'hs-show-all) | |
(global-set-key [C-M-return] 'hs-hide-all) | |
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
From: MIT Free Group <[email protected]> | |
Date: Wed, Sep 18, 2013 at 9:07 PM | |
Subject: The NSA is coming to MIT! | |
To: MIT Free Group <[email protected]> | |
Do you think the NSA is doing a good job of spying on Americans? Come | |
make your voice heard! Come to 66-144 tomorrow (Thursday, 9/19) 5:30 | |
and participate by asking pointed questions like: |
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
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... ./install-sh -c -d | |
checking for gawk... no | |
checking for mawk... no | |
checking for nawk... no | |
checking for awk... awk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether make supports nested variables... (cached) yes |
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
checking for a BSD-compatible install... /usr/bin/install -c | |
checking whether build environment is sane... yes | |
checking for a thread-safe mkdir -p... ./install-sh -c -d | |
checking for gawk... no | |
checking for mawk... no | |
checking for nawk... no | |
checking for awk... awk | |
checking whether make sets $(MAKE)... yes | |
checking whether make supports nested variables... yes | |
checking whether make supports nested variables... (cached) yes |
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
$(document).ready( | |
function () { | |
$('#editactivate') | |
.click(function() { | |
var editor = new Proper(); | |
editor.activate($(".content"), { | |
placeholder: 'Enter Text', | |
controlsTarget: $('#tools'), |
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
__global__ void initialize_data(SuffStats * ss) | |
{ | |
int fid = threadIdx.x; // + blockIdx.x * blockDim.x; | |
SuffStats * myss = &ss[fid]; // group * FEATUREN + fid]; | |
float x = 0.0; | |
float y = 0.0; | |
int z = 0.0; |
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
__global__ void initialize_data(SuffStats * ss) | |
{ | |
int fid = threadIdx.x; // + blockIdx.x * blockDim.x; | |
SuffStats * myss = &ss[fid]; // group * FEATUREN + fid]; | |
float x = 0.0; | |
float y = 0.0; | |
int z = 0.0; |
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
(require 'ido) ; ido is part of emacs | |
(ido-mode t) ; for both buffers and files | |
(setq | |
ido-ignore-buffers ; ignore these guys | |
'("\\` " "^\*Mess" "^\*Back" ".*Completion" "^\*Ido") | |
ido-work-directory-list '("~/" "~/Desktop" "~/Documents") | |
ido-case-fold t ; be case-insensitive | |
ido-use-filename-at-point nil ; don't use filename at point (annoying) | |
ido-use-url-at-point nil ; don't use url at point (annoying) | |
ido-enable-flex-matching t ; be flexible |
NewerOlder