This checklist will help you diagnose problems with your ob-async
setup.
Execute the src blocks one at a time with ctrl-c ctrl-c
to
ensure that ob-async-org-babel-execute-src-block
is used for files
[tool.poetry] | |
name = "replaced" | |
version = "0.1.0" | |
description = "" | |
authors = ["replaced"] | |
[tool.poetry.dependencies] | |
python = "^3.6" | |
pandas = [ | |
{ version = "^1.0", python = "^3.6.1" }, |
################ | |
# DEBIAN IMAGE # | |
################ | |
FROM debian:jessie | |
######## | |
# META # | |
######## | |
MAINTAINER "Zelphir Kaltstahl <[email protected]>" |
# find the 10 largest directories from the point of the current working directory | |
du -hsx * | sort -rh | head -10 |
From: [email protected] | |
To: [email protected] | |
Subject: [BUG]UndefinedObject(Object)>>doesNotUnderstand: #binary | |
Tried to install Metacello in order to install Koans. | |
23 February 2017 12:22:55.478149 am | |
VM: unix - Smalltalk | |
Image: Squeak5.1 [latest update: #16549] |
;; deactivate version control integration, so that emacs starts up faster | |
(setq vc-handled-backends ()) | |
;(setq-default vc-handled-backends nil) | |
;(eval-after-load "vc" '(remove-hook 'find-file-hooks 'vc-find-file-hook)) | |
;; Installation of el-get | |
(add-to-list 'load-path "~/.emacs.d/el-get/el-get") | |
(unless (require 'el-get nil 'noerror) | |
(with-current-buffer |
#lang racket | |
(require racket/system) | |
;; racket -l errortrace -t system-command.rkt | |
;; a general print function | |
(define (printline elems #:sep [sep " "] #:end [end "\n"] #:element-converter [element-converter identity]) | |
(define (iter remaining-elements result-string) | |
(cond |
#lang racket | |
(define (Mb-to-B n) (* n 1024 1024)) | |
(define MAX-BYTES (Mb-to-B 64)) | |
(custodian-limit-memory (current-custodian) MAX-BYTES) | |
(define nil (list)) | |
(define (string-multiplier a-string factor) | |
(cond |
% BETTER ERROR MESSAGES | |
\errorcontextlines 10000 | |
% DOCUMENT ATTRIBUTES | |
\documentclass[11pt, a4paper, parskip=full, openany, twoside]{book} | |
% 12pt : main font size | |
% a4paper : paper format | |
% parskip=full : ??? | |
% openany : no need for an additional (second) pagebreak after a chapter to move new chapters always to the right page | |
\usepackage[ |
% BETTER ERROR MESSAGES | |
\errorcontextlines 10000 | |
% DOCUMENT ATTRIBUTES | |
\documentclass[11pt, a4paper, parskip=full, openany, twoside]{book} | |
% 12pt : main font size | |
% a4paper : paper format | |
% parskip=full : ??? | |
% openany : no need for an additional (second) pagebreak after a chapter to move new chapters always to the right page | |
\usepackage[ |