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 / 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>
@NickersF
NickersF / closeapp.cpp
Created November 25, 2015 06:59
C++ - Generic function which closes a win32 console application
// A generic function to close win32 console applications
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
using namespace std;
void closeApp();