User Alexandros - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T10:32:03Z http://stackoverflow.com/feeds/user/24461 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1868561/tools-for-remote-peer-programming 1 Tools for Remote Peer Programming Alexandros 2009-12-08T17:33:07Z 2009-12-08T19:31:57Z <p>Me and a friend are working on a side-project where most of the development is done with both of us sitting on the same machine. We will soon be based in different locations but would like to continue working in a similar manner. What tools would you use to enable such an environment?</p> <p>EDIT: This includes not only collaborative editing, but also running the code, so a collaborative text editor (such as etherpad/google wave) alone won't do, as we would then have to save locally and execute, which over hundreds of cycles adds up to considerable time lost.</p> http://stackoverflow.com/questions/1833649/intercepting-and-replacing-page-level-http-requests-with-custom-extension-made-re 1 Intercepting and replacing page-level HTTP requests with custom extension-made responses? Alexandros 2009-12-02T15:31:37Z 2009-12-02T15:31:37Z <p>I am making a firefox extension which injects most of its interface in the pages. However, if I want images in that interface, I am unable to inject them. So what I am trying is to intercept specific http requests and replace them with the local images. So far I have been able to intercept specific pages and replace them with others, but I am not able to replace just an image. Any ideas?</p> http://stackoverflow.com/questions/208063/http-authentication-basic-or-digest-in-asp-classic-via-iis 2 HTTP Authentication (Basic or Digest) in ASP Classic via IIS Alexandros 2008-10-16T10:43:33Z 2009-11-13T01:46:06Z <p>I want to develop a website in ASP classic that uses HTTP Authentication against a database or password list that is under the control of the script. Ideally, the solution should involve no components or IIS settings as the script should be runnable in a hosted environment.</p> <p>Any clues/code deeply appreciated.</p> http://stackoverflow.com/questions/1022803/how-can-i-find-shortened-urls-that-link-to-a-specific-long-url 2 How can I find shortened URLs that link to a specific long URL? Alexandros 2009-06-20T23:35:53Z 2009-10-28T22:57:41Z <p>This is the reverse of the usual expanding short URLs question. </p> <p>For a given Long URL, how can I find which short URLs link to it? </p> <p>If this needs to go through the APIs of the shorteners, apointers ot the ones which support such a query would be appreciated.</p> http://stackoverflow.com/questions/161712/what-is-the-size-limit-of-the-application-object-in-classic-asp 2 What is the size limit of the application object in classic asp? Alexandros 2008-10-02T10:42:40Z 2009-10-22T04:19:01Z <p>I am creating an ASP script that uses the application object to store the pages. The question in my mind is whether there is a size limit to this object. Anyone know?</p> http://stackoverflow.com/questions/224058/distributed-random-number-generation 2 Distributed Random Number Generation Alexandros 2008-10-22T00:28:03Z 2008-10-23T22:28:17Z <p>I was wondering if there is a way for a network of N participants to agree that a number from 1 to M was chosen at random. (e.g. not influenced by any of the participants) This has been solved for values of n=2 and m=2 by the <a href="http://everything2.com/title/Coin%2520tossing%2520protocol" rel="nofollow">coin tossing protocol</a>. Does anyone know of any solutions that can work for arbitrary values of N and M?</p> http://stackoverflow.com/questions/227517/audio-watermarking-open-source-projects 0 Audio watermarking open source projects Alexandros 2008-10-22T20:55:35Z 2008-10-22T21:11:12Z <p>Are you aware of any open source libraries/projects that offer audio watermarking capability?</p> http://stackoverflow.com/questions/170458/application-object-and-concurrency-concerns 0 Application Object and Concurrency Concerns Alexandros 2008-10-04T14:51:40Z 2008-10-10T09:20:34Z <p>In some asp tutorials, like <a href="http://www.4guysfromrolla.com/webtech/050900-1.shtml" rel="nofollow">this</a>, i observe the following pattern:</p> <blockquote> <p>Application.Lock</p> <p>'do some things with the application object</p> <p>Application.Unlock</p> </blockquote> <p>However, since web pages can have multiple instances, there is an obvious concurrency problem. So my questions are the following:</p> <p>What if one page tries to lock while the object is already locked?</p> <p>Is there a way to detect whether the application object is locked?</p> <p>Is it better to just work on an unlocked application object or does that have other consequences?</p> <p>What if there is only one action involving the application object? ~Is there a reason to lock/unlock in that case?</p> http://stackoverflow.com/questions/170465/is-there-a-caching-script-for-classic-asp 2 Is there a caching script for classic asp? Alexandros 2008-10-04T14:54:13Z 2008-10-10T09:20:00Z <p>PHP has a number of opcode caches, which as i understand it are scripts that handle the caching aspects of an application. Is there something similar for classic asp, especially something that does not require component installation?</p> <p>Regarding the IIS caching behaviour, it seems from reading <a href="http://lb1.www.ms.akadns.net/technet/prodtechnol/WindowsServer2003/Library/IIS/a9171159-c801-4705-b8a9-9eecf58a892f.mspx?mfr=true" rel="nofollow">here</a> that the behaviour is relevant to some sort of pre-compilation step rather than finished pages. please correct me if i am wrong</p> http://stackoverflow.com/questions/152871/isnt-resource-oriented-really-object-oriented/176669#176669 0 Answer by Alexandros for Isn't resource-oriented really object-oriented? Alexandros 2008-10-06T23:29:15Z 2008-10-06T23:29:15Z <p>Objects bundle state and function together. Resource-orientation is about explicitly modeling state(data), limiting function to predefined verbs with universal semantics (In the case of HTTP, GET/PUT/POST/DELETE), and leaving the rest of the processing to the client. </p> <p>There is no equivalent for these concepts in the object-orientation world.</p> http://stackoverflow.com/questions/46004/how-do-you-implement-resource-edit-forms-in-a-restful-way/176639#176639 0 Answer by Alexandros for How do you implement resource "edit" forms in a RESTful way? Alexandros 2008-10-06T23:22:22Z 2008-10-06T23:22:22Z <p>Obviously there are many different alternatives you can use. A good solution is provided at the <a href="http://microformats.org/wiki/rest/urls" rel="nofollow">microformats wiki</a> and has also been referenced by the RESTful JSON crew. As close as you can get to a standard, really.</p> <pre><code> Operate on a Record GET /people/1 return the first record DELETE /people/1 destroy the first record POST /people/1?_method=DELETE alias for DELETE, to compensate for browser limitations GET /people/1/edit return a form to edit the first record PUT /people/1 submit fields for updating the first record POST /people/1?_method=PUT alias for PUT, to compensate for browser limitations </code></pre> http://stackoverflow.com/questions/152187/what-authentication-to-pick-for-the-cross-platform-wcf-service/176562#176562 1 Answer by Alexandros for What authentication to pick for the cross-platform WCF service? Alexandros 2008-10-06T23:02:01Z 2008-10-06T23:02:01Z <p>Since you mention REST, i assume over HTTP, you could look at HTTP Digest Authentication. </p> <p>However, keep in mind that XML-RPC is <i>not</i> RESTful. If you are going the way of WS/RPC, you might want to look at WS-Security.</p> http://stackoverflow.com/questions/174181/in-which-layer-are-you-putting-your-rest-api/176548#176548 2 Answer by Alexandros for In which layer are you putting your REST api? Alexandros 2008-10-06T22:58:19Z 2008-10-06T22:58:19Z <p>It really is relative to what you mean workflow.</p> <p>Hypermedia as the engine of application state will give you a directed graph of states/resources. It is not necessary that these graphs form a workflow (e.g have a specific start and end point). They may well form a cycle, have bidirectional links and whatnot. I assume this graph is somehow derrived from the business logic.</p> <p>If you include your workflow (a specific path from one point to another via the graph) in you UI, you make some assumptions about the REST API therefore tightly coupling your UI with the business logic, therefore throwing the discoverability of REST away.</p> <p>In general mixing workflows (imperative programming) with REST (declarative programming) is very problematic. The best approach would be to have an adaptive UI that can allow the user to navigate the network of states instead of constraining them through bespoke, predetermined workflows. That is how a browser works, anyways.</p> <p>If you really need to have some workflows though, you could implement them by creating a chain of interconnected resources and guiding the user to the first one. In this sense, your first option would be valid although I find the seperation of business logic and workflow to be a grey area. Workflows <i>are</i> part of the business logic or, to state it better, are derrived <i>from</i> the business logic.</p> <p>These opinions are my own, however a good, relevant article on the topic can be found here: <a href="http://www.infoq.com/articles/webber-rest-workflow" rel="nofollow">http://www.infoq.com/articles/webber-rest-workflow</a></p> http://stackoverflow.com/questions/167577/access-to-old-no-longer-available-feed-entries 4 Access to old, no longer available, Feed entries. Alexandros 2008-10-03T16:00:42Z 2008-10-03T18:02:43Z <p>I am working on a project that requires reliable access to historic feed entries not necessarily available in the current feed of the website. I have found several ways to access such data, but none of them give me all the characteristics I need.</p> <p>Look at this as a brainstorm. I will tell you how much I have found and you can contribute if you have any other ideas.</p> <ol> <li><p>Google AJAX Feed API [<a href="http://code.google.com/apis/ajaxfeeds/" rel="nofollow">http://code.google.com/apis/ajaxfeeds/</a>] - will limit you to 250 items</p></li> <li><p>Unofficial Google Reader API [<a href="http://www.niallkennedy.com/blog/2005/12/google-reader-api.html" rel="nofollow">http://www.niallkennedy.com/blog/2005/12/google-reader-api.html</a>] - Perfect but unofficial and therefore unreliable (and perhaps quasi-illegal?). Also, the authentication seems to be tricky.</p></li> <li><p>Spinn3r [<a href="http://spinn3r.com/" rel="nofollow">http://spinn3r.com/</a>] - Costs a lot of money</p></li> <li><p>Spidering the internet archive at the site of the feed [www.archive.org] - Lots of complexity, spotty coverage, only useful as a last resort</p></li> <li><p>Yahoo! Feed API [<a href="http://www.niallkennedy.com/blog/2005/12/my-yahoo-feed-a.html" rel="nofollow">http://www.niallkennedy.com/blog/2005/12/my-yahoo-feed-a.html</a>], Yahoo! Search BOSS [<a href="http://developer.yahoo.com/search/boss/" rel="nofollow">http://developer.yahoo.com/search/boss/</a>] - The first looks more like an aggregator, meaning i'd need a different registration for each feed and the second should give more access to yahoo's data but i can find no mention of feeds.</p></li> <li><p>[thanks to Lou Franco] Bloglines Sync API [<a href="http://www.bloglines.com/services/api/sync" rel="nofollow">http://www.bloglines.com/services/api/sync</a>] - Besides the problem of needing an account and being designed more as an aggregator, It does not have a way to add feeds to the account. So no retreival of arbitrary feeds. you need to manually add them through the reader first.</p></li> <li><p>other search engines/blog search/whatever?</p></li> </ol> <p>This is a really irritating problem as we are talking about semantic information that was once out there, is still (usually) valid, yet is difficult to access reliably, freely and without limits. Anybody know any alternative sources for feed entry goodness?</p> http://stackoverflow.com/questions/163342/how-do-i-read-all-feed-items/167506#167506 0 Answer by Alexandros for How do I read all feed items? Alexandros 2008-10-03T15:45:44Z 2008-10-03T15:45:44Z <p>Extending thomas' answer, The two google-related archives of feed data you can find are the official one:</p> <p>Google AJAX Feed API <a href="http://code.google.com/apis/ajaxfeeds/" rel="nofollow">http://code.google.com/apis/ajaxfeeds/</a></p> <p>which will limit you to 250 items, and the unofficial one:</p> <p>Google Reader API <a href="http://www.niallkennedy.com/blog/2005/12/google-reader-api.html" rel="nofollow">http://www.niallkennedy.com/blog/2005/12/google-reader-api.html</a></p> <p>which will give you unlimited (i think) items but you will need to work around their authentication (something with cookies) and pray they don't change or drop the API (as it is undocumented).</p> http://stackoverflow.com/questions/166023/does-the-classic-asp-has-its-own-security-framework-or-does-it-use-that-of-iis/166286#166286 2 Answer by Alexandros for Does the classic ASP has its own security framework or does it use that of IIS? Alexandros 2008-10-03T10:41:37Z 2008-10-03T10:41:37Z <p>ASP is a very simple framework. I cannot imagine it having its own security framework (i assume that means user authentication etc.) unless it was programmed into the application itself.</p> http://stackoverflow.com/questions/166160/how-can-i-scale-the-content-of-iframe/166271#166271 1 Answer by Alexandros for how can I scale the content of iframe Alexandros 2008-10-03T10:37:29Z 2008-10-03T10:37:29Z <p>I do not think HTML has such functionality. The only thing I can imagine would do the trick is to do some server-side processing. Perhaps you could get an image snapshot of the webpage you want to serve, scale it on the server and serve it to the client. This would be a non-interactive page however. (maybe an imagemap could have the link, but still.) </p> <p>Another idea would be to have a server-side component that would alter the HTML. SOrt of like the firefox 2.0 zoom feature. this of course is not perfect zooming, but is better than nothing.</p> <p>Other than that, I am out of ideas.</p> http://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#224067 Comment by Alexandros on Distributed Random Number Generation Alexandros 2008-10-22T10:49:31Z 2008-10-22T10:49:31Z Also, in terms of reducing the amoun of messages, how about the following: participants form a cycle, one of them passes their number to the next one, the next adds their own and passes the stack on and so on until all participants have all the numbers, I suspect 2M-1 messages. is there a flaw? http://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#224067 Comment by Alexandros on Distributed Random Number Generation Alexandros 2008-10-22T10:46:58Z 2008-10-22T10:46:58Z Although the question was more on the pre-existence of an algorithm or protocol that acheived this, the work here is excellent so I have to accept it. However, how safe is the hashing+gunk vs. the bit commit protocol? http://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#224067 Comment by Alexandros on Distributed Random Number Generation Alexandros 2008-10-22T01:36:01Z 2008-10-22T01:36:01Z so we're talking about bit-commiting to a number between 1 and M and then add-MOD M-ing the numbers. Any way to reduce the messages from the 3M^2 that i suspect a broadcast approach would require? http://stackoverflow.com/questions/224058/distributed-random-number-generation/224067#224067 Comment by Alexandros on Distributed Random Number Generation Alexandros 2008-10-22T00:57:23Z 2008-10-22T00:57:23Z The commitment scheme pointed out by CesarB, is the basis of the coin-tossing protocol. On that foundation, a good way to combine the random numbers must be found. The problem here is how to guarantee that no participant can influence the result in either direction. Does XOR offer this guarantee? http://stackoverflow.com/questions/224058/distributed-random-number-generation/224069#224069 Comment by Alexandros on Distributed Random Number Generation Alexandros 2008-10-22T00:50:49Z 2008-10-22T00:50:49Z this is effectively a re-centralization of the algorithm. the problem is to get the number without supposing any trust between the participants. http://stackoverflow.com/questions/170465/is-there-a-caching-script-for-classic-asp/170509#170509 Comment by Alexandros on Is there a caching script for classic asp? Alexandros 2008-10-06T20:45:11Z 2008-10-06T20:45:11Z Thank you for your comment. Is this a behaviour limited to asp or does IIS do this for any type of webpage (e.g. PHP)? Also, is this caching perhaps on a per-user basis (opcode+session)? I have used IIS a lot and have seen no indication of op-caching behaviour. Do you have any link describing it? http://stackoverflow.com/questions/170465/is-there-a-caching-script-for-classic-asp/170608#170608 Comment by Alexandros on Is there a caching script for classic asp? Alexandros 2008-10-06T20:43:34Z 2008-10-06T20:43:34Z Thank you for your answer. As you see there is a contradiction between the quotes. &quot;Caching ASP templates enhances performance and scalability&quot; vs. &quot;there is no built in caching system in classic ASP&quot; In my uysage i have seen no caching behaviour by IIS also. Is there a way to resolve this?