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
lx := ZnClient new. | |
json_data := Array with: | |
(NeoJSONReader fromString: (lx get: 'https://api.github.com/users/cmoore')). | |
sheet := SpreadsheetGridMorph new | |
hResizing: #spaceFill; | |
vResizing: #spaceFill; | |
yourself. |
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
rm -f *~ *.bak *.orig \#*\# .\#* texput.log *.fasl | |
rm -rf sbcl asdf version "docstrings/" | |
rm -f sbcl.html asdf.html | |
rm -f contrib-docs.texi-temp | |
rm -f package-locks.texi-temp | |
rm -f variables.texinfo | |
rm -f sbcl.ps asdf.ps sbcl.pdf asdf.pdf html-stamp tempfiles-stamp | |
rm -f asdf.aux asdf.cp asdf.cps asdf.fn asdf.fns asdf.ky asdf.log asdf.pg asdf.toc asdf.tp asdf.tps asdf.vr asdf.vrs sbcl.aux sbcl.cp sbcl.cps sbcl.fn sbcl.fns sbcl.ky sbcl.log sbcl.pg sbcl.toc sbcl.tp sbcl.tps sbcl.vr sbcl.vrs | |
rm -f sbcl.info sbcl.info-* asdf.info | |
rm -rf *.include *.info *.pdf *~ *.cp *.fn *.ky *.log *.pg *.toc \ |
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
(in-package :efl) | |
#+ (or freebsd darwin) | |
(progn | |
(include "time.h") | |
(include "sys/time.h")) | |
(cc-flags #+freebsd "-I/usr/local/include -I/usr/local/include/elementary-1 -I/usr/local/include/efl-1 -I/usr/local/include/eina-1/eina -I/usr/local/include/eina-1 -I/usr/local/include/eet-1 -I/usr/local/include/emile-1 -I/usr/local/include/evas-1 -I/usr/local/include/eo-1 -I/usr/local/include/ecore-1 -I/usr/local/include/ecore-evas-1 -I/usr/local/include/ecore-con-1 -I/usr/local/include/ecore-file-1 -I/usr/local/include/ecore-imf-1 -I/usr/local/include/ecore-input-1 -I/usr/local/include/ecore-x-1 -I/usr/local/include/edje-1 -I/usr/local/include/eldbus-1 -I/usr/local/include/efreet-1 -I/usr/local/include/ethumb-1 -I/usr/local/include/ethumb-client-1") |
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
(ql:quickload '(:jsown | |
:json-mop)) | |
(defpackage :geojson | |
(:use :cl | |
:json-mop)) | |
(in-package :geojson) |
OlderNewer