epochwolf

2,809
Reputation
499 views

Registered User

Name epochwolf
Member for 1 year
Seen 1 hour ago
Website
Location Wisconsin (United States)
Age 23

I'm a computer science student at a local university that follows in the proudest traditions of JavaSchool. They just got CVS installed on the servers last year.

Short History:

I taught myself php in my first year of college. (as a Biology major... that changed quickly) Ironically, I created a php bot instead of a website. (My worst use of php EVER)

Switched to a local college for cheaper and had to take 3 semesters of basic algebra because my High School algebra, pre-calculus, and statistics didn't count for some reason. (Did I mention JavaSchool?)

My third semster at JavaSchool (and 3rd year in college) they let me start learning Java after I've already learned php and python. Sadly, you need to know Java to get out of the basic "This is an integer" class and the "This is a static method" class that follows it.

Through an internship, I started last year and should have finished this August, I've learned python, ruby on rails, subversion, database design and some basic linux server management. Everything that my school can't or won't teach.

13h
awarded  Popular Question
Nov
23
revised Why should one bother with preprocessor directives?
fixing syntax
Nov
23
comment Why should one bother with preprocessor directives?
This amuses me. :)
Nov
22
comment What are some funny loading statements to keep users amused?
It stands for Alternate Storage Disk Format eXecutable
Nov
22
revised conflicting types error in C
missed a semicolon
Nov
18
accepted Rails: Error using ActionView method sanitize in Lib
Nov
18
answered Rails: Error using ActionView method sanitize in Lib
Nov
18
accepted DataGridView inserts primary key
Nov
18
answered DataGridView inserts primary key
Nov
18
asked Load Ruby on Rails models without loading the entire framework
Nov
16
answered Multiple WMD editors (SO forked version) on one page?
Nov
14
asked DataGridView inserts primary key
Nov
10
comment Ubuntu Vs. CentOS
This belongs on serverfault
Nov
9
revised Ways to prevent over-engineering?
Converted to angle brackets for more fun.
Nov
9
revised Ways to prevent over-engineering?
added 30 characters in body
Oct
15
comment diff a ruby string or array
using temporary files is generally a bad idea when you have an in memory option available.
Oct
15
awarded  Popular Question
Oct
10
comment What attacks can be directed on a registration page
or just convert < to &tl; and > to &gt;
Oct
8
comment Storing OpenID information in database.
Email is for named accounts not using openid. I've since changed my application to use openid exclusively. (I think enough people have google/yahoo accounts that I won't have an issue with this.)
Oct
8
asked Storing OpenID information in database.
Oct
3
revised MediaWiki documentation with external user access control
edited body
Oct
3
revised What are some funny loading statements to keep users amused?
added 8 characters in body
Sep
26
awarded  Popular Question
Sep
18
awarded  Yearling
Sep
9
awarded  Nice Answer
Sep
8
asked Bash: Detect if user’s path has a specific directory in it
Aug
22
comment Including Relevant Boost Libraries with C++ Source (Using Visual Studio)
I actually just dumped the pre-compiled debug libraries into the proper relative folder.
Aug
21
awarded  Popular Question
Aug
17
comment What’s the best HTML WYSISYG editor available to web developers and why?
It's bugging out in Safari.
Aug
10
comment How do you remove subversion control for a folder?
Thanks for providing an answer that works with the command line. :) Great for those of us using terminals.
Aug
9
comment Regex: Match a string containing numbers and letters but not a string of just numbers.
This is a very good point. I've actually added my entire question and the response I've accepted into the bottom of the file where the regex appears. There is also a note on the regex to look at the bottom of the file. Because I know I will have fun trying to figure out regex later.
Aug
6
comment Regex: Match a string containing numbers and letters but not a string of just numbers.
@Dav, I rolled back my edits and accepted your answer.
Aug
6
awarded  Cleanup
Aug
6
revised Regex: Match a string containing numbers and letters but not a string of just numbers.
edited tags; edited tags
Aug
6
revised Regex: Match a string containing numbers and letters but not a string of just numbers.
Ruby 1.8 has limitations on it's regex engine.; added 267 characters in body
Aug
6
comment Regex: Match a string containing numbers and letters but not a string of just numbers.
Ruby is choking on (?<!_). It would appear ruby 1.8 doesn't have support for negative lookbehinds which would make this problem much much harder.
Aug
6
comment Regex: Match a string containing numbers and letters but not a string of just numbers.
:) validates_format_of :name, :with => /\A[A-Za-z0-9-_]{4,20}\Z/, :on => :create and I'm trying to relearn regex. It's been awhile since I've really worked on difficult regex. (It's a personal project, not a work related one or I would do a multiple regex solution)
Aug
6
comment Regex: Match a string containing numbers and letters but not a string of just numbers.
Doesn't allow te_t, 0123test
Aug
6
comment Regex: Match a string containing numbers and letters but not a string of just numbers.
Doesn't allow te_t, 0123test.
Aug
6
asked Regex: Match a string containing numbers and letters but not a string of just numbers.
Jul
31
awarded  Nice Question
Jul
12
awarded  Notable Question
Jul
9
accepted Best Hosted Calendar?
Jul
5
awarded  Good Answer
Jun
20
comment (Ruby,Rails,Javascript) Redirecting/Rendering a different page when Javascript is disabled…?
You could reduce all of the @building stuff to Building.create({:name => "Untitled", :site_id => params[:id]}). :)
Jun
20
revised (Ruby,Rails,Javascript) Redirecting/Rendering a different page when Javascript is disabled…?
deleted 39 characters in body; edited tags; edited title
Jun
18
comment Which chemical stimulation do you require while coding?
+1 for apples :)
Jun
18
revised Which chemical stimulation do you require while coding?
deleted 1 characters in body
Jun
18
asked Rails: Error using ActionView method sanitize in Lib
Jun
12
comment How do I bounce a point off of a line?
I would mark this as accepted as well if I could. I implemented this instead of going for a generic formula which saved me enough time to implement some shiny lighting which probably helped my grade more than anything else I was trying to do.