You are here |
pradyunsg.me | ||
| | | |
bylr.info
|
|
| | | | Often, technical documentations include lists or other snippets of text that are strongly related to some of the projects code. vpypes documentation is no exception to this. For instance, the Built-in symbols section lists the units available to expressions: These units are related to the following piece of code: # vpype/utils.py UNITS = { "px": 1.0, "in": 96.0, "inch": 96.0, "ft": 12.0 * 96.0, "yd": 36.0 * 96.0, "mi": 1760.0 * 36. | |
| | | |
kushaldas.in
|
|
| | | | ||
| | | |
hackaday.io
|
|
| | | | I've posted the scripts used to generate the anti-aliased text used in the User Interface. The first is a Photoshop script,CreateFontData.jsx. This makes a set of PNG files, one for each character. The second isConvertText.py, a Python script that takes the output of CreateFontData and generates C code for display the characters on the Epson LCD used in the project. Note these scripts have some hard-coded pathnames in them (to the development folder) but this is pretty easy to find and modify. | |
| | | |
perlhacks.com
|
|
| | A series of three articles about CGI programming that I wrote for Linux Format in 2001. Please note that these tutorials are only left here for historical interest. If you are writing new web applications with Perl these days, you should be considering something based on PSGI and Plack or even something using raw PSGI. |