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
// Source: https://www.x.org/releases/X11R6/ | |
// xc/programs/Xserver/hw/xfree86/os-support/solx86/solx86_init.c | |
/* $XConsortium: solx86_init.c,v 1.2 94/10/12 20:50:38 kaleb Exp $ */ | |
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/solx86/solx86_init.c,v 3.0 1994/09/23 10:25:22 dawes Exp $ */ | |
/* | |
* Copyright 1990,91 by Thomas Roell, Dinkelscherben, Germany | |
* Copyright 1993 by David Wexelblat <[email protected]> | |
* | |
* Permission to use, copy, modify, distribute, and sell this software and its |
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 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
Debugger entered--Lisp error: (wrong-type-argument stringp nil) | |
file-name-as-directory(nil) | |
org-hugo--attachment-rewrite-maybe("//ox-hugo.scripter.co/test/ox-hugo/org.png" (:export-options nil :back-end [cl-struct-org-export-backend hugo blackfriday ((code . org-hugo-kbd-tags-maybe) (example-block . org-hugo-example-block) (export-block . org-hugo-export-block) (export-snippet . org-hugo-export-snippet) (headline . org-hugo-headline) (inner-template . org-hugo-inner-template) (keyword . org-hugo-keyword) (link . org-hugo-link) (paragraph . org-hugo-paragraph) (src-block . org-hugo-src-block) (special-block . org-hugo-special-block)) ((:with-toc nil "toc" org-hugo-export-with-toc) (:section-numbers nil "num" org-hugo-export-with-section-numbers) (:author "AUTHOR" nil user-full-name newline) (:creator "CREATOR" nil org-hugo-export-creator-string) (:with-smart-quotes nil "'" nil) (:with-special-strings nil "-" nil) (:with-sub-superscript nil "^" (quote {})) (:hugo-with-locale "HUGO_WITH_LOCALE" nil nil) (:hu |
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 ubuntu:18.04 | |
RUN apt-get update -y \ | |
&& apt-get install -y emacs-nox ca-certificates wget unzip \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN mkdir /root/.emacs.d | |
COPY init.el /root/.emacs.d/ | |
COPY test.org /root |
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
{ pkgs ? import <nixpkgs> {} }: | |
# Based on nixpkgs/pkgs/applications/graphics/darktable/default.nix | |
let stdenv = pkgs.stdenv; | |
#assert stdenv ? glibc; | |
in stdenv.mkDerivation rec { | |
name = "darktable-git"; | |
src = pkgs.lib.cleanSource ./.; |
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
diff --git a/Makefile b/Makefile | |
index db883e9..2d0807d 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -9,7 +9,6 @@ PACKAGE= \ | |
ivory-backend-acl2 \ | |
ivory-backend-c \ | |
ivory-eval \ | |
- ivory-examples \ | |
ivory-hw \ |
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
#!/usr/bin/env python3 | |
"""sound_plots.py: Simple example using NumPy & matplotlib to generate some | |
sound waveforms, plot them with their frequency spectra, and write out WAV | |
files of them.""" | |
import numpy | |
import matplotlib.pyplot as plt | |
import wave | |
import struct |
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
# Will require changes (due to how strings are handled) on Python 3.x | |
import subprocess | |
f = open("test.jpg") | |
jpegString = f.read() | |
ret = subprocess.Popen(["./jpeg_check.o", "-"], stdin = subprocess.PIPE) | |
ret.communicate(jpegString) | |
print(ret.returncode) |
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
# Contributor: Rick W. Chen <stuffcorpse at archlinux dot us> | |
pkgname=gcc-msp430 | |
pkgver=4.6.3 | |
pkgrel=4 | |
pkgdesc="GNU toolchain for the TI MSP430 processor" | |
arch=('i686' 'x86_64') | |
url="http://sourceforge.net/projects/mspgcc/" | |
license=('GPL') | |
makedepends=('gcc46' 'binutils-msp430') |
NewerOlder