Skip to content

Instantly share code, notes, and snippets.

View radzhome's full-sized avatar

Rad W radzhome

  • Ottawa
View GitHub Profile
#pragma runopts (xplink(on))
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cctype>
#include <string>
#include <sys/stat.h> //use with struct stat attrib;
#include <unistd.h> //stat("afile.txt", &attrib);
#include <time.h> //clock = gmtime(&(attrib.st_mtime));
#include <stdio.h>
@radzhome
radzhome / index.html
Last active August 29, 2015 14:15 — forked from jshaw/index.html
<!DOCTYPE html>
<html>
<head>
<title>Custom Street View panorama tiles</title>
<meta charset="utf-8">
<style>
html, body, #map-canvas {
height: 100%;
margin: 0px;
padding: 0px
@radzhome
radzhome / Process CSV File Python
Last active August 29, 2015 14:13
First Gist: Process a CSV File in Python/Django
#Test Gist
import csv
from models import RegistrationCode
REQUIRED_FIELDNAMES = frozenset([
'Registration code',
])