Skip to content

Instantly share code, notes, and snippets.

@gbataille
gbataille / gist:5005798
Created February 21, 2013 16:11
Syntactic not catching Clisp compilation errors
;; Compiling file /Users/gregou/Documents/Prog/GregsSandbox/CommonLisp/LandOfLisp/orcBattle.lisp ...
WARNING: in INIT-MONSTERS-1 in lines 89..95 : variable X is not used.
Misspelled or missing IGNORE declaration?
WARNING: in #:|137 137 (DEFMETHOD MONSTER-ATTACK (M))-23-1-1| in line 137 : variable M is not used.
Misspelled or missing IGNORE declaration?
*** - READ: input stream #<INPUT BUFFERED FILE-STREAM CHARACTER #P"/Users/gregou/Documents/Prog/GregsSandbox/CommonLisp/LandOfLisp/orcBattle.lisp" @216> ends within an object. Last opening
parenthesis probably in line 186.
[11:25] gregou LandOfLisp$ clisp -c webserver.lisp
i i i i i i i ooooo o ooooooo ooooo ooooo
I I I I I I I 8 8 8 8 8 o 8 8
I \ `+' / I 8 8 8 8 8 8
\ `-+-' / 8 8 8 ooooo 8oooo
`-__|__-' 8 8 8 8 8
| 8 o 8 8 o 8 8
------+------ ooooo 8oooooo ooo8ooo ooooo 8
Welcome to GNU CLISP 2.49 (2010-07-07) <http://clisp.cons.org/>
let efm .= '%W%>WARNING:%.%#lines %l%.%# : %m,'
let efm .= '%Z %#%m,'
"============================================================================
"File: lisp.vim
"Description: Syntax checking plugin for syntastic.vim
"Maintainer: Karl Yngve Lervåg <karl.yngve@lervag.net>
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
[Lux 2013-May-03 18:13:40] Using pylux version 1.3dev
[Lux 2013-May-03 18:13:40] Installed scene post-update handler
Traceback (most recent call last):
File "Blender/blender.app/Contents/MacOS/2.66/scripts/modules/addon_utils.py", line 269, in enable
mod = __import__(module_name)
File "/Users/gregou/Library/Application Support/Blender/2.66/scripts/addons/luxrender/__init__.py", line 53, in <module>
from . import core
File "/Users/gregou/Library/Application Support/Blender/2.66/scripts/addons/luxrender/core/__init__.py", line 101, in <module>
_register_elm(bpy.types.NODE_MT_add.append(node_material.luxrender_mat_node_editor.draw_add_menu))
AttributeError: 'RNA_Types' object has no attribute 'NODE_MT_add'
// $(document).ready(function () {
var carPrototype = {
gas: function gas(amount) {
amount = amount || 10;
this.mph += amount;
return this;
},
brake: function brake(amount) {
amount = amount || 10;
this.mph = ((this.mph - amount) < 0)? 0 : this.mph - amount;
var testProto = {
fun: function () { return 2;},
aString: "aString",
aSecondString: 'aSecondString',
anArray: [1, 2, 3]
},
testObject1 = $.extend({}, testProto),
testObject2 = $.extend({}, testProto),
testObject3 = $.extend(true, {}, testProto);
$( () ->
# Executes only if we are in a "question" view
if ($("#question-view").length)
set -x
set -e
rt=`curl -X POST http://local.pix4d.com:8000/oauth2/token/ \
-H 'content-type: multipart/form-data' \
-F grant_type=password \
-F username=gregory.bataille@pix4d.com \
-F 'password=foobar' \
-F client_id=abc \
-F client_secret=def123 \
@startuml
start
note right
* **RT** refers to the refresh token in the request
* **RT_new** refers to the new refresh token
* **AT** refers to the Access Token that was created
at the same time as RT
* **AT_new** refers to the access token under creation
* **AT_refreshed** refers to an access token that might
already have been created from RT (but RT is still in