AlbertoPL

5,522
Reputation
465 views

Registered User

Name AlbertoPL
Member for 7 months
Seen 15 hours ago
Website
Location Boston
Age 21
I'm a software engineer at the Rochester Institute of Technology. I enjoy web development and working with web languages. Currently I'm working with Java and Python with Django.
My Personal Software Engineering Site
Nov
3
comment How would I find a book in a large library?
Not likely. If the librarian's answers might not be correct, then you could waste time looking at the wrong half of the library. This is equivalent to simply looking through the entire library. In fact, you cannot use any Binary search type questions because the answer could at any time be incorrect (or always incorrect). Thus you can gain no sense as to where the book is via this method.
Oct
28
comment 0.0 < (1/10^9)?
@Xinus : mathoverflow.net
Oct
21
comment Fastest way to obtain the largest X numbers from a very large unsorted list?
Yes, and that will require that the list of 100 also stays sorted.
Oct
21
answered Fastest way to obtain the largest X numbers from a very large unsorted list?
Oct
20
comment angles commands in superclass
The question is fairly vague. Please elaborate.
Oct
19
comment Try-Catch and how throw work in catch block
only if the part of the code catching it returns false.
Oct
16
accepted Palindrome Recursion Program
Oct
16
revised Palindrome Recursion Program
Fixed spelling typo in title from palendrome to palindrome
Oct
16
answered Palindrome Recursion Program
Oct
14
answered Giving version numbers that make clear when you’re breaking backward compatibility
Oct
14
comment finding substring
the question is rather vague. Are you looking for a substring that's as long as possible while satisfying the restraint or simply any substring which is a multiple of 3?
Oct
14
comment Text Classification in Java
Sounds good. So what have you done to attempt to solve this?
Oct
13
revised Does return inside an if() which is inside a for() - return from the if() or the for() ?
Cleaned up code block
Oct
13
accepted (Ruby) how to return a -1 specifically for a specific comparison
Oct
12
revised Why doesn’t my jquery selector work here?
added 67 characters in body
Oct
12
comment Why doesn’t my jquery selector work here?
Well he's looking for getting the attribute, not the text of the link right?
Oct
12
answered Why doesn’t my jquery selector work here?
Oct
9
comment Calculating very large whole numbers
Haha StackOverflow just let the number go way off the page. At least, that's what it looks like on my browser (FF 3.5)
Oct
9
revised Accessing Arrays inside Arrays In PHP
Added reference to PHP
Oct
9
answered Calculating very large whole numbers
Oct
8
revised (Ruby) how to return a -1 specifically for a specific comparison
added 114 characters in body
Oct
8
answered (Ruby) how to return a -1 specifically for a specific comparison
Oct
8
comment C - determine if a number is prime
Here's some pointers: int *ptr; int *ptr2; int *ptr3. Sorry couldn't help it. How big are the numbers you will be checking? And also, do you want a heuristic or something that always works?
Oct
7
comment Calculator problem
What's the error you're getting?
Oct
3
comment python 2.6 or python 3.1?
I don't see the problem with going ahead and just learning 3.1, since he's talking about learning the language and not using it as a solution. Anything basic he'll need for homework will probably not be impacted by support of other frameworks and libraries.
Oct
2
comment python 2.6 or python 3.1?
No, it is not self-evident. It's officially recommended due to the amount of compatibility there is with other existing code bases and of course documentation. The Python developers are releasing 2.x versions alongside the 3.x versions. So please tell me how 2.6 being recommended contradicts the purpose of future 2.x versions being for compatibility's sake?
Oct
2
comment python 2.6 or python 3.1?
How does that make the statement incorrect? The statement could be correct and still be the officially recommended version to use. They are in no way contradictory of each other.
Oct
2
comment python 2.6 or python 3.1?
What does it matter what they recommend? The point is it's being asked here, and thus can get more information about which one to use so they don't have to blindly follow that advice.
Oct
2
answered python 2.6 or python 3.1?
Oct
2
accepted how to design model for my case with django?
Oct
2
answered how to design model for my case with django?
Sep
24
awarded  Fanatic
Sep
21
awarded  Nice Answer
Sep
15
comment Array access optimization
I recommend editing the question to say you're optimizing for performance, just so people don't have to dig through these comments to see the type of optimization you're looking for.
Sep
15
comment Array access optimization
Ok, I see, in that case, you're dealing with the classic space vs performance. If you need the performance just swallow the hit.
Sep
15
answered Array access optimization
Sep
14
answered Debugging Django Admin Template Resolution
Sep
14
comment Is it possible for a Rails/Django project to become a Death March?
Yes exactly. For example, what good is Scrum if your sprints are a year long because management says so?
Sep
14
answered Is it possible for a Rails/Django project to become a Death March?
Sep
11
accepted reconstructing a tree from its preorder and postorder lists.
Sep
4
accepted Django: Dynamic LOGIN_URL variable
Sep
3
accepted Possible to use a singleton with a non-default constructor in C#?
Aug
20
comment home web server
Are you looking to make your own Internet?
Aug
19
comment What’s Alternative to Singleton
If the class is stateless, it should be a static class.
Aug
19
answered Writing Python/Django view to “join” across three models/tables
Aug
12
comment Tips for picking a computer science masters program
@Alan - unfortunately so. I'm hoping as the industry matures the terminology follows suit. According to the real world we're all IT professionals...
Aug
12
answered Tips for picking a computer science masters program
Aug
10
answered Error using double quotes in a string in javascript
Aug
8
accepted How do I make a JLabel that has an imageIcon that is available to all methods and classes?
Aug
7
comment How do I make a JLabel that has an imageIcon that is available to all methods and classes?
First of all, the name of your class should start with an uppercase letter. Besides that, the constructor for your class should be: public test() { /*your code*/ }, notice how there is no return type. And yes, you should be able to place a BufferedImage in. I don't exactly know where you are getting a null pointer.