User Pablo Fernandez - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T01:17:44Zhttp://stackoverflow.com/feeds/user/7595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849058/change-encoding-of-httpservletresponse0Change encoding of HttpServletResponsePablo Fernandez2009-12-04T19:14:22Z2009-12-04T19:21:10Z
<p>Hi,</p>
<p>I have an API that returns XML, it actually returns it using the default encoding (I believe it's UTF-8), but now requirements have changed and we need to return everything in UTF-16LE.</p>
<p>My question is: is there an easy way of doing this? I have access to the response just before the calls complete so I was wondering if I could do something like</p>
<pre><code>//This method does not exist
response.setCharacterEncoding("UTF-16LE");
</code></pre>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/1298848/how-to-login-in-linkedin-automatically-from-asp-net-application/1837576#18375761Answer by Pablo Fernandez for How to login in LinkedIn automatically from asp.net application?Pablo Fernandez2009-12-03T04:10:01Z2009-12-03T04:10:01Z<p>A direct (server to server) login is not possible. It wouldn't be nice to ask your users for their LinkedIn account and password.</p>
<p>You can implement OAuth between you (consumer) and LinkedIn (provider) and let the user log directly to LinkedIn. More info about this on:</p>
<p><a href="http://developer.linkedin.com/docs/DOC-1008" rel="nofollow">http://developer.linkedin.com/docs/DOC-1008</a></p>
http://stackoverflow.com/questions/1731966/library-for-oauth-consumer-java0Library for OAuth Consumer (Java)Pablo Fernandez2009-11-13T21:14:02Z2009-11-14T16:30:43Z
<p>Hi,</p>
<p>I'm looking for a Java library that helps me building an OAuth Consumer. I must be able to receive OAuth signed requests and determine whether they are valid or not (checking the signature, timestamp and nonce values).</p>
<p>Do you know if there's something out there that makes this task easier?</p>
<p>thanks a ton!</p>
http://stackoverflow.com/questions/136056/ide-or-text-editor14IDE or Text Editor?Pablo Fernandez2008-09-25T20:58:43Z2009-11-13T21:04:56Z
<p>Do you like to code using an IDE (like Eclipse or Visual Studio), or you prefer simply a text editor (like Vim) ? </p>
<p>I heard strong arguments against IDE's (specially from dynamic language programmers) but I really love Eclipse.</p>
<p>Which type do you prefer? Why? If it depends on the language please say so.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/282825/is-rails-a-black-box10Is Rails a Black Box?Pablo Fernandez2008-11-12T02:30:05Z2009-11-09T02:24:12Z
<p>I've been doing some simple rails Apps lately. I know ruby quite well, but when I started doing things "the rails way" I noticed that some things were done "just because" and It's hard for a (rails) newbie to know what does the code do.</p>
<p>Has rails missed the point and turned into some kind of 4th generation language? I mean, you HAVE to do some things (that you dont need to understand) in order to develop rails websites, and the alternative is to explore the source code to figure out what does what.</p>
<p>I've also seen that people were paying cash to anyone who could do good rails tutorials... We are talking about a framework that puts simplicity in the first place, is it necessary to PAY for good tutorials?</p>
<p>Dont get me wrong, I believe rails has brought very good ideas to the mainstream (like convention over configuration), but has this oversimplification ("just put this line of code and ... it works!") reduced the simplicity the framework was trying to achieve?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1644317/java-constructor-inheritance2Java Constructor InheritancePablo Fernandez2009-10-29T14:59:18Z2009-10-29T23:19:17Z
<p>Hi,</p>
<p>I was wondering why in java constructors are not inherited? You know when you have a class like this:</p>
<pre><code>public class Super {
public Super(ServiceA serviceA, ServiceB serviceB, ServiceC serviceC){
this.serviceA = serviceA;
//etc
}
}
</code></pre>
<p>Later when you inherit from <code>Super</code>, java will complain that there is no default constructor defined. The solution is obviously something like:</p>
<pre><code>public class Son extends Super{
public Son(ServiceA serviceA, ServiceB serviceB, ServiceC serviceC){
super(serviceA,serviceB,serviceC);
}
}
</code></pre>
<p>This code is repetitive, not DRY and useless (IMHO)... so that brings the question again:</p>
<p><strong>Why java doesn't support constructors? is there any benefit in not doing it?</strong></p>
<p>Thanks. </p>
http://stackoverflow.com/questions/389393/javascript-prototypal-inheritance-doubt3Javascript Prototypal Inheritance DoubtPablo Fernandez2008-12-23T16:45:04Z2009-10-29T14:09:40Z
<p>Hi, I've been watching Douglas Crockford's talks at YUI Theater and I have a question about javascript inheritance...</p>
<p>Douglas gives this example to show that "Hoozit" inherits from "Gizmo":</p>
<pre><code>function Hoozit(id) {
this.id = id;
}
Hoozit.prototype = new Gizmo();
Hoozit.prototype.test = function (id) {
return this.id === id;
};
</code></pre>
<p>My question is: Why does he writes Hoozit.prototype = new Gizmo() instead of Hoozit.prototype = Gizmo.prototype?</p>
<p>Is there any difference between these two?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/106222/what-does-osgi-solve19What Does OSGi Solve?Pablo Fernandez2008-09-19T22:45:49Z2009-10-20T16:18:14Z
<p>I've read on wikipedia and other sites about OSGi, but I don't really see the big picture. It says that it's a component based platform, and that you can reload modules at runtime. Also the "practical example" given everywhere is the Eclipse Plugin Framework.</p>
<p>My questions are:</p>
<p>1) What is the CLEAR and SIMPLE definition of OSGi?</p>
<p>2) What COMMON PROBLEMS does it solve?</p>
<p>By "common problems" I mean problems we face everyday, like "what can OSGi do for making our jobs more efficient/fun/simple"</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1539567/jquery-hover-over-child-elements-makes-quirky-effects0jQuery hover over child elements makes quirky effectsPablo Fernandez2009-10-08T18:13:15Z2009-10-08T18:53:52Z
<p>Hi</p>
<p>I've got this markup (simplified):</p>
<pre><code><div class='item'>
<a> one link </a>
<a class='trash'><img src='trash.png'/></a>
</div>
</code></pre>
<p>I'm highlighting the div when the mouse enters, and showing the (otherwise hidden) 'trash' link (it's like a tiny trash bin) so the user can delete the link.</p>
<p>I can't use 'hover' effect, because I need them to be <strong>live</strong> events. So I'm doing mouseover and mouseout. This is the code:</p>
<pre><code>$('div.link').live('mouseout', function(e){
console.log(e)
if(e.target == this){
$(this).removeClass('hover');
$(this).children('a.trash').fadeOut();
}
});
</code></pre>
<p>(mouse over does the exacto opposite).</p>
<p>The animation looks quirky though, what am I doing wrong?</p>
<p>Thanks so much!</p>
http://stackoverflow.com/questions/1525106/free-alternative-to-amazon-s31free alternative to amazon S3Pablo Fernandez2009-10-06T11:48:26Z2009-10-07T21:43:18Z
<p>Hi,</p>
<p>I'm looking for an online simple storage service like Amazon's that is free. It doesnt have to be that reliable, fast or well documented.</p>
<p>It can also be a "free" version, like up to 10 Mb of storage. I need it for a very small file.</p>
<p>I was thinking about something like rapidshare but with a REST / RPC interface</p>
<p>Is there anything like this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1494451/learning-html-53Learning HTML 5Pablo Fernandez2009-09-29T19:25:33Z2009-09-30T06:38:38Z
<p>I've seen some cool stuff that HTML 5 can achieve, but when I browsed amazon to see if there was a good book on the topic, there was none (at least today: 11/29/09).</p>
<p>So my question is:</p>
<p>Do you know about a good tutorial (a deep one, not just a quick how-to) for HTML5? </p>
<p>Please don't point me to the reference, I'm looking for something more practical.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1291278/different-resource-representations-rest-api0Different Resource Representations (REST API)Pablo Fernandez2009-08-18T00:54:03Z2009-09-25T06:17:50Z
<p>Hi,</p>
<p>I'm developing a REST API and I have a question about resource representations.</p>
<p>Suppose I got the "person" resource under the /app/person/{id} URI. I need an XML representation, that basically is all the object fields as XML nodes under the root. Now requirements indicate that we must also support another kind of XML representation enforced by a proprietary schema.</p>
<p>The question is: is it under REST best practices to support a proprietary content type like "text/my-type" for the same resource? note that both are XML but formatted differently, and most important they don't carry the same information (eg. one representation may include other fields like "modified-since")</p>
<p>Important!: I know that being pragmatic and keeping it simple it's more important than guides and "best practices" but I just wanted to know if that's the way to go under a RESTful architecture.</p>
http://stackoverflow.com/questions/1435642/java-filter-list-items1Java: filter list items [closed]Pablo Fernandez2009-09-16T21:40:12Z2009-09-18T17:07:13Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection">Java: What is the best way to filter a Collection?</a> </p>
</blockquote>
<p>Hi,</p>
<p>I'm doing some collection filtering, my actual code looks like this:</p>
<pre><code>List<Item> filtered_list = new List<Item>();
for(Item it : original_list){
if(it.isSpecial) filtered_list.add(it)
}
original_list = filtered_list;
</code></pre>
<p>I really don´t know why... but this code <em>feels</em> wrong. Is there a better way to filter a list?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1066660/algorithm-analysis-question4Algorithm Analysis QuestionPablo Fernandez2009-06-30T23:45:38Z2009-09-16T06:00:30Z
<p><em>NOTE: I'm ultra-newbie on algorithm analysis so don't take any of my affirmations as absolute truths, anything (or everything) that I state could be wrong.</em></p>
<p>Hi, I'm reading about algorithm analysis and "Big-O-Notation" and I fell puzzled about something.</p>
<p>Suppose that you are asked to print all permutations of a char array, for [a,b,c] they would be ab, ac, ba, bc, ca and cb.</p>
<p><hr /></p>
<p>Well one way to do it would be (In Java):</p>
<pre><code>for(int i = 0; i < arr.length; i++)
for(int q = 0; q < arr.length; q++)
if(i != q)
System.out.println(arr[i] + " " + arr[q]);
</code></pre>
<p>This algorithm has a notation of <strong>O(n<sup>2</sup>)</strong> if I'm correct.</p>
<p><hr /></p>
<p>I thought other way of doing it:</p>
<pre><code>for(int i = 0; i < arr.length; i++)
for(int q = i+1; q < arr.length; q++)
{
System.out.println(arr[i] + " " + arr[q]);
System.out.println(arr[q] + " " + arr[i]);
}
</code></pre>
<p>Now this algorithm is <strong>twice as fast than the original</strong>, but unless I'm wrong, for big-O-notation it's also a <strong>O(<sup>2</sup>)</strong></p>
<p><hr /></p>
<p>Is this correct? Probably it isn't so I'll rephrase: Where am I wrong??</p>
http://stackoverflow.com/questions/1376765/fastest-way-to-copy-text-from-a-file-to-a-httpservletresponse2Fastest way to copy text from a File to a HttpServletResponsePablo Fernandez2009-09-04T01:07:58Z2009-09-04T07:12:50Z
<p>Hi,</p>
<p>I need a very fast way to copy text from a file to the body of a HttpServletResponse.</p>
<p>Actually I'm copying byte by byte in a loop, from a bufferedReader to the response.getWriter() but I believe there must be a faster and more straightforward way of doing it.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/883930/calling-snarl-from-java-code0Calling Snarl from java codePablo Fernandez2009-05-19T16:59:27Z2009-08-31T17:00:03Z
<p>Hi,</p>
<p>Does anyone know how to call <a href="http://www.fullphat.net/index.php" rel="nofollow">snarl</a> api from java code?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1314835/mapping-collection-to-xml-in-castor0Mapping collection to XML in CastorPablo Fernandez2009-08-22T01:11:05Z2009-08-24T07:13:31Z
<p>Hi, </p>
<p>I'm trying to map a POJO to XML using Castor.</p>
<p>Let's say I have a Order that has a collection of Items... is there any way of achieving an xml like the following:</p>
<pre><code><order>
...order attributes
<items>
<item> ..item attributes </item>
<item> ..other item </item>
</items>
</order>
</code></pre>
<p>I could make something similar but without the <code><items></code> node. This wouldn't be a problem in other case but my XML must adhere to a strict XSD schema so I need to do it like that.</p>
<p>Thanks!</p>
<p><hr /></p>
<p>I though of a kind of "workaround" that would involve creating a new java object (that would be the node) that would only contain the list of items... can anyone think of a better approach? there's a 100 rep bounty open since now!</p>
http://stackoverflow.com/questions/1274039/overhead-of-using-local-http-calls2overhead of using local http callsPablo Fernandez2009-08-13T19:19:34Z2009-08-13T20:34:24Z
<p>Hi,</p>
<p>I'm developing a <a href="http://en.wikipedia.org/wiki/Wrapper%5Fpattern" rel="nofollow">wrapper</a> around an existent RESTful API. I basically have to do some preprocessing, calling the underlying API, and some preprocessing, with a little bit of cache in the middle. The API is specially designed for RESTful access via http.</p>
<p>My question is, should I refactor the API so I can invoke it via code, or should I make local http calls to it. This second option seems nice since it increases decoupling, but I'm afraid that creating the http requests / responses can seriously affect performance. I've heard though that <a href="http://couchdb.apache.org/" rel="nofollow">couchDB</a> does something like that (its api is RESTful and accessed via http).</p>
http://stackoverflow.com/questions/1143586/in-need-of-refactoring-in-order-to-improve-testability1In Need of Refactoring in Order to Improve TestabilityPablo Fernandez2009-07-17T14:18:06Z2009-07-18T16:35:23Z
<p>Hi, I'm testing a simple DAO layer with mockito but I found a problem, basically a hard to test interface and I was wondering if you could give me some insight...</p>
<p>This is the method I want to test:</p>
<pre><code>public Person getById(UserId id) {
final Person person = new PersonImpl();
gateway.executeQuery(GET_SQL + id.getUserId(), new ResultSetCommand(){
public int work(ResultSet rs) throws SQLException {
if(rs.next()){
person.getName().setGivenName(rs.getString("name"));
person.getName().setFamilyName(rs.getString("last_name"));
}
return 0;
}
});
return person;
}
</code></pre>
<p>I use a DatabaseGateway that is my interface between java code and SQL, and that method accepts an anonymous class, this is the method executeQuery of the gateway:</p>
<pre><code> public int executeQuery(String sql, ResultSetCommand cmd) {
try{
Connection cn = createConnection();
PreparedStatement st = cn.prepareStatement(sql);
int result = cmd.work(st.executeQuery());
cn.close();
return result;
}catch(Exception e){
throw new RuntimeException("Cannot Create Statement for sql " + sql,e);
}
}
</code></pre>
<p>The thing is that, because of that anonymous class, It's getting harder to test PersonDAO.</p>
<p>I can refactor the whole code, even remove the anonymous class if someone suggest a better design (I'm sure there's a simpler one, but I just can't seem to find it).</p>
<p>Thanks everyone for the suggestions.</p>
<p>PD: if you need further information, feel free to ask</p>
<p><hr /></p>
<p><strong>EDIT: Test that's hard to do</strong></p>
<pre><code>public void testGetPersonById(){
DatabaseGateway gateway = mock(DatabaseGateway.class);
when(gateway.executeQuery(anyString(),any(ResultSetCommand.class)));
PersonDAO person_dao = new PersonDAOImpl(gateway);
Person p = person_dao.getById(new UserId(Type.viewer,"100"));
}
</code></pre>
<p>See? ResultCommand is part of the mock, and I'm interested in testing that code too... should I do a separate test for that specific command?</p>
http://stackoverflow.com/questions/1145950/how-to-test-anonymous-classes1How to test anonymous classes?Pablo Fernandez2009-07-17T22:26:37Z2009-07-17T22:42:42Z
<p>I believe you must be familiar with this idiom, which is sort of java's excuse for closures</p>
<pre><code>//In the "Resource Manager" class
public void process(Command cmd){
//Initialize
ExpensiveResource resource = new ExpensiveResource();
//Use
cmd.execute(resource);
//Release / Close
resource.close();
}
//In the Client class...
manager.process(new Command(){
public void execute(ExpensiveResource res){
//Do things with the resource
}
});
</code></pre>
<p>I used this idiom/pattern a lot but <a href="http://stackoverflow.com/questions/1143586/in-need-of-refactoring-in-order-to-improve-testability">recently I tried to test it</a>, and It's giving me a headache...</p>
<p>How do you get to test in isolation the ResourceManager and the Client classes? I found that this tight-couples them so much that you cannot do it easily.</p>
<p>Ideas are appreciated.</p>
<p>Regards</p>
http://stackoverflow.com/questions/1055910/using-ajax-is-it-better-to-generate-aditional-markup-in-the-server-or-the-client/1055967#10559672Answer by Pablo Fernandez for Using Ajax, is it better to generate aditional markup in the server or the client side?Pablo Fernandez2009-06-28T22:52:33Z2009-06-28T22:52:33Z<p>I'll be extremely pragmatic here:</p>
<p><strong>It depends on the amount and the complexity of the new markup.</strong> </p>
<p>If you need to return a elaborate piece of HTML, it's always better to write it in the server side and returning it as data, it's also easier to maintain.
Building complex HTML in the client side usually is cryptic, even with the use of modern js libraries.
On the other hand, if your extra markup is small, then you can create it with js. I've never done anything with ASP.NET AJAX, but having a asp.net page, a rails view, or a JSP with only a small fragment like <code><p class='info'>Row Updated</p></code> its confusing.</p>
<p>Let the code speak to you, If you're fighting against javascript code to create markup in the client side, maybe it should go in the server side. </p>
<p>Lastly: don't worry too much about the size of HMTL vs JSON, and if you do, <a href="http://getfirebug.com/" rel="nofollow">benchmark</a> the requests to see if the difference isn't negligible.</p>
http://stackoverflow.com/questions/763691/programming-riddle-how-might-you-translate-an-excel-column-name-to-a-number10Programming Riddle: How might you translate an Excel column name to a number?Pablo Fernandez2009-04-18T16:13:32Z2009-06-18T18:15:38Z
<p>I was recently asked in a job interview to resolve a programming puzzle that I thought it would be interesting to share. It's about translating Excel column letters to actual numbers, if you recall, Excel names its columns with letters from A to Z, and then the sequence goes AA, AB, AC... AZ, BA, BB, etc.</p>
<p>You have to write a function that accepts a string as a parameter (like "AABCCE") and returns the actual column number.</p>
<p>The solution can be in any language.</p>
http://stackoverflow.com/questions/383402/is-javascript-s-new-keyword-considered-harmful26Is JavaScript 's "new" Keyword Considered Harmful?Pablo Fernandez2008-12-20T15:20:07Z2009-06-17T07:11:37Z
<p>In another <a href="http://stackoverflow.com/questions/377716/javascript-automatic-gettersetters-john-resig-book">question</a>, a user pointed out that the <code>new</code> keyword was dangerous to use and proposed a solution to object creation that did not use <code>'new</code>'... I didn't believe that was true, mostly because I've used Prototype, Scriptaculous and other excellent JavaScript libraries, and everyone of them used the <code>new</code> keyword...</p>
<p>In spite of that, yesterday I was watching Douglas Crockford's talk at YUI theater and he said the exactly same thing, that he didn't use the <code>new</code> keyword anymore in his code.</p>
<p>Is it 'bad' to use the <code>new</code> keyword? what are the advantages and disadvantages of using it?</p>
http://stackoverflow.com/questions/1004314/getchar-question4getchar() question Pablo Fernandez2009-06-16T22:51:04Z2009-06-16T23:22:39Z
<p>Hi, this is such a newbie question that I'm almost embarrassed to ask it :$ ... but anyway:</p>
<p>I've started reading "<a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a>" (K&R) and I have a doubt about the getchar() function.</p>
<p>For example this code:</p>
<pre><code>#include <stdio.h>
main(){
int c;
c = getchar();
putchar(c);
printf("\n");
}
</code></pre>
<p>given the entry "toomanychars" + CTRL+D (EOF) prints just "t". I think that's expected since it's the first character introduced.</p>
<p>But then this other piece of code:</p>
<pre><code>#include <stdio.h>
main(){
int c;
while((c = getchar()) != EOF)
putchar(c);
}
</code></pre>
<p>given "toomanychars" + CTRL+D (EOF) prints "toomanychars".</p>
<p>My question is, why does this happens if I only have a single char variable? where are the rest of the characters stored?</p>
<p>Thanks.</p>
<p><strong>EDIT:</strong></p>
<p>Thanks to everyone for the answers, I start to get it now... only one catch:</p>
<p>The first program exits when given CTRL+D while the second prints the whole string and then waits for more user input. Why does it waits for another string and does not exit like the first?</p>
http://stackoverflow.com/questions/983901/what-steps-are-followed-after-you-say-rake-install/983952#9839521Answer by Pablo Fernandez for What steps are followed after you say "rake install"?Pablo Fernandez2009-06-11T21:55:22Z2009-06-11T21:55:22Z<p>a rake file is a collection of tasks, when you call rake with an argument (in this case install) that's the task that get's executed. (It's similar to ant if you come from Java)</p>
<p>So, no, rake does not execute the whole rakefile when you call "rake + task" but only the task chosen. Note that tasks can have dependencies (eg the "test" task may depend on other previous tasks, like creating some folders and stuff for the tests to run).</p>
<p>Lastly, the rake user guide as pointed by other users is useful, but I recommend a more enjoyable read here -> <a href="http://www.railsenvy.com/2007/6/11/ruby-on-rails-rake-tutorial" rel="nofollow">Ruby on Rails Rake tutorial</a>.</p>
http://stackoverflow.com/questions/977335/groovy-stub-typed-reference/977445#9774450Answer by Pablo Fernandez for Groovy: stub typed referencePablo Fernandez2009-06-10T18:42:15Z2009-06-10T19:00:37Z<p>I'm guessing this is for test purposes only.</p>
<p>The line</p>
<pre><code>Foo foo
</code></pre>
<p>creates a getter / setter pair, so you can inject a mock in your test cases doing:</p>
<p>new MyClass().foo = new MockFoo()</p>
<p>If you don't want to create the mock for yourself, try a mocking library, I recommend using <a href="http://mockito.org/" rel="nofollow">mockito</a>. With this small library you can do something like this:</p>
<pre><code>import static org.mockito.Mockito.*;
new MyClass().foo = mock(Foo.class);
</code></pre>
http://stackoverflow.com/questions/977332/is-emacs-worth-the-trouble0Is Emacs Worth The Trouble? [closed]Pablo Fernandez2009-06-10T18:20:20Z2009-06-10T18:52:38Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/48006/is-it-worth-investing-time-in-learning-to-use-emacs">Is it worth investing time in learning to use emacs?</a> </p>
</blockquote>
<p>Hi,</p>
<p>I've been reading a lot of articles encouraging the learning of Emacs editor. I googled a bit and found an interesting book <a href="http://rads.stackoverflow.com/amzn/click/0596006489" rel="nofollow">Learning GNU Emacs</a>.</p>
<p>My question is, knowing that is not an easy thing to master, and that the previous mentioned book is about 600-700 pages (!)...</p>
<p>Is emacs worth the time spent learning it?</p>
<p>Please resist the temptation to saying "YES", just because. The question is not "learning emacs vs not learning emacs" but "spending time learning emacs or spending time learning something else", like haskell or LISP.</p>
http://stackoverflow.com/questions/971106/jquery-prototype-conflict/971141#9711410Answer by Pablo Fernandez for jQuery -prototype conflictPablo Fernandez2009-06-09T16:28:28Z2009-06-09T16:28:28Z<p>Strange bug. Anyways, both prototype and jQuery redefine the global variable $.</p>
<p>Please read <a href="http://docs.jquery.com/Using%5FjQuery%5Fwith%5FOther%5FLibraries" rel="nofollow">this</a> to know how jQuery can play nice with other libraries.</p>
<p>It basically says that calling jQuery.noConflict() leaves the $ variable alone for the other libs to use</p>
http://stackoverflow.com/questions/951021/javascript-sleep/951064#9510641Answer by Pablo Fernandez for Javascript sleepPablo Fernandez2009-06-04T14:47:52Z2009-06-04T14:47:52Z<p>First:</p>
<p>Define a function you want to execute like this:</p>
<pre><code>function alertWorld(){
alert("Hello World");
}
</code></pre>
<p>Then schedule its execution with the setTimeout method:</p>
<pre><code>setTimeout(alertWorld,1000)
</code></pre>
<p>Note two things</p>
<ul>
<li>the second argument is time in miliseconds</li>
<li>as a first argument you have to pass just the name (reference) of the function, without the parenthesis</li>
</ul>
http://stackoverflow.com/questions/947476/calling-a-windows-form-from-another-thread-net5Calling a windows form from another thread (.Net)Pablo Fernandez2009-06-03T21:54:44Z2009-06-03T22:01:14Z
<p>Hi I'm developing a .Net application and I want to achieve the following:</p>
<p>I have a winforms application, and a timer (System.Timers.timer) that excecutes a thread based on a schedule. The problem is that I cannot access the UI (windows form) from the secondary thread (WorkerThread), the error say something like the component cannot be accessed from a thread that didn't create it.</p>
<p>Is there any way to achieve this? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1787625/disable-ie-menu-while-displaying-a-custom-dialog/1787635#1787635Comment by Pablo Fernandez on Disable IE menu while displaying a custom dialogPablo Fernandez2009-11-24T03:49:50Z2009-11-24T03:49:50ZI'll have to agree with Josh. You wont be able to do what you want with a native dialog (such as an alert or a confirm box) http://stackoverflow.com/questions/1787625/disable-ie-menu-while-displaying-a-custom-dialogComment by Pablo Fernandez on Disable IE menu while displaying a custom dialogPablo Fernandez2009-11-24T03:48:15Z2009-11-24T03:48:15ZAnd here's +1. This answer does not deserve to be down-voted http://stackoverflow.com/questions/1787625/disable-ie-menu-while-displaying-a-custom-dialogComment by Pablo Fernandez on Disable IE menu while displaying a custom dialogPablo Fernandez2009-11-24T03:44:08Z2009-11-24T03:44:08ZHey this is a community, I'll rephrase your question, feel free to tell me if that's what you meant.http://stackoverflow.com/questions/1731966/library-for-oauth-consumer-java/1732139#1732139Comment by Pablo Fernandez on Library for OAuth Consumer (Java)Pablo Fernandez2009-11-13T23:07:42Z2009-11-13T23:07:42ZI Think those are client only libshttp://stackoverflow.com/questions/1731966/library-for-oauth-consumer-java/1731977#1731977Comment by Pablo Fernandez on Library for OAuth Consumer (Java)Pablo Fernandez2009-11-13T21:21:39Z2009-11-13T21:21:39ZI'm not using Spring in my project but Guice.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406807#406807Comment by Pablo Fernandez on What's your most controversial programming opinion?Pablo Fernandez2009-11-13T21:06:28Z2009-11-13T21:06:28Z@Loadmaster ruby has <i>attr_reader</i>, you should give it a tryhttp://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406807#406807Comment by Pablo Fernandez on What's your most controversial programming opinion?Pablo Fernandez2009-11-12T03:26:34Z2009-11-12T03:26:34Z@Matt: it´s OK to disagree (this is supposed to be controversial), but please read the whole answer and not only the title. I've wrote "anyone who uses public fields deserves jail time" in bold. You are missing the pointhttp://stackoverflow.com/questions/1644317/java-constructor-inheritance/1644393#1644393Comment by Pablo Fernandez on Java Constructor InheritancePablo Fernandez2009-10-29T20:35:44Z2009-10-29T20:35:44ZPlease explain why you say that my hierarchy is <i>distorted</i>. And I've never mentioned a buzzword framework, in fact I'm just using Guice + Plain old servlets.http://stackoverflow.com/questions/1644317/java-constructor-inheritance/1644393#1644393Comment by Pablo Fernandez on Java Constructor InheritancePablo Fernandez2009-10-29T15:18:46Z2009-10-29T15:18:46ZSuper is in reality a LayerSupertype (<a href="http://martinfowler.com/eaaCatalog/layerSupertype.html" rel="nofollow">martinfowler.com/eaaCatalog/layerSupertype.html/…</a>) of my service layer. And I need the dependencies injected in the constructor to support DI. My design is not <i>messed up</i>http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406807#406807Comment by Pablo Fernandez on What's your most controversial programming opinion?Pablo Fernandez2009-10-28T02:31:02Z2009-10-28T02:31:02Z@Ravn The idea of interfaces is not exposing the implementation. So why would you make a getter and setter of each of your fields in an interface? http://stackoverflow.com/questions/1525106/free-alternative-to-amazon-s3/1525118#1525118Comment by Pablo Fernandez on free alternative to amazon S3Pablo Fernandez2009-10-06T12:49:11Z2009-10-06T12:49:11ZDoes it have a programmatic interface? I just scammed the page and couldnt find it http://stackoverflow.com/questions/1525106/free-alternative-to-amazon-s3Comment by Pablo Fernandez on free alternative to amazon S3Pablo Fernandez2009-10-06T12:18:42Z2009-10-06T12:18:42ZI disagree. This is programming related and not a SuperUser question.http://stackoverflow.com/questions/1494451/learning-html-5/1494474#1494474Comment by Pablo Fernandez on Learning HTML 5Pablo Fernandez2009-09-29T20:01:19Z2009-09-29T20:01:19Zvery interesting! do you know if the content is being updated periodically?http://stackoverflow.com/questions/1494451/learning-html-5Comment by Pablo Fernandez on Learning HTML 5Pablo Fernandez2009-09-29T19:26:04Z2009-09-29T19:26:04Zfunny: I had to split the title HTML5 to HTML 5 because SO didn't allow titles less than 15 chars.http://stackoverflow.com/questions/1435642/java-filter-list-items/1436050#1436050Comment by Pablo Fernandez on Java: filter list itemsPablo Fernandez2009-09-18T15:34:29Z2009-09-18T15:34:29ZNice, but it´s far from concise now