sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
#!/usr/bin/env python3 | |
################ Scheme Interpreter in Python | |
## (c) Peter Norvig, 2010; See http://norvig.com/lispy2.html | |
################ Symbol, Procedure, classes | |
# https://github.com/norvig/pytudes/blob/c33cd6835a506a57d9fe73e3a8317d49babb13e8/py/lispy.py |
(defun org-babel-execute:dot (body params) | |
"Execute a block of Dot code with org-babel. | |
This function is called by `org-babel-execute-src-block'." | |
(let* ((out-file (cdr (or (assq :file params) | |
(error "You need to specify a :file parameter")))) | |
(cmdline (or (cdr (assq :cmdline params)) | |
(format "-T%s" (file-name-extension out-file)))) | |
(cmd (or (cdr (assq :cmd params)) "dot")) | |
(coding-system-for-read 'utf-8) ;use utf-8 with sub-processes | |
(coding-system-for-write 'utf-8) |
/* file: "tinyc.c" */ | |
/* Copyright (C) 2001 by Marc Feeley, All Rights Reserved. */ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
/* | |
* This is a compiler for the Tiny-C language. Tiny-C is a |
<!-- From: https://gist.githubusercontent.com/sorvell/48f4b7be35c8748e8f6db5c66d36ee29/raw/67346e4e8bc4c81d5a7968d18f0a6a8bc00d792e/index.html --> | |
<!doctype html> | |
<html> | |
<head> | |
<!-- Polyfills only needed for Firefox and Edge. --> | |
<script src="https://unpkg.com/@webcomponents/webcomponentsjs@latest/webcomponents-loader.js"></script> | |
</head> | |
<body> | |
<!-- Works only on browsers that support Javascript modules like | |
Chrome, Safari, Firefox 60, Edge 17 --> |