Skip to content

Instantly share code, notes, and snippets.

@Two9A
Two9A / src-global.h
Created June 25, 2011 11:46
Qt compile issues...
QT += network xml
QT -= gui
TARGET = QtCoreLib
TEMPLATE = lib
DEFINES += QTCORELIB_LIBRARY
INCLUDEPATH += src/logger \
src
@Two9A
Two9A / Tomcat log
Created June 16, 2011 08:05
CAS startup error
INFO: Undeploying context [/cas]
Jun 16, 2011 8:57:31 AM org.apache.catalina.startup.HostConfig deployWAR
INFO: Deploying web application archive cas.war
Jun 16, 2011 8:57:32 AM org.apache.catalina.startup.TldConfig tldScanJar
SEVERE: Exception processing TLD META-INF/c-1_0-rt.tld in JAR at resource path /opt/jasperserver-pro-3.5.1/apache-tomcat/webapps/cas/WEB-INF/lib/
standard-1.1.2.jar in context /cas
java.lang.NullPointerException
at org.apache.xerces.impl.dtd.models.DFAContentModel.buildDFA(DFAContentModel.java:538)
at org.apache.xerces.impl.dtd.models.DFAContentModel.<init>(DFAContentModel.java:253)
at org.apache.xerces.impl.dtd.DTDGrammar.createChildModel(DTDGrammar.java:2279)
package com.imrannazar.anpr;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.graphics.PixelFormat;
import android.hardware.Camera;
import android.hardware.Camera.Parameters;
import android.os.Bundle;
@Two9A
Two9A / Makefile
Created February 12, 2011 12:39
Anagram hashtable...
CC = g++ -c
LD = g++
anagram: anagram.o hash.o qsort.o strlist.o
$(LD) -o $@ $^
%.o: %.cpp %.c %.h
$(CC) -o $@ $<
clean:
SELECT s.title AS title,
concat(u.forename, ' ', u.surname) AS name,
from_unixtime(ss.start_time, '%d/%m/%Y') AS sessiondate,
if( v.id IS NULL , ss.venue, v.title ) AS venue,
if(b.status NOT IN ('attended'),'No', 'Yes') AS attended
FROM `sessions` s
JOIN scheduled_sessions ss ON ss.session_id=s.id
JOIN session_bookings b ON b.session_id=ss.id
JOIN users u ON u.id=b.delegate_id
LEFT JOIN venues v ON v.id=ss.venue_id
Node *reverse(Node *p)
{
Node *oldnext, *newnext;
while(p)
{
oldnext = p->next;
p->next = newnext;
newnext = p;
p = oldnext;
}