Use the SLIME provided with Quicklisp
(ql:quickload "quicklisp-slime-helper")
Use the SLIME provided with Quicklisp
(ql:quickload "quicklisp-slime-helper")
| #include <stdio.h> | |
| #include <uriparser/Uri.h> | |
| #include <time.h> | |
| int main(void) | |
| { | |
| clock_t start = clock() / (CLOCKS_PER_SEC / 1000); | |
| UriParserStateA state; |
| (ql:quickload "puri") | |
| (defun test() | |
| (loop for i from 0 to 1000000 | |
| collecting (puri:parse-uri "http://www.foo.com"))) | |
| (time (progn (test) t)) | |
| ;;; 32 bit SBCL |
| #!/usr/bin/env python | |
| import sys | |
| import datetime | |
| import time | |
| from datetime import timedelta | |
| sys.path.append('/home/reb/local/azure-sdk-for-python/') | |
| from azure.storage import * |
| (ql:quickload :cffi) | |
| (cffi:load-foreign-library "user32.dll") | |
| (cffi:defctype hwnd :unsigned-int) | |
| (cffi:defcfun ("MessageBoxA" message-box) :int | |
| (wnd hwnd) | |
| (text :string) | |
| (caption :string) |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <DiagnosticMonitorConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration" configurationChangePollInterval="PT1M" overallQuotaInMB="4096"> | |
| <DiagnosticInfrastructureLogs bufferQuotaInMB="1024" | |
| scheduledTransferLogLevelFilter="Verbose" | |
| scheduledTransferPeriod="PT1M" /> | |
| <Logs bufferQuotaInMB="1024" | |
| scheduledTransferLogLevelFilter="Verbose" | |
| scheduledTransferPeriod="PT1M" /> |
| using System; | |
| using System.IO; | |
| using System.Net; | |
| using System.Runtime.Serialization; | |
| using System.Text; | |
| using System.Xml; | |
| namespace SqlAzureBackup | |
| { | |
| class Program |