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
john@Biskuttina:~/repositories/REMU/projects/contract-logic/cnl$ ll | |
total 28056 | |
drwxr-xr-x 23 john staff 782B Jun 27 14:04 ./ | |
drwxr-xr-x 61 john staff 2.0K Jun 27 11:09 ../ | |
-rw-r--r--@ 1 john staff 6.0K Apr 14 14:08 .DS_Store | |
-rw-r--r-- 1 john staff 80B May 5 13:06 CODiagFull.gf | |
-rw-r--r-- 1 john staff 145B Jun 27 14:03 CODiagFull.gfo | |
-rw-r--r-- 1 john staff 69B May 5 13:06 CODiagFullEng.gf | |
-rw-r--r-- 1 john staff 157B Jun 27 14:03 CODiagFullEng.gfo | |
-rw-r--r-- 1 john staff 226B May 5 13:29 CODiagFullEngParse.gf |
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
name: directory | |
version: 1.2.1.0 | |
id: directory-1.2.1.0-7a09c89a907b17a89f075cae951c808c | |
license: BSD3 | |
copyright: | |
maintainer: [email protected] | |
stability: | |
homepage: | |
package-url: | |
synopsis: library for directory handling |
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
abstract Camel = { | |
cat | |
Kind ; | |
Action Kind; | |
Component Kind; | |
S; | |
fun |
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
# yum install php-devel | |
Loaded plugins: fastestmirror, priorities, security | |
Loading mirror speeds from cached hostfile | |
epel/metalink | 18 kB 00:00 | |
epel-debuginfo/metalink | 18 kB 00:00 | |
epel-source/metalink | 18 kB 00:00 | |
* epel: mirror.nl.leaseweb.net | |
* epel-debuginfo: mirror.nl.leaseweb.net | |
* epel-source: mirror.nl.leaseweb.net | |
* remi: rpms.famillecollet.com |
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
-- General | |
foldl :: (a -> b -> a) -> a -> [b] -> a | |
foldr :: (a -> b -> b) -> b -> [a] -> b | |
curry :: ((a, b) -> c) -> a -> b -> c | |
uncurry :: (a -> b -> c) -> ((a, b) -> c) | |
(.) :: (b -> c) -> (a -> b) -> (a -> c) | |
-- Monoids | |
class Monoid a where | |
mempty :: a |
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: (error "Attempt to modify read-only object") | |
setcar(((and (not buffer-read-only) (not (eq t buffer-undo-list)) (if (eq last-command (quote undo)) (listp pending-undo-list) (consp buffer-undo-list))) :help "Undo last operation") (and (not buffer-read-only) (consp buffer-undo-list) (or (not (or (eq last-buffer-undo-list buffer-undo-list) (eq last-buffer-undo-list (cdr buffer-undo-list)))) (listp pending-undo-list)))) | |
(lambda (map) (setcar (cdr (memq :enable (assq (quote undo) (cdr map)))) (quote (and (not buffer-read-only) (consp buffer-undo-list) (or (not (or (eq last-buffer-undo-list buffer-undo-list) (eq last-buffer-undo-list ...))) (listp pending-undo-list))))))((keymap (undo menu-item "Undo" undo :enable (and (not buffer-read-only) (not (eq t buffer-undo-list)) (if (eq last-command (quote undo)) (listp pending-undo-list) (consp buffer-undo-list))) :help "Undo last operation") (separator-undo "--") (cut menu-item "Cut" kill-region :enable (and mark-active (not buffer-read-o |
NewerOlder