This file contains hidden or 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
#| | |
テスト | |
(progn | |
(call-process "dir" :show :hide) | |
(call-process "date" :show :hide) | |
(get-child-processes)) | |
;=> (#S(process-entry exe-file "dir.exe" process-id 1188 parent-process-id 4660 | |
module-id 0 default-heap-id 0 threads 1 | |
pri-class-base 8 usage 0 flags 0) |
This file contains hidden or 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
;;; -*- Mode: Lisp; Package: WINAPI -*- | |
;;; winapi.l | |
;;; Last updated: <2005/05/25 07:02:58 +0900> | |
(eval-when (:compile-toplevel :load-toplevel :execute) | |
(require "foreign") | |
(require "wip/winapi")) | |
(in-package "winapi") | |
(provide "api") |
This file contains hidden or 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
// | |
// C# で汎関数 | |
// http://d.hatena.ne.jp/p-nix/20090226/p1 | |
// | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; |
This file contains hidden or 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
;;; | |
;;; .emacs | |
;;; | |
(push "~/elisp" load-path) | |
(transient-mark-mode nil) | |
;; C-h --> BS | |
(keyboard-translate ?\C-h ?\C-?) | |
(global-set-key "\C-h" nil) |
This file contains hidden or 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
;;;; -*- mode: lisp-interaction; syntax: elisp; coding: iso-2022-7bit -*- | |
;;;; | |
;;;; discrete elisp | |
;;;; | |
;;;; $Id: discrete.el,v 1.56 2006/06/25 11:08:37 gnrr Exp gnrr $ | |
;;;; | |
;;;; Filename: discrete.el | |
;;;; Last modified: Fri Aug 25 2006 23:41:35 JST | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
This file contains hidden or 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
;;;; -*- mode: lisp-interaction; syntax: elisp; coding: iso-2022-7bit -*- | |
;;;; | |
;;;; discrete elisp | |
;;;; | |
;;;; $Id: discrete.el,v 1.56 2006/06/25 11:08:37 gnrr Exp gnrr $ | |
;;;; | |
;;;; Filename: discrete.el | |
;;;; Last modified: Fri Aug 25 2006 23:41:35 JST | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
This file contains hidden or 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
# Copyright 2009 The RE2 Authors. All Rights Reserved. | |
# Use of this source code is governed by a BSD-style | |
# license that can be found in the LICENSE file. | |
all: obj/libre2.a obj/so/libre2.so | |
# to build against PCRE for testing or benchmarking, | |
# uncomment the next two lines | |
# CCPCRE=-I/usr/local/include -DUSEPCRE | |
# LDPCRE=-L/usr/local/lib -lpcre |
This file contains hidden or 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
$sbcl | |
(require 'asdf) | |
(pushnew "D:\\shishido\\tmp\\asdf\\iterate\\" asdf:*central-registry* :test 'equal) | |
(asdf:operate 'asdf:load-op :iterate) | |
(pushnew "D:\\shishido\\tmp\\asdf\\cl-utilities\\" asdf:*central-registry* :test 'equal) | |
(asdf:operate 'asdf:load-op :cl-utilities) | |
(pushnew "D:\\shishido\\tmp\\asdf\\alexandria\\" asdf:*central-registry* :test 'equal) | |
(asdf:operate 'asdf:load-op :alexandria) | |
(pushnew "D:\\shishido\\tmp\\asdf\\cl-irregsexp\\" asdf:*central-registry* :test 'equal) |
This file contains hidden or 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
;;; -*- Mode: Lisp; Package: editor -*- | |
;;; | |
;;; discrete.l | |
;;; | |
(provide "discrete") | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;@@@ sils 関係 | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
This file contains hidden or 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
;;; -*- Mode: Lisp; Package: editor -*- | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;; .xyzzy ;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
OlderNewer