A technical conference by and for Penn State Alumni.
April 17, 2015 - Friday before the [Blue-White Game]
# Return a function that will return alternate items and a new function | |
def make_toggler(a,b): | |
return lambda: (a, make_toggler(b,a)) |
Image: problem.jpg | |
Format: JPEG (Joint Photographic Experts Group JFIF format) | |
Geometry: 698x1080 | |
Class: DirectClass | |
Type: true color | |
Depth: 8 bits-per-pixel component | |
Channel Depths: | |
Red: 8 bits | |
Green: 8 bits |
ExifTool Version Number : 8.40 | |
File Name : problem.jpg | |
Directory : . | |
File Size : 637 kB | |
File Modification Date/Time : 2011:04:12 23:24:00+00:00 | |
File Permissions : rw-r--r-- | |
File Type : JPEG | |
MIME Type : image/jpeg | |
JFIF Version : 1.01 | |
Exif Byte Order : Big-endian (Motorola, MM) |
GraphicsMagick 1.3.7 2009-09-17 Q8 http://www.GraphicsMagick.org/ | |
Copyright (C) 2002-2009 GraphicsMagick Group. | |
Additional copyrights and licenses apply to this software. | |
See http://www.GraphicsMagick.org/www/Copyright.html for details. | |
Feature Support: | |
Thread Safe yes | |
Large Files (> 32 bit) yes | |
Large Memory (> 32 bit) yes | |
BZIP yes |
$ rpm -qa |grep -E "(jpeg|tiff|ghost|png|lcms|wmf)" | sort | |
lcms-1.18-0.1.beta1.el5_3.2 | |
lcms-1.18-0.1.beta1.el5_3.2 | |
libjpeg-6b-37 | |
libjpeg-6b-37 | |
libjpeg-devel-6b-37 | |
libjpeg-devel-6b-37 | |
libpng-1.2.10-7.1.el5_5.3 | |
libpng-1.2.10-7.1.el5_5.3 | |
libtiff-3.8.2-7.el5_5.5 |
factorial := | |
?(1) => 1 | |
?(0) => 0 | |
?(n) => n * factorial(n-1) | |
main() => write(@stdout, msg) where | |
result <- factorial(5) | |
msg <- "factorial(5) is $result\n" |
class Animal | |
{ | |
public: | |
std::string name; | |
virtual ~Animal() {} | |
}; | |
class Dog : public Animal | |
{ | |
public: |
Here's the source RPM we built on: | |
http://vault.centos.org/6.5/os/Source/SPackages/curl-7.19.7-37.el6_4.src.rpm | |
The PHP release we applied the patch on is 5.4.26: | |
http://us1.php.net/get/php-5.4.26.tar.gz/from/a/mirror |
A technical conference by and for Penn State Alumni.
April 17, 2015 - Friday before the [Blue-White Game]
diff --git a/origin.rs b/token-ids.rs | |
index 736580d..b849a41 100644 | |
--- a/origin.rs | |
+++ b/token-ids.rs | |
@@ -48,23 +48,40 @@ const YYERRORSYMBOL: i32 = 0; | |
pub enum Token { | |
EOI, //0 | |
VALUE( i32 ), //1 | |
PLUS, //2 | |
MINUS, //3 |