search for: arrais

Displaying 19 results from an estimated 19 matches for "arrais".

Did you mean: arrakis
2006 Feb 23
5
Q: Where to put a periodic updater?
...s long as the server running my rails app is up an running. Any thoughts on how to accomplish this? I have thought of editing the environment.rb file and placing the call to the script trigger there, but I wonder if this is a good design decision and if it is webserver-dependent. Cheers, Thiago Arrais
2006 Mar 23
7
Fixtures just Do Not Work for Me
...e error occured while evaluating nil.[] test/unit/headline_test.rb:25:in `test_fixture'' ---------------- The call to the `fixtures'' methods is supposed to initalize the @headlines instance variable, isn''t it? I can''t see where is my mistake. Cheers, Thiago Arrais
2006 Mar 14
6
Framework
hello all, I need any framework that generate models using the database structure.... Anyone knows if have this framework???? Thank''s -- Posted via http://www.ruby-forum.com/.
2006 Feb 23
5
Web/HTTP Testing
...ts Watir out of the game, since it seems to be IE-dependent for the time being). A nice feature (but not a must-have) would be possibility of headless (command line) execution. I am aware of Selenium and WebUnit. Does anyone have any experience with either one (or a similar tool)? Cheers, Thiago Arrais
2006 Apr 10
6
image_tag adding request parameter
...g alt="Rss" border="0" src="/images/rss.gif?1142366545" /> Is there any use for that number? Where does it come from? This is very far from critical and is in no way a breaking change (at least for me), but I am curious to know why things changed. Cheers, Thiago Arrais
2006 Mar 16
6
Newbie question - Rails without database
Hello to all, I am entirely new to Ruby and also to Ruby on Rails. As far as I understand, Rails builds its model according to the a specified table structuree in in the database. However, most of my applications, are for the most part (except some backend CRUD stuff) not database centric. They do a lot of calculation for the user. So, how can I create a model, when no database is needed,
2006 Aug 04
1
Motiro 0.4.2 released
...splayground.com A reference to the mailing list can be found inside that page. Source code can be downloaded at the following Source Forge page: http://sourceforge.net/project/showfiles.php?group_id=173790 Motiro is open-source software licensed under the GPL. Do not forget to have fun, Thiago Arrais -- Mergulhando no Caos - http://thiagoarrais.blogspot.com Pensamentos, id?ias e devaneios sobre desenvolvimento de software e tecnologia em geral
2006 Mar 27
1
Tests not tiding up after themselves?
...about. I have tried to use :dependent and :exclusively_dependent on the article-change relationship, but it didn''t help. For the sake of completeness, I am using MySQL 4.1. Should I be doing anything differently? Do I have to use all three fixtures on all my test cases? Cheers, Thiago Arrais
2006 Apr 15
0
ssl_requirement, https, webrick and ruby
...includes openssl), but the download link on their page is broken for me. Any thoughts on this? Can I enable SSL support on webrick without all this script/server hackery? Also, are there any other options that would give me an acceptable security level without all this SSL stuff? Cheers, Thiago Arrais
2006 Mar 27
4
How to create a daemon in a rails app
i want a daemon will check somthing every 10 minute how do this in rails? -- Posted via http://www.ruby-forum.com/.
2005 Aug 29
1
RServe initialization problem
...39; following the web page tutorial (http://stats.math.uni-augsburg.de/Rserve/doc.shtml) but I face the above problem: C:\Program Files\R\rw2010\bin>R CMD RSERVE Can't open perl script "C:\PROGRA~1\R\rw2010/bin/RSERVE": No such file or directory Thanks in advance, Joel Arrais, joelarrais@gmail.com <mailto:jpa@ieeta.pt> [[alternative HTML version deleted]]
2005 Aug 29
2
FW: RServe initialization problem
...blems. I' following the web page tutorial (http://stats.math.uni-augsburg.de/Rserve/doc.shtml) but I face the above problem: C:\Program Files\R\rw2010\bin>R CMD RSERVE Can't open perl script "C:\PROGRA~1\R\rw2010/bin/RSERVE": No such file or directory Thanks in advance, Joel Arrais, joelarrais at gmail.com
2006 Mar 10
0
Need an opinion on ActiveRecord vs.(?) duck typing
...date field to receive all the date/time components and then create the date object that will get read in the future. But this way I have to change all current client code. This can be done, but I would choose to do it only if I can''t find a better solution. Any thoughts? Cheers, Thiago Arrais
2006 Apr 04
2
Sharing controller code between views - best practices?
Hi, I have controller code that needs to be shared between multiple different user type views and want to know what is considered ''best practice'' or what other people are doing out there. Example: I have admin users, salesperson users, and possibly another type of user. They all need code to add/edit/delete a property - and other abilities. The code would be identical(in
2006 Mar 14
5
Controller Naming Question
Is it possible to have controllers named the following? /admin /admin/user If not, is there some way to get it to work with routes? I want to have some actions at the url /admin/<action> and some at /admin/user/<action> (obviously in admin/user controller). Thanks!!!
2013 Nov 15
23
[PATCH -tip RFC v2 00/22] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've tried to implement new NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined, it is easy to maintain. This series
2013 Nov 15
23
[PATCH -tip RFC v2 00/22] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've tried to implement new NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined, it is easy to maintain. This series
2013 Nov 20
28
[PATCH -tip v3 00/23] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Hi, Here is the version 3 of NOKPORBE_SYMBOL series. Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've introduced NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined
2013 Nov 20
28
[PATCH -tip v3 00/23] kprobes: introduce NOKPROBE_SYMBOL() and general cleaning of kprobe blacklist
Hi, Here is the version 3 of NOKPORBE_SYMBOL series. Currently the blacklist is maintained by hand in kprobes.c which is separated from the function definition and is hard to catch up the kernel update. To solve this issue, I've introduced NOKPROBE_SYMBOL() macro for making kprobe blacklist at build time. Since the NOKPROBE_SYMBOL() macros can be placed right after the function is defined