Skip to content

Instantly share code, notes, and snippets.

View NickersF's full-sized avatar
🚀
Preparing to launch a great product.

Nicholas Fazzolari NickersF

🚀
Preparing to launch a great product.
  • Association of Oregon Counties
  • Portland Or
View GitHub Profile
@NickersF
NickersF / Inheritance
Created January 2, 2015 02:55
Basic class inheritance uses in C#.NET
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace inheritance
{
class Program
{
@NickersF
NickersF / calcbutton
Created January 4, 2015 03:35
Python 2.7 Tkinter example.
from Tkinter import *
# main application
master = Tk()
master.geometry("250x150+300+300")
# empty lsit for values
sqrLst = []
multval = 0
@NickersF
NickersF / gnTemplate
Created January 4, 2015 05:26
building a Google Nexus Website style menu (from tutorial)
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Nexus Website Menu</title>
<meta name="description" content="A sidebar menu as seen on the Google Nexus 7 website" />
<meta name="keywords" content="google nexus 7 menu, css transitions, sidebar, side menu, slide out menu" />
@NickersF
NickersF / webSiteFolderTemplate
Last active August 29, 2015 14:12
Creating a basic C# app that makes a template of folders for web sites.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace createWebSiteStructure
{
class Program
{
Style guide creation:
Bas
@NickersF
NickersF / Vi in-class notes
Last active August 29, 2015 14:19
vi lesson
command mode: doesnt accept illiegal command
o: is input mode, new line
Command Mode:
Copy/Paste/Delete:
[num] dd - delte line
[num] dw - delete word
x - inline delete
// Assignment 4: With updated output labels
// Author: Nicholas Fazzolari
// Date: 10/19/2015
// Sources: ** Course Material **
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <cstring>
#include <string>
#include <iostream>
#include <iomanip>
using namespace std;
void printChar(char charArray[], char& ch);
void printStr(string strArray[], string& str);
@NickersF
NickersF / assignment7.cpp
Created November 20, 2015 20:25
CS-161 Assignment 7 - Back up 11/20/15
// Assignment #7 - Cash register
// Author: Nicholas Fazzolari
// Date 19/11/2015
// Sources:
#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>