User Rui Vieira - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:37:11Z http://stackoverflow.com/feeds/user/20811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/135029/what-ide-would-you-recommend-for-python-development 2 What IDE would you recommend for Python development? Rui Vieira 2008-09-25T18:23:06Z 2009-10-28T05:24:39Z <p>Why was looking for something that included many of the common modern-day tools, such as:</p> <ul> <li>Code refactoring</li> <li>Code navigation</li> <li>Debugger</li> <li>etc...</li> </ul> http://stackoverflow.com/questions/396913/in-python-how-do-i-find-the-date-of-the-first-monday-of-a-given-week 7 In Python, how do I find the date of the first Monday of a given week? Rui Vieira 2008-12-29T00:42:56Z 2009-08-17T13:07:00Z <p>If I have a certain week number (eg 51) and a given year (eg 2008), how do I find the date of the first Monday of that same week?</p> <p>Many thanks</p> http://stackoverflow.com/questions/364625/which-blog-engines-written-in-python-do-you-recommend 7 Which blog engines, written in Python, do you recommend? Rui Vieira 2008-12-13T01:24:36Z 2009-08-13T14:36:56Z <p>Even though I'm quite happy with WordPress, I'm mainly coding in Python nowadays, and wanted to <em>eat my own dog food</em>, ie improve my Python knowledge by studying the source code and contributing with plugins (if the engine allows it).</p> <p>After searching, I've already encountered Byteflow and PyBlosxom.</p> <p>Byteflow works using Django, which for me a minus (I would prefer a small, simple codebase, not dependent on a big framework. This excludes Plone also, unfortunately).</p> <p>What other options are there?</p> <p>Many thanks.</p> http://stackoverflow.com/questions/516028/small-php-capable-web-server-for-windows/516277#516277 3 Answer by Rui Vieira for Small, PHP capable web server (for Windows) Rui Vieira 2009-02-05T15:10:05Z 2009-02-05T15:10:05Z <p>What about <a href="http://microapache.amadis.sytes.net/" rel="nofollow" title="MicroApache">MicroApache</a>?</p> <p>I think it's under 1Mb, and it has support for PHP.</p> http://stackoverflow.com/questions/465267/which-programming-tools-do-you-pay-for/465469#465469 3 Answer by Rui Vieira for Which programming tools do you pay for? Rui Vieira 2009-01-21T14:12:59Z 2009-01-21T14:12:59Z <p>IntelliJ IDEA.</p> <p>I've been doing some programming in Groovy and nothing even comes close to IDEA's support for Groovy.</p> <p>Nowadays, it's even suited for Flex, ActionScript, Python and Scala development.</p> http://stackoverflow.com/questions/460739/what-is-the-best-book-to-learn-spring-and-hibernate/460761#460761 2 Answer by Rui Vieira for What is the best book to learn Spring and Hibernate Rui Vieira 2009-01-20T10:37:52Z 2009-01-20T10:37:52Z <p>I quite liked the Manning books:</p> <p><a href="http://www.manning.com/bauer2/" rel="nofollow">http://www.manning.com/bauer2/</a> (Java Persistence with Hibernate)</p> <p><a href="http://www.manning.com/walls3/" rel="nofollow">http://www.manning.com/walls3/</a> (Spring in Action)</p> <p>Though I never read this one, it's probably more suited for you:</p> <p><a href="http://www.manning.com/peak/" rel="nofollow">http://www.manning.com/peak/</a></p> http://stackoverflow.com/questions/460329/what-graphing-packages-apis-exist-for-ruby/460447#460447 0 Answer by Rui Vieira for What graphing packages/APIs exist for Ruby? Rui Vieira 2009-01-20T08:21:15Z 2009-01-20T08:21:15Z <p>I quite like eXtended Ruby Vector Graphics (<a href="http://xrvg.rubyforge.org/" rel="nofollow">http://xrvg.rubyforge.org/</a>)</p> http://stackoverflow.com/questions/135432/what-alternatives-exist-to-uml-to-graphically-represent-software-models 3 What alternatives exist to UML to graphically represent software models Rui Vieira 2008-09-25T19:25:07Z 2009-01-13T09:19:24Z <p>Excluding UML, What other formal methodologies exist to visually represent software models?</p> <p>Do you know any tools that allow you to work with them?</p> http://stackoverflow.com/questions/348255/what-java-file-synchronization-backup-library-do-you-recommend 2 What Java file synchronization/backup library do you recommend? Rui Vieira 2008-12-07T22:50:01Z 2008-12-08T01:35:37Z <p>Do you know any (open source) Java library that provides file synchronization/backup functionality?</p> <p>Many thanks.</p> http://stackoverflow.com/questions/303512/hidden-features-of-groovy/305040#305040 3 Answer by Rui Vieira for Hidden features of Groovy? Rui Vieira 2008-11-20T11:46:24Z 2008-11-21T10:11:20Z <p>Unlike Java, in Groovy, anything can be used in a <strong>switch</strong> statement, not just primitive types. In a typical <em>eventPerformed</em> method</p> <pre><code>switch(event.source) { case object1: // do something break case object2: // do something break } </code></pre> http://stackoverflow.com/questions/303512/hidden-features-of-groovy/305058#305058 11 Answer by Rui Vieira for Hidden features of Groovy? Rui Vieira 2008-11-20T11:54:38Z 2008-11-20T11:54:38Z <p>The <strong>with</strong> method allows to turn this:</p> <pre><code> myObj1.setValue(10) setTitle(myObj1.getName()) myObj1.setMode(Obj1.MODE_NORMAL) </code></pre> <p>into this</p> <pre><code> myObj1.with { value = 10 title = name mode = MODE_NORMAL } </code></pre> http://stackoverflow.com/questions/284796/in-mysql-5-x-is-it-possible-to-give-permissions-based-on-conditions-not-using-v 0 In MySQL 5.x, is it possible to give permissions based on conditions (not using views)? Rui Vieira 2008-11-12T18:10:05Z 2008-11-12T18:30:05Z <p>In a project I'm starting I would like to give privileges to users based on certain conditions, eg (in a certain table):</p> <ul> <li>can READ all rows</li> <li>cannot WRITE to rows with id &lt; x, but can WRITE to row >= x</li> <li>etc...</li> </ul> <p>I would like to avoid views as these conditions might change for each user (I understand I would have to create a view for each case) I would also like to avoid enforcing this on the client side, as it could easily be bypassed.</p> <p>If this is not possible, what work around would you suggest?</p> <p>Many thanks in advance.</p> http://stackoverflow.com/questions/168218/is-it-possible-to-have-separate-sqlite-databases-within-the-same-django-project 4 Is it possible to have separate SQLite databases within the same Django project? Rui Vieira 2008-10-03T18:27:33Z 2008-10-04T12:19:48Z <p>I was considering creating a separate SQLite database for certain apps on a Django project.<br> However, I did not want to use direct SQLite access if possible. Django-style ORM access to these database would be ideal.<br> Is this possible?</p> <p>Thank you.</p> http://stackoverflow.com/questions/130193/is-it-possible-to-modify-a-registry-entry-via-a-bat-cmd-script/130202#130202 7 Answer by Rui Vieira for Is it possible to modify a registry entry via a .bat/.cmd script? Rui Vieira 2008-09-24T21:54:20Z 2008-09-24T21:54:20Z <p>You can use the REG command (<a href="http://www.ss64.com/nt/reg.html" rel="nofollow">http://www.ss64.com/nt/reg.html</a>)</p> http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/130149#130149 10 Answer by Rui Vieira for Most useful free Java libraries? Rui Vieira 2008-09-24T21:41:30Z 2008-09-24T21:41:30Z <p>I'm quite partial to</p> <p><a href="http://jasperforge.org/plugins/project/project_home.php?group_id=102" rel="nofollow">JasperReports</a> - report generation libraries</p> <p><a href="http://prefuse.org/" rel="nofollow">prefuse</a> - visualization toolkit</p> http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/129781#129781 3 Answer by Rui Vieira for What is your single favorite development tool? Rui Vieira 2008-09-24T20:32:41Z 2008-09-24T20:32:41Z <ul> <li><a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ IDEA</a></li> <li>Subversion</li> <li>Trac</li> <li><a href="http://www.fishshell.org/" rel="nofollow">fish</a></li> </ul> http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect/129365#129365 0 Answer by Rui Vieira for What is the longest human name you can expect? Rui Vieira 2008-09-24T19:35:14Z 2008-09-24T19:35:14Z <p>Just hope with don't get <a href="http://en.wikipedia.org/wiki/Brfxxccxxmnpcccclllmmnprxvclmnckssqlbb11116" rel="nofollow">this user</a></p> http://stackoverflow.com/questions/129034/looking-for-java-gui-components-ideas-for-syntax-highlighting/129096#129096 0 Answer by Rui Vieira for looking for Java GUI components / ideas for syntax highlighting Rui Vieira 2008-09-24T18:53:58Z 2008-09-24T18:53:58Z <p>Why not check out Ostermiller's Syntax Highlighter.</p> <p>Here's a <a href="http://ostermiller.org/syntax/editor.html" rel="nofollow">simple code editor demo</a></p> <p>It still uses JTextPane though.</p> http://stackoverflow.com/questions/126128/can-java-poi-write-image-to-word-document/126333#126333 0 Answer by Rui Vieira for Can Java POI write image to word document? Rui Vieira 2008-09-24T10:09:50Z 2008-09-24T10:09:50Z <p>POI's HWPF can extract an MS Word document's text and perform simple modifications (basically deleting and inserting text). AFAIK it can't do much more than that. Also keep in mind that HWPF works only with the older MS Word (97) format, not the latest ones.</p> http://stackoverflow.com/questions/122097/apache-mod-rewrite-primers/122166#122166 3 Answer by Rui Vieira for Apache Mod-Rewrite Primers? Rui Vieira 2008-09-23T16:35:57Z 2008-09-23T16:35:57Z <p>I would go straight to the horse's mouth:</p> <p><a href="http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html" rel="nofollow">http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html</a></p> <p>but as a gentler introduction:</p> <p><a href="http://www.workingwith.me.uk/articles/scripting/mod_rewrite" rel="nofollow">http://www.workingwith.me.uk/articles/scripting/mod_rewrite</a></p> http://stackoverflow.com/questions/116957/which-layout-manager-do-you-use/122082#122082 7 Answer by Rui Vieira for Which Layout Manager do you use? Rui Vieira 2008-09-23T16:22:50Z 2008-09-23T16:22:50Z <p><a href="http://www.miglayout.com/" rel="nofollow">MiGLayout</a></p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121469#121469 3 Answer by Rui Vieira for What is the one programming skill you have always wanted to master but haven't had time? Rui Vieira 2008-09-23T14:44:12Z 2008-09-23T14:44:12Z <p>Concurrency</p> http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/121131#121131 0 Answer by Rui Vieira for What was your first home computer? Rui Vieira 2008-09-23T13:53:18Z 2008-09-23T13:53:18Z <p>Sinclair ZX Spectrum 48K.</p> <p>The good: It introduced me to programming.</p> <p>The bad: It was BASIC.</p> <p>Also, IMHO, the best keyboard ever.</p> http://stackoverflow.com/questions/119969/javascript-chart-library/120177#120177 0 Answer by Rui Vieira for JavaScript Chart Library Rui Vieira 2008-09-23T10:10:46Z 2008-09-23T10:10:46Z <p>My favourite (flot) has already been mentioned.</p> <p>But be sure to investigate <a href="http://www.craic.com/ortho/ortho_home.html" rel="nofollow">Ortho</a>. It is excellent for tree charts and timelines.</p> http://stackoverflow.com/questions/118247/whats-the-best-way-to-implement-acls-to-a-rails-application 2 What's the best way to implement ACLs to a Rails application? Rui Vieira 2008-09-22T23:40:09Z 2008-09-23T04:25:04Z <p>I just wanted to compare different solutions used when implementing ACLs in Rails.</p> http://stackoverflow.com/questions/116865/whats-the-current-state-of-closures-in-java/116918#116918 Comment by Rui Vieira on What’s the current state of closures in Java? Rui Vieira 2009-02-10T21:13:48Z 2009-02-10T21:13:48Z Groovy also supports closures. http://stackoverflow.com/questions/462561/using-findall-collection-closure-in-groovy/462930#462930 Comment by Rui Vieira on Using findAll Collection Closure in Groovy Rui Vieira 2009-01-20T20:24:15Z 2009-01-20T20:24:15Z You are missing a &quot;{&quot; on the toString definition ;-) http://stackoverflow.com/questions/396913/in-python-how-do-i-find-the-date-of-the-first-monday-of-a-given-week/396949#396949 Comment by Rui Vieira on In Python, how do I find the date of the first Monday of a given week? Rui Vieira 2008-12-29T01:36:52Z 2008-12-29T01:36:52Z Elegant solution. Thanks. http://stackoverflow.com/questions/348255/what-java-file-synchronization-backup-library-do-you-recommend/348299#348299 Comment by Rui Vieira on What Java file synchronization/backup library do you recommend? Rui Vieira 2008-12-08T17:56:04Z 2008-12-08T17:56:04Z It is indeed more than what I need :-) Thanks for sharing the link, I wasn't aware of this. http://stackoverflow.com/questions/132983/who-is-your-programming-hero/133904#133904 Comment by Rui Vieira on Who is your programming hero? Rui Vieira 2008-09-25T18:07:21Z 2008-09-25T18:07:21Z He is truly a &quot;hero&quot; and you can say that he was one of the first to put all these concepts in consumer product, but the true &quot;father&quot; of the mouse was [Douglas Engelbart](<a href="http://en.wikipedia.org/wiki/Douglas_Engelbart" rel="nofollow">en.wikipedia.org/wiki/Douglas_Engelbart</a>) :-)