search for: devblog

Displaying 20 results from an estimated 38 matches for "devblog".

Did you mean: devblogs
2006 Mar 29
1
Fixing output_compression for Rails 1.1
..._compression[1] plugin was broken. Once I upgraded to 1.1, I had to tweak it a bit to make it work. Mainly it''s removing the code dealing with component requests, as that''s part of rails now, and changing one function call. Get the modified output_compression.rb file from http://devblog.famundo.com/output_compression.rb and give it a try. It''s also detailed in my devblog[2]. It you are interested in a diff or more explanations, let me know. Guy. [1] http://blog.craz8.com/articles/trackback/85 [2] http://devblog.famundo.com/articles/2006/03/29/fixing-output_compression...
2009 Mar 24
3
Submitting Patches for Facebook Connect
...works and would love to contribute stuff back. However I can''t figure out how to go about it. Any help would be appreciated. Should I send patches on the list? Regards -- Prateek Dayal Co-Founder Muziboo.com Personal Blog: http://www.prateekdayal.net/blog Muziboo Dev Blog: http://devblog.muziboo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/facebooker-talk/attachments/20090324/e5a7223b/attachment.html>
2008 Dec 09
3
a custom progress bar formatter
...specs. When using color, I want the entire progress bar printed in green if everything is good, yellow if there has been a warning, and red if there has been an error. And then I remembered that rspec makes it super easy to write your own custom formatter. So I did. :-) http://ekenosen.net/nick/devblog/2008/12/better-progress-bar-for-rspec/ Let me know what you think. Is this useful to anyone? Any ideas for improvements? -- Nick
2006 Apr 03
0
Making output_compression work with send_file
While working with the newly fixed output compression plugin, one of the devs in my team discovered that it breaks with send_file(). So if you are using send_file() in your application you must get the fixed file I''ve put at: http://devblog.famundo.com/output_compression.rb. The change is actually in checking for the Content-Disposition header added by send_file(). See the full writeup in my blog: http://devblog.famundo.com/articles/2006/04/03/one-more-fix-in-output_compression. Enjoy! Guy. -- Family management on rails: http://ww...
2009 Feb 05
2
[Cucumber] Progress Bar
...the features are running :) It''s in my fork, in the coverage_formatter branch: http://github.com/mattwynne/cucumber/tree/master It will dump failing feature, scenario, step and the exception as the features run. No specs for it, it''s just a spike. [1]http://ekenosen.net/nick/devblog/2008/12/better-progress-bar-for-rspec/ Matt Wynne http://blog.mattwynne.net http://www.songkick.com
2020 Jun 07
3
Kill "KillTheDoctor"
...er/llvm/utils/KillTheDoctor [2] https://www.ecosia.org/images?q=%22has+stopped+working%22 [3] https://github.com/llvm/llvm-project/blob/master/llvm/lib/Support/Windows/Signals.inc#L484 [4] https://github.com/llvm/llvm-project/blob/master/llvm/utils/unittest/UnitTestMain/TestMain.cpp#L38 [5] https://devblogs.microsoft.com/oldnewthing/20160204-00/?p=92972 [6] https://github.com/llvm/llvm-project/blob/master/compiler-rt/test/lit.common.cfg.py#L219 [7] https://github.com/llvm/llvm-project/blob/master/llvm/utils/not/not.cpp#L48 [8] https://github.com/llvm/llvm-project/blob/master/clang/test/Frontend/remov...
2023 Apr 04
1
Breaking Change in Rcomplex Layout?
...9;s not yet implemented. Would it help Rust's bindgen (and, potentially, other C declaration parsers) if R could optionally give a name to the anonymous union member, like it's done in Windows API [2]? -- Best regards, Ivan [1] https://github.com/rust-lang/rust/issues/49804 [2] https://devblogs.microsoft.com/oldnewthing/20170907-00/?p=96956
2006 May 14
0
Beware of HashWithIndifferentAccess#symbolize_keys!
...e all items from the hash. Please make sure you either never call symbolize_keys! (or to_options! which just alias it) on a HashWithIndifferentAccess, or apply the path attached from the ticket at: http://dev.rubyonrails.org/ticket/5076 I also posted a much longer explanation in my blog at: http://devblog.famundo.com/articles/2006/05/13/beware-of-hashwithindifferentaccess-symbolize_keys Please note that symbolize_keys (without the ! at the end) works as designed. Bye, Guy. -- Family management on rails: http://www.famundo.com - coming soon! My development related blog: http://devblog.famundo.co...
2006 May 30
0
Fixing PUT to work with multipart messages
...#39;t work. The rails code as a fix for POST requests, but not for PUT requests. So we added PUT as well and it works great now. I posted this as a patch in trac (http://dev.rubyonrails.org/ticket/5235) so you can get it if you need this functionality. Yu can also read about it in my blog: http://devblog.famundo.com/articles/2006/05/30/fixing-multipart-post-in-rails Bye, Guy. -- Family management on rails: http://www.famundo.com - coming soon! My development related blog: http://devblog.famundo.com
2007 Apr 26
2
multiple users - auth'd source?
...lt;authentication type="url"> So I envisage a regular dump from LDAP to the XML config file - but can I add an "include" and HUP the server to see the new credentials? Can someone tell me if this is much easier or harder than what I'm thinking? Cheers, C. -- http://devblog.playlouder.com/
2023 Apr 04
1
Breaking Change in Rcomplex Layout?
...39;s bindgen (and, potentially, other C declaration > parsers) if R could optionally give a name to the anonymous union > member, like it's done in Windows API [2]? > > -- > Best regards, > Ivan > > [1] https://github.com/rust-lang/rust/issues/49804 > > [2] https://devblogs.microsoft.com/oldnewthing/20170907-00/?p=96956 > [[alternative HTML version deleted]]
2006 Apr 24
3
Regex in HTML
So, I''m trying to write a nice bit of regex to handle finding anchor tags in a bit of html. This is what I''ve got.... /<[aA][^>]*>[^<]*<\/[aA]>/ I''m planning on using this with a gsub!. Here is what it has to do.... <html><a href="http://stuff.com" class="link">Anything in here.</a></html> As you can
2006 Apr 06
3
Deploying with Capistrano via cron
I''m attempting to auto deploy a rails application to a development server periodically during ongoing development. I''ve setup ssh keys to allow the proper user auto login permissions, but have ran into 2 issues. 1. When the script is run from a cron job as the same user as I currently manually deploy from I receive an error when reaper tries to execute - "can''t
2006 Jun 15
13
Best Approach to a ''Down for Maintenance'' Page?
What is the best way to implement a ''Down for Maintenance'' page across your Rails app? Ideally I would like to have a button in my admin section that toggles the display of a ''currently under maintenance'' page to every public request to the app (possibly with some dynamic content like estimated down-time) except for: - - requests from a specified IP
2006 May 31
6
Restricting access to files uploaded by file_column
Hi Guys, Does anyone know how to restrict access on files that you upload in file column to certain users only? I notice that files being saved by the file_column by default are being saved under the public folder and can be accessed just by typing the URL directly. Let''s say you have a Login system where you restrict access to some pages and allow those users to upload their own
2011 Sep 13
1
Post held in moderation "Rsync chokes on this file"
...moderation because the attached file is too large. What is the procedure for sending a file to the developers for checking? Can I upload the file somewhere and create a link to it in my email, or submit it to some email account that permits it? -- Frank Church ======================= http://devblog.brahmancreations.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20110913/cc9aa387/attachment.html>
2011 Sep 23
1
Rsync goes chokes on this file, can the developers look into it?
...ync version 3.0.4 protocol version 30 It is the same on boths sides of the llink Can it be tested in some way? Is there some process for getting the rsync developers to check it? Here is a link to the file: http://lz.rca2.net/colinux-0.7.5.exe -- Frank Church ======================= http://devblog.brahmancreations.com -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.samba.org/pipermail/rsync/attachments/20110923/82239991/attachment.html>
2009 Jul 29
1
Windows+Apache+FastCGI+Postgres - didn't work
...gem install ruby-postgres Successfully installed ruby-postgres-0.7.1.2006.04.06-x86-mswin32 1 gem installed Installing ri documentation for ruby-postgres-0.7.1.2006.04.06-x86- mswin32... Installing RDoc documentation for ruby-postgres-0.7.1.2006.04.06-x86- mswin32... P.P.S. this nice advice http://devblog.famundo.com/articles/2007/02/11/solving-tough-deploy-problems-with-fastcgi-and-rails but didn''t help when I change version to 2.2.2
2013 Nov 18
0
I wrote CheckPassword Shell example for Dovecot
Hello, Seeing as there are not too many Dovecot CheckPassword driver usage examples on the Internet, I wrote one using Shell script. You can see post about it here: http://devblog.plesk.com/2013/11/shell-checkpassword-authentication-in-dovecot/. The post also has a link to Mercurial repository with the example. Feel free to use the example as you see fit. You may even include it into documentation (or link to it), if you'd like. Thanks for such great software as Doveco...
2017 Apr 21
0
Are there any GUI tools for analyzing xapian databases?
Are there any GUI tools for analyzing xapian databases? I am looking for something that can create graphs from analyzing xapian database contents. -- Frank Church ======================= http://devblog.brahmancreations.com