User Alvin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T03:23:26Zhttp://stackoverflow.com/feeds/user/23637http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1409799/how-can-i-extract-html-content-efficiently-with-perl1How can I extract HTML content efficiently with Perl?Alvin2009-09-11T08:53:47Z2009-09-16T15:31:49Z
<p>I am writing a crawler in Perl, which has to extract contents of web pages that reside on the same server. I am currently using the <a href="http://search.cpan.org/dist/HTML-Extract" rel="nofollow">HTML::Extract</a> module to do the job, but I found the module a bit slow, so I looked into its source code and found out it does not use any connection cache for <a href="http://search.cpan.org/dist/libwww-perl" rel="nofollow">LWP::UserAgent</a>. </p>
<p>My last resort is to grab <code>HTML::Extract</code>'s source code and modify it to use a cache, but I really want to avoid that if I can. Does anyone know any other module that can perform the same job better? I basically just need to grab all the text in the <code><body></code> element with the HTML tags removed. </p>
http://stackoverflow.com/questions/1053878/passing-a-concrete-list-of-enummap-objects-to-generic-list-of-enummap-parameter-c1Passing a concrete List of EnumMap objects to generic List of EnumMap parameter causes compile errorAlvin2009-06-27T23:48:34Z2009-06-28T03:00:24Z
<p>I have a piece of code that I think should compile, but it doesn't. Here is the code:</p>
<pre><code>public class Program {
public void myMethod(List<EnumMap<? extends MyInterface, String>> map)
{
}
public void caller()
{
EnumMap<MyEnum, String> map = new EnumMap<MyEnum, String>(MyEnum.class);
List<EnumMap<MyEnum, String>> list = new LinkedList<EnumMap<MyEnum, String>>();
myMethod(list); //error argument type is not compatible
}
</code></pre>
<p>}</p>
<p>MyEnum is an enum that implements MyInterface. </p>
<p>Why does calling myMethod(list) gives me argument type is not compatible? </p>
<p>If I change myMethod's signature to:</p>
<pre><code>public void myMethod(List<? extends Map<? extends MyInterface, String>> map)
</code></pre>
<p>then everything works fine, but I'm still puzzled and wish to know why the original
method signature does not work. </p>
http://stackoverflow.com/questions/348864/how-do-i-monitor-what-commands-my-ftp-application-is-sending-to-a-ftp-server0How do I monitor what commands my ftp application is sending to a ftp serverAlvin2008-12-08T07:42:53Z2009-06-18T10:55:46Z
<p>Hello all,
F
Is there a way to monitor the FTP port so that I can know what commands my FTP application is sending to a FTP server?</p>
<p>I am using a closed-source FTP client application, which is not working with a closed-source FTP application server. The client and the server are not communicating well with each other, and I would like to find out why. I wish to reverse-engineer the client to see what commends the client are sending to the sever. I used a web test tool before that allowed me to monitor the content transferring through HTTP, but I can't seem to find such tool for FTP. I appreciate it if you can help me out, thanks. </p>
http://stackoverflow.com/questions/151392/how-to-stress-test-video-streaming-server3How to stress-test video streaming server?Alvin2008-09-30T01:14:07Z2008-12-06T16:42:58Z
<p>Does anyone know any good tool that I can use to perform stress tests on a video streaming server? I need to test how well my server handles 5,000+ connections. </p>
http://stackoverflow.com/questions/165819/why-adopt-a-software-development-process/165890#1658901Answer by Alvin for Why adopt a software development process?Alvin2008-10-03T06:22:40Z2008-10-03T06:22:40Z<p>I guess the same reason as why there is a process for building cars, and building houses? </p>
<p>Adopting a development process can reduce how many times you say "Oh shit should have thought of that". </p>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164801#1648010Answer by Alvin for What real life bad habits has programming given you?Alvin2008-10-02T21:59:40Z2008-10-02T21:59:40Z<p>My comp sci frd and I started to talk geekly</p>
<p>When we are hungry we say "my buffer is underflow"
When we get sick and throw up we say "my buffer overflowed"</p>
http://stackoverflow.com/questions/164468/does-this-asp-net-consultant-know-what-hes-doing/164652#1646520Answer by Alvin for Does This ASP.NET Consultant Know What He's Doing?Alvin2008-10-02T21:16:49Z2008-10-02T21:16:49Z<p>I'm guessing your consultant is suggesting use a status variable instead of exception for error handling is a better practice? I don't agree. How often does people forgot or too lazy to do error checking for return values? Also, pass/fail variable is not informative. There are more things can go wrong other than divide by zero like integer x/y is too big or x is NaN. When things go wrong, status variable cannot tell you what went wrong, but exception can. Exception is for exceptional case, and divide by zero or NaN are definitely exceptional cases. </p>
http://stackoverflow.com/questions/163766/should-developers-be-given-laptops-or-desktops/164543#1645430Answer by Alvin for Should developers be given laptops or desktops?Alvin2008-10-02T20:52:22Z2008-10-02T20:52:22Z<p>Laptop. Developers need to go to meetings too. Developers also need to run around asking questions and helping others out. </p>
http://stackoverflow.com/questions/164053/should-log-file-streams-be-opened-closed-on-each-write-or-kept-open-during-a-desk/164442#1644420Answer by Alvin for Should log file streams be opened/closed on each write or kept open during a desktop application's lifetime?Alvin2008-10-02T20:33:18Z2008-10-02T20:33:18Z<p>For large intensive applications, what I usually do is I keep the log file open for the duration of the application and have a separate thread that flushes log content in the memory to HDD periodically. File open and close operation require system calls, which is a lot of work if you look into lower level. </p>
http://stackoverflow.com/questions/164048/basic-programming-algorithmic-concepts/164264#1642641Answer by Alvin for Basic programming/algorithmic conceptsAlvin2008-10-02T19:55:06Z2008-10-02T19:55:06Z<p>Well, it's a programming club, so it should be FUN! So I would say dive into some hand on experience right away. Start with explaining what a main() method is,then have students write a hello world program. Gradually improve the hello world program so it has functions and prints out user inputs. </p>
<p>I would say don't go into algorithm too fast for beginners, let them play with C++ first.</p>
http://stackoverflow.com/questions/6361/interview-programming-questions-in-house-exam/156014#1560141Answer by Alvin for Interview Programming Questions - In house ExamAlvin2008-10-01T02:37:07Z2008-10-01T02:37:07Z<p>If you haven't, I would suggest you to find out what type of question are they going to ask on the exam. Also, it will help to talk to people who have interviewed for the same position at the same company before. </p>
<p>From my experience, I got asked questions like: </p>
<ul>
<li>Reverse a link list</li>
<li>Insert a node to a SORTED link list</li>
<li>Using any data structures you wish in addition, how do you always get
the minimum integer in a integer
stack in constant time</li>
<li>you have 100000000 32bit integer, but you only have 1MB memory, how do
you sort the integers? Improve the
efficiency.</li>
<li>Write a function that outputs the
permutation of any string</li>
<li>Write a function to compute quadratic formula</li>
<li>Write a function to determine if an integer is a prime number</li>
<li>What is a wrapper</li>
<li>Explain difference between tread and processes</li>
<li><em>Give you an problem</em> Draw the domain model</li>
<li>Explain critical section, explain dead lock</li>
<li>Best and worse case run time of quicksort in big O notation</li>
</ul>
<p>That's all I can remember for now.</p>
http://stackoverflow.com/questions/85538/what-is-stopping-you-from-using-static-analysis-tools/155952#1559521Answer by Alvin for What is stopping you from using static analysis tools?Alvin2008-10-01T02:07:36Z2008-10-01T02:07:36Z<p>Back in college I used ESC/Java for static analysis, whenever I encounter problem with it, the only place I can look for answer was ESC/Java's manual; couldn't find any useful discussion from Google. Setting up ESC/Java was also not easy, had to deal with a lot of path problem. So after using ESC/Java I thought static analysis is impractical. </p>
<p>But everything changed after I used FindBug. I was impressed with the fact that it has a GUI and ease of use. </p>
<p>I guess what I am getting at is that the reason that would keep me from using a tool is if it lacks popularity (thus, lack of support from other peers) and lacks usability. </p>
http://stackoverflow.com/questions/115685/code-compiling-in-eclipse-but-not-on-command-line/155855#1558550Answer by Alvin for Code compiling in eclipse but not on command lineAlvin2008-10-01T01:32:53Z2008-10-01T01:32:53Z<p>Are you sure your commandline and eclipse are using same version of Java compiler and same compile setting? To find you what version of Java you are using in command line type: Java -version</p>
http://stackoverflow.com/questions/152691/is-eclipse-the-best-ide-for-java/155818#1558182Answer by Alvin for Is Eclipse the best IDE for Java?Alvin2008-10-01T01:14:26Z2008-10-01T01:19:51Z<p>I don't know if Eclipse is THE BEST Java IDE, but it is definitely very decent and my favorite IDE. I tried IntelliJ briefly before, and found that it's pretty similar to Eclipse (IntelliJ might offer some nicer features, but Eclipse is free and open source).
I never really tried NetBean because I know Eclipse before I know NetBean.</p>
<p>Eclipse is my favorite because:</p>
<ul>
<li>Free</li>
<li>Extensible (to a point that you can turn it in to C++ IDE or DB Development IDE)</li>
<li>Open source</li>
<li>I know how to write Eclipse plugin</li>
<li>You can develop a product easily with Eclipse (exp. Lime Wire is Eclipse under the hood)</li>
</ul>
<p>If you are used to using conventional Java IDE like JCreator you might need some time to get used to Eclipse. I remember when I first learned Eclipse, I didn't know how to compile Java source... </p>
<p>I would suggest that in order to find the best IDE FOR YOU, try what people recommended (NetBean, Eclipse, and IntelliJ), and see which one you like the most, then stick with it and become an expert of it. Having the right IDE will boost up your productivity a lot in my opinion. </p>
http://stackoverflow.com/questions/154185/what-is-object-marshalling/154456#1544563Answer by Alvin for What is object marshalling?Alvin2008-09-30T18:59:04Z2008-09-30T23:16:22Z<p>People have defined marshalling quite clearly already, so I'll skip the definition and jump to an example. </p>
<p>Remote procedure call uses marshalling. When invoking remote functions you will have to marshall the arguments to some kind of standard format so it can be transport across the network. </p>
http://stackoverflow.com/questions/154629/performance-testing-for-web-services-microsoft-web-application-stress-tool/154804#1548040Answer by Alvin for performance testing for web services (Microsoft web application stress tool?) Alvin2008-09-30T20:13:38Z2008-09-30T20:13:38Z<p>I recommend Webload.I used it and it was a great tool. The IDE it provides allows you to record your browser action. When doing the stress testing, Webload will draw a nice graph on the fly. </p>
<p>edit: here is the link to the webload site: <a href="http://www.webload.org/" rel="nofollow">http://www.webload.org/</a></p>
http://stackoverflow.com/questions/154314/when-to-use-final/154523#1545233Answer by Alvin for When to use finalAlvin2008-09-30T19:17:52Z2008-09-30T19:17:52Z<p>If you are writing a application that someone will have to read the code after, say, 1 year, then yes, use final on variable that should not be modified all the time. By doing this, your code will be more "self-documenting" and you also reduce the chance for other developers to do silly things like using a local constant as a local temporary variable. </p>
<p>If you're writing some throwaway code, then, nah, don't bother to identify all the constant and make them final.</p>
http://stackoverflow.com/questions/151392/how-to-stress-test-video-streaming-server/154397#1543970Answer by Alvin for How to stress-test video streaming server?Alvin2008-09-30T18:44:33Z2008-09-30T18:44:33Z<p>Thanks Andrew and Nick for the reply. I actually tried opening multiple VLC for streaming the video, but my machine dies after 40 instances of VLC. I agree that I don't need to decode the video, and I will try the multicast option and downloading file option.</p>
http://stackoverflow.com/questions/148905/how-did-you-first-get-interested-in-programming/151402#1514020Answer by Alvin for How did you first get interested in programming?Alvin2008-09-30T01:20:41Z2008-09-30T01:20:41Z<p>Got interested in programming since grade 6 when I get my first AMD 166MHZ 32MB 8GB computer and played first computer game using it; wanted to be a game programmer ever since. But I turned out to be a business application developer =\</p>
http://stackoverflow.com/questions/7492/how-do-you-stress-test-a-web-application/151382#1513822Answer by Alvin for How do you stress test a web application?Alvin2008-09-30T01:07:12Z2008-09-30T01:07:12Z<p>I tried <a href="http://www.webload.org/" rel="nofollow">WebLoad</a> it's a pretty neat tool. It comes with and test script IDE which allows you to record user action on a website. It also draws a graph as it perform stress test on your web server. Try it out, I highly recommend it. </p>
http://stackoverflow.com/questions/1409799/how-can-i-extract-html-content-efficiently-with-perl/1433735#1433735Comment by Alvin on How can I extract HTML content efficiently with Perl?Alvin2009-09-17T18:05:54Z2009-09-17T18:05:54ZThanks, you're right, I can run the task in parallel. The bottleneck was solved using the threads module. http://stackoverflow.com/questions/1409799/how-can-i-extract-html-content-efficiently-with-perl/1410185#1410185Comment by Alvin on How can I extract HTML content efficiently with Perl?Alvin2009-09-11T17:25:04Z2009-09-11T17:25:04ZThanks to your answer. I am wondering, do you know which of the module you mentioned performs better for repetitively extracting in large amount of HTML pages? http://stackoverflow.com/questions/1053878/passing-a-concrete-list-of-enummap-objects-to-generic-list-of-enummap-parameter-c/1053891#1053891Comment by Alvin on Passing a concrete List of EnumMap objects to generic List of EnumMap parameter causes compile errorAlvin2009-06-28T00:36:31Z2009-06-28T00:36:31ZThanks, I understand what you are saying, but how come changing method signature to public void myMethod(List<? extends Map<? extends MyInterface, String>> map) makes the error go away? Shouldn't the error stay?http://stackoverflow.com/questions/164048/basic-programming-algorithmic-concepts/164196#164196Comment by Alvin on Basic programming/algorithmic conceptsAlvin2008-10-02T19:57:11Z2008-10-02T19:57:11ZGive examples of how other programmers do problem solving. Come up with a program, and go through it step by step with them. People tend to learn best from examples.