start new:
tmux
start new with session name:
tmux new -s myname
Alright this is the first part where we will be writing core execution logic.
So we implemented our messages last time, lets take a look at src/contract.rs
and more specifically that unimplemented execution function.
#[cfg_attr(not(feature = "library"), entry_point)]
pub fn execute(
_deps: DepsMut,
## test | |
$0.833333333333333 * x^3 - 5.00000000000000 * x^2 + 9.16666666666667 * x - 5.00000000000000$ |
use std::process::Command; | |
use std::process::Stdio; | |
fn main() { | |
println!("Hello, world!"); | |
let output = Command::new("ls") | |
.arg("-l") | |
.arg("-a") | |
.stdout(Stdio::piped()) | |
.output() |
use std::process::Command; | |
use std::process::Stdio; | |
fn main() { | |
println!("Hello, world!"); | |
let output = Command::new("ls") | |
.arg("-l") | |
.arg("-a") | |
.stdout(Stdio::piped()) | |
.output() |
#!/usr/bin/env python | |
# parse_toc.py | |
from pdfminer.pdfparser import PDFParser | |
from pdfminer.pdfdocument import PDFDocument | |
def parse(filename, maxlevel): | |
fp = open(filename, 'rb') | |
parser = PDFParser(fp) | |
doc = PDFDocument(parser) |
' this code extracts text from PPT(X) and saves to latex beamer body | |
Public Sub Extract2Beamer() | |
Dim objPresentation As Presentation | |
Set objPresentation = Application.ActivePresentation | |
Dim objSlide As Slide | |
Dim objshape As Shape | |
Dim objShape4Note As Shape | |
Dim hght As Long, wdth As Long |
' this code extracts text from PPT(X) and saves to latex beamer body | |
' Provided for free with no guarantees or promises | |
'WARNING: this will overwrite files in the powerpoint file's folder if there are name collisiona | |
' Original version by Louis from StackExchange (https://tex.stackexchange.com/users/6321/louis) available here: (https://tex.stackexchange.com/questions/66007/any-way-of-converting-ppt-or-odf-to-beamer-or-org) | |
' Modified by Jason Kerwin (www.jasonkerwin.com) on 20 February 2018: | |
' Takes out extra text that printed in the title line | |
' Switches titles to \frametitle{} instead of including them on the \begin{frame} line (sometimes helps with compiling) | |
' Changes the image names to remove original filename, which might have spaces | |
' Removes "\subsection{}" which was printing before each slide | |
'NB you must convert your slides to .ppt format before running this code |
(add-to-list 'load-path "~/.emacs.d/site-lisp/go-mode.el/") | |
(add-to-list 'load-path "~/.emacs.d/site-lisp/ox-ipynb/") | |
(autoload 'go-mode "go-mode" nil t) | |
(add-to-list 'auto-mode-alist '("\\.go\\'" . go-mode)) | |
(let ((default-directory "/usr/local/share/emacs/site-lisp")) | |
(normal-top-level-add-subdirs-to-load-path)) | |
(setq tramp-default-method "ssh") | |
(global-hl-line-mode 1) |