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
#include <stdio.h> | |
#include <sqlite3.h> | |
#include <string.h> | |
#define MAXSTRING 200 | |
// Function prototypes | |
void closeStatement( sqlite3_stmt *statement ); | |
void closeConnection( sqlite3 *connection ); |
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
#include <stdio.h> | |
#include <sqlite3.h> | |
#include <string.h> | |
#define MAXSTRING 200 | |
// Function prototypes | |
void closeStatement( sqlite3_stmt *statement ); | |
void closeConnection( sqlite3 *connection ); |
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
#include <stdio.h> | |
#include <sqlite3.h> | |
#include <string.h> | |
#define BUFFERSIZE | |
int checkIfFileExists( char* fileName ); | |
int countColumnsInLine( char* line ); | |
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
Portal m_tempPortal = new Portal(); | |
UserCollection m_instructors = m_tempPortal.Instructors; | |
foreach (User u in m_instructors) | |
{ | |
String newStatus = (newSetting ? "Inactive" : "Active"); | |
u.Status = new UserStatus(newStatus); |
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
foreach (UserRoleChart userChart in m_chart.UserRoleCharts) | |
{ | |
User p_user = userChart.UserRole.User; | |
String fNameText = p_user.DisplayFirstName; | |
String lNameText = p_user.DisplayLastName; | |
PdfPage newPage = pdfDoc.AddPage(pdfPageSize, pdfPageMargins, pdfPageOrientation); | |
float xPos = 100; |
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
var express = require('express'), | |
user = require('./routes/users'), | |
story = require('./routes/story'), | |
photos = require('./routes/photos'), | |
sms = require('./routes/sms'), | |
manager = require('./routes/manager'); | |
var app = express(); | |
app.configure(function () { |
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
var dbName = "photoArchiving", | |
collectionName = "photos", | |
subfolderName = "mainPhotos/"; | |
var mongo = require('mongodb'), | |
sprintf = require('sprintf').sprintf, | |
fs = require('fs'), | |
moment = require('moment'), | |
aws = require('../awsConnections/awsTest.js'); |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<users> | |
<user Section="200" CourseNum="5001-200-20151" FullName="Adrian Aizensat Aizenstat" FirstName="Adrian Aizensat" LastName="Aizenstat" UserIdentifier="AAizenstat16" PreferredFName="Adrian Aizensat" Entry_Term="20151" Cluster="2016S" Hometown="Miami" Country="United States" Email="[email protected]" UndergraduateDegree="Bachelor of Science" UndergraduateMajor="Finance (Honors)" UndergraduateCollege="University Of Florida" DegreeYear1="2007" UndergraduateDegree2="Master of Business Administration" UndergraduateMajor2="" UndergraduateCollege2="University Of Florida" DegreeYear2="2016" Company="Wells Fargo Bank, N.A." Title="Relationship Manager" Division="" Industry="Diversified Financial Services" PrevCompany2="LASA, Inc." Title2="Managing Principal" Division2="" Industry2="Real Estate" PrevJobStartDate3="2007-10-01" Statement="<p>Adrian Aizenstat is a Relationship Manager at Wells Fargo Bank, where he&rsquo;s been directly involved in the ori |
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
.background { | |
background-image: url(https://i.imgur.com/YjVLuto.jpg); | |
} | |
.progressBar { | |
background-color: rgb(238, 255, 65); | |
} | |
.watermark { | |
width: 600px; | |
height: 600px; | |
} |
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
class PAPhotograph { | |
private static let DEFAULT_UID = "" | |
private static let DEFAULT_TITLE = "" | |
private static let DEFAULT_LONG_DESCRIPTION = "" | |
private static let DEFAULT_DATE_UPLOADED = Date() | |
private static let DEFAULT_THUMB_URL = "" | |
private static let DEFAULT_MAIN_URL = "" | |
private static let DEFAULT_DATE_TAKEN = Date() | |
private static let DEFAULT_DATE_CONF : Float = 0.0 |