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
QT += network xml | |
QT -= gui | |
TARGET = QtCoreLib | |
TEMPLATE = lib | |
DEFINES += QTCORELIB_LIBRARY | |
INCLUDEPATH += src/logger \ | |
src |
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
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) |
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
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; |
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
CC = g++ -c | |
LD = g++ | |
anagram: anagram.o hash.o qsort.o strlist.o | |
$(LD) -o $@ $^ | |
%.o: %.cpp %.c %.h | |
$(CC) -o $@ $< | |
clean: |
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
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 |
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
Node *reverse(Node *p) | |
{ | |
Node *oldnext, *newnext; | |
while(p) | |
{ | |
oldnext = p->next; | |
p->next = newnext; | |
newnext = p; | |
p = oldnext; | |
} |
NewerOlder