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
| <?php | |
| require('fpdf.php'); // from fpdf.org | |
| function BruchZahlenStrahl($pdf, $yOff) { | |
| $yBase = 2; | |
| $lnX1 = 20; | |
| $lnX2 = 200; | |
| $lineLength = $lnX2 - $lnX1; | |
| $lnY = $yOff * 14 + $yBase; |
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
| // Ada as rotating planet. A hack. Maybe wrong approach etc. | |
| //EXAMPLE OF SPHERE | |
| //Files with predefined colors and textures | |
| #include "colors.inc" | |
| #include "glass.inc" | |
| #include "golds.inc" | |
| #include "metals.inc" | |
| #include "stones.inc" |
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
| #!/usr/bin/perl | |
| # call-x | |
| # no beauty but some joy: | |
| # use osx address book from terminal for (i)phone dialing purposes. | |
| # | |
| # usage: | |
| # $ call-x your-pal's-name...or-partial-number... | |
| # | |
| # In response to the wonderful link max shared with me: |