129 lines
6.9 KiB
HTML
129 lines
6.9 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<title>CLiki: Programming Tips</title>
|
||
|
<link rel="alternate" type="application/atom+xml" title="ATOM feed of edits to current article"
|
||
|
href="https://www.cliki.net/site/feed/article.atom?title=Programming%20Tips">
|
||
|
<link rel="stylesheet" href="static/css/style.css">
|
||
|
<link rel="stylesheet" href="static/css/colorize.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<span class="hidden">CLiki - Programming Tips</span>
|
||
|
<div id="content"><div id="content-area"><div id="article-title">Programming Tips</div><div id="article">The following <a href="CLiki.html" class="internal">CLiki</a> pages offer programming tips:
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="ASDF encoding.html" class="internal">ASDF encoding</a> -
|
||
|
The encoding used by lisp implementation to read source files is often depends on environment,
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="call-with style.html" class="internal">call-with style</a> -
|
||
|
An approach to implementing macro of the type "with-foo"
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="change-class dangers.html" class="internal">change-class dangers</a> -
|
||
|
<a href="https://www.cliki.net/site/HyperSpec/Body/stagenfun_change-class.html" class="hyperspec">change-class</a> changes the class of the <a href="CLOS.html" class="category">CLOS</a> object involved; in
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="CMUCL Hints.html" class="internal">CMUCL Hints</a> -
|
||
|
A collection of miscellaneous hints and tips for <a href="CMUCL.html" class="category">CMUCL</a> users - some also apply to the <a href="CMUCL.html" class="category">CMUCL</a> spin-off, <a href="SBCL.html" class="category">SBCL</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Coding Convention.html" class="internal">Coding Convention</a> -
|
||
|
This page describes some common coding convention that you'll see in <a href="lisp.html" class="category">lisp</a> source code
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="CPS.html" class="internal">CPS</a> -
|
||
|
CPS stands for Continuation Passing Style
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Difference between JSON libraries.html" class="internal">Difference between JSON libraries</a> -
|
||
|
As can be expected, the libraries do much of the same if you have basic needs
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Exporting Struct-Related Functions.html" class="internal">Exporting Struct-Related Functions</a> -
|
||
|
Brief discussion of functions to be considered for export when creating Lisp structures with <a href="https://www.cliki.net/site/HyperSpec/Body/mac_defstruct.html" class="hyperspec">defstruct</a>
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="file-position on non-files.html" class="internal">file-position on non-files</a> -
|
||
|
Here's a can of worms
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="FORMAT cheat sheet.html" class="internal">FORMAT cheat sheet</a> -
|
||
|
This is a mirror of <a href="http://web.archive.org/web/20080327015956/http://www.celebris.net/~danlei/linux-bsd/format-strings.html">http://www.celebris.net/~danlei/linux-bsd/format-strings.html</a> (taking from the snapshot archived on 2008-03-27)
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Macro Characters.html" class="internal">Macro Characters</a> -
|
||
|
Macro characters used by various libraries: (TOTALLY INCOMPLETE AND OUTDATED)
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Make Old CMUCL CLX Work With Magic Cookies.html" class="internal">Make Old CMUCL CLX Work With Magic Cookies</a> -
|
||
|
Put the following forms in a file, and load it after CLX is loaded:
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Obtain libraries.html" class="internal">Obtain libraries</a> -
|
||
|
Here is a list of projects/libraries/tools intended to install libraries easily
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="profiler.html" class="internal">profiler</a> -
|
||
|
The goal of profiling is to find out the bottlenecks of the program, such as which function consumes the most <a href="time.html" class="internal">time</a>, which function is called most times etc
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Tail Recursion.html" class="internal">Tail Recursion</a> -
|
||
|
"Proper" Tail Recursion as found in Scheme is a feature that some miss in CL
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Unicode and Lisp.html" class="internal">Unicode and Lisp</a> -
|
||
|
Random ramblings on Unicode
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="Unicode Support.html" class="internal">Unicode Support</a> -
|
||
|
All contemporary Lisp implementations have reasonable Unicode support
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="USN Journal.html" class="internal">USN Journal</a> -
|
||
|
The <a href="https://en.wikipedia.org/wiki/USN_Journal">USN Journal</a> keeps track of changes made to files and directories on an <a href="https://en.wikipedia.org/wiki/NTFS">NTFS</a> volume
|
||
|
</li>
|
||
|
<li>
|
||
|
<a href="webframeworkmatrix.html" class="internal">webframeworkmatrix</a> -
|
||
|
The purpose of this page is to build list of the existing <a href="web framework.html" class="internal">web framework</a>s for the production and deployment of Lisp web applications
|
||
|
</li>
|
||
|
</ul></div></div>
|
||
|
<div id="footer" class="buttonbar"><ul><li><a href="Programming Tips.html">Current version</a></li>
|
||
|
<li><a href="https://www.cliki.net/site/history?article=Programming%20Tips">History</a></li>
|
||
|
<li><a href="https://www.cliki.net/site/backlinks?article=Programming%20Tips">Backlinks</a></li><li><a href="https://www.cliki.net/site/edit-article?title=Programming%20Tips&from-revision=3799082882">Edit</a></li><li><a href="https://www.cliki.net/site/edit-article?create=t">Create</a></li></ul></div>
|
||
|
</div>
|
||
|
<div id="header-buttons" class="buttonbar">
|
||
|
<ul>
|
||
|
<li><a href="https://www.cliki.net/">Home</a></li>
|
||
|
<li><a href="https://www.cliki.net/site/recent-changes">Recent Changes</a></li>
|
||
|
<li><a href="CLiki.html">About</a></li>
|
||
|
<li><a href="Text Formatting.html">Text Formatting</a></li>
|
||
|
<li><a href="https://www.cliki.net/site/tools">Tools</a></li>
|
||
|
</ul>
|
||
|
<div id="search">
|
||
|
<form action="https://www.cliki.net/site/search">
|
||
|
<label for="search_query" class="hidden">Search CLiki</label>
|
||
|
<input type="text" name="query" id="search_query" value="" />
|
||
|
<input type="submit" value="search" />
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div id="pageheader">
|
||
|
<div id="header">
|
||
|
<span id="logo">CLiki</span>
|
||
|
<span id="slogan">the common lisp wiki</span>
|
||
|
<div id="login"><form method="post" action="https://www.cliki.net/site/login">
|
||
|
<label for="login_name" class="hidden">Account name</label>
|
||
|
<input type="text" name="name" id="login_name" class="login_input" />
|
||
|
<label for= "login_password" class="hidden">Password</label>
|
||
|
<input type="password" name="password" id="login_password" class="login_input" />
|
||
|
<input type="submit" name="login" value="login" id="login_submit" /><br />
|
||
|
<div id="register"><a href="https://www.cliki.net/site/register">register</a></div>
|
||
|
<input type="submit" name="reset-pw" value="reset password" id="reset_pw" />
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body></html>
|