This file contains 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
title Course Assignment 2 for cs205 (assgn2.asm) | |
; Alex Koralewski | |
; id# 0019480 | |
; This program encrypts a string based on predefined rules | |
; | |
.model small ; allocate 64k max for code seg & 64k for data seg | |
.stack 10h ; allocate 16 bytes for stack seg | |
.data |
This file contains 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
/* | |
** Alex Koralewski | |
** 0019480 | |
** Assignment 4 | |
** | |
** Written with a 2-button mouse in mind when dealing with menu requirement. | |
** | |
** Please note, due to linked list usage, the vertex/edge/triangle linked lists | |
** store the information backwards from what was read; therefore, the normal | |
** vectors are negated to compensate. |
This file contains 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
#!/usr/bin/perl -w | |
# | |
# written from scratch by Alex Koralewski | |
# time spent (so far): approximately 12 Hours (whew!) | |
# | |
# this program collects domain statistics created by http-analyze | |
# and summaries them into one pretty page. | |
# | |
use CGI qw/:standard/; |
This file contains 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
#!/usr/local/bin/bash | |
CONFDIR="/home/cricket/mrtg/threshold/conf" | |
LOGDIR="/home/cricket/mrtg/threshold/logs" | |
MRTG_HOME="/home/cricket/mrtg/devices" | |
EMAILLIM=1 | |
EMAIL="thold@nyi.net" | |
#EMAIL="cynikal@cynikal.net" | |
#EMAIL="none" | |
TMP="/tmp/.$(basename $0).$$" |
This file contains 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 <pcre.h> | |
int main() { | |
pcre *re; pcre_extra *extra = NULL; | |
char *httpHost; const char *error; const char **stringlist; | |
int offsets[45]; int offsetsSize = sizeof(offsets)/sizeof(int); | |
int erroroffset, count, start_offset; |
This file contains 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
#!/usr/local/bin/bash | |
# | |
# this script disassembles a Mac OS X executable binary. It does some interesting | |
# translation for Obj C calls (thanks to the leet work done at www.afront.be I | |
# loosely based this on) | |
FILE="$1" | |
TMP="/tmp/.$(basename $0)_$$" | |
if [ ! -r "$FILE" ] |
This file contains 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
#!/usr/local/bin/bash | |
if [ X"$(whoami)" != "Xroot" ] | |
then | |
echo "This program now must be run as root.." | |
exit | |
fi | |
INTERFACES='cs1 cs2 cs3 cs4 cs5 cs7 cs8 cs9 cs10 cs11 cs12 cs13 cs14 cs15 cs20 cs20b cs21 cs22 cs23 cs24 cs25 cs30 cs30b cs40b csmarigold core01 core02 core04 core05 core06' | |
WALKDIR="/home/cricket/walk" |
This file contains 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
#!/usr/bin/perl | |
$| = 1; | |
BEGIN { unshift(@INC, "/usr/perl5/site_perl/5.005" ); }; | |
use strict; | |
use Time::ParseDate; | |
use Spreadsheet::WriteExcel; |
This file contains 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
#!/usr/bin/perl | |
$| = 1; | |
# | |
# jumpstartManager.pl | |
# | |
# This script (along with the support files) will turn any powerbook/ibook | |
# running Tiger into a portable jumpstart server. | |
# | |
# v1.0 - July 24th, 2005 - | |
# written by: Alex Koralewski (akoralewski@doitt.nyc.gov) |
This file contains 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
#!/usr/local/bin/kermit.real + | |
# Usage: apc-config [ hostname ] [ ip address ] | |
# | |
# written in spring 2006.. | |
# | |
# .file := \fcontents(\%1) # Eval one level deep in case of backslashes | |
#} else while not def file { # Prompt for it if not given | |
# ask file " Log file name: " | |
#} |
OlderNewer